Skip to content

Commit 977814c

Browse files
committed
Updated database classes.
1 parent fe81551 commit 977814c

27 files changed

+723
-2
lines changed

src/Mods/Ateliers/Atelier/AlvarixCustomStore.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ class AlvarixCustomStore extends BaseAtelier
2424
public const ATELIER_NAME = 'Alvarix Custom Store';
2525

2626
public const MOD_IDS = array(
27-
'clothing.bad-cop-outfit',
2827
'clothing.blood-rayne',
2928
'clothing.deus-ex-outfit',
3029
'clothing.evangelion-plugsuits',

src/Mods/Ateliers/Atelier/BreezysAccessoryAlcoveAtelier.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ class BreezysAccessoryAlcoveAtelier extends BaseAtelier
2424
public const ATELIER_NAME = 'Breezy\'s Accessory Alcove';
2525

2626
public const MOD_IDS = array(
27+
'clothing.caged-bracelet',
2728
'clothing.keffiyeh',
29+
'clothing.knuckle-spikes',
2830
);
2931

3032
public function getID(): string
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
<?php
2+
/**
3+
* @package CPMDB
4+
* @subpackage Ateliers
5+
*/
6+
7+
declare(strict_types=1);
8+
9+
namespace CPMDB\Mods\Ateliers\Atelier;
10+
11+
use CPMD\Mods\Ateliers\BaseAtelier;
12+
13+
/**
14+
* Atelier mod: Breezy's Thrift Shop
15+
*
16+
* @package CPMDB
17+
* @subpackage Ateliers
18+
* @auto-generated See {@see generateAtelierClasses()}
19+
*/
20+
class BreezysThriftShopAtelier extends BaseAtelier
21+
{
22+
public const ATELIER_ID = 'breezys-thrift-shop';
23+
public const ATELIER_URL = 'https://www.nexusmods.com/cyberpunk2077/mods/18465';
24+
public const ATELIER_NAME = 'Breezy\'s Thrift Shop';
25+
26+
public const MOD_IDS = array(
27+
'clothing.hoodie-vest',
28+
);
29+
30+
public function getID(): string
31+
{
32+
return self::ATELIER_ID;
33+
}
34+
35+
public function getName() : string
36+
{
37+
return self::ATELIER_NAME;
38+
}
39+
40+
public function getURL() : string
41+
{
42+
return self::ATELIER_URL;
43+
}
44+
45+
public function getAuthors() : array
46+
{
47+
return array('Breezypunk');
48+
}
49+
}
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
<?php
2+
/**
3+
* @package CPMDB
4+
* @subpackage Ateliers
5+
*/
6+
7+
declare(strict_types=1);
8+
9+
namespace CPMDB\Mods\Ateliers\Atelier;
10+
11+
use CPMD\Mods\Ateliers\BaseAtelier;
12+
13+
/**
14+
* Atelier mod: Corpo Clothing
15+
*
16+
* @package CPMDB
17+
* @subpackage Ateliers
18+
* @auto-generated See {@see generateAtelierClasses()}
19+
*/
20+
class CorpoClothingAtelier extends BaseAtelier
21+
{
22+
public const ATELIER_ID = 'corpo-clothing';
23+
public const ATELIER_URL = 'https://www.nexusmods.com/cyberpunk2077/mods/18044';
24+
public const ATELIER_NAME = 'Corpo Clothing';
25+
26+
public const MOD_IDS = array(
27+
'clothing.pozer-jacket-and-cyberdeck',
28+
);
29+
30+
public function getID(): string
31+
{
32+
return self::ATELIER_ID;
33+
}
34+
35+
public function getName() : string
36+
{
37+
return self::ATELIER_NAME;
38+
}
39+
40+
public function getURL() : string
41+
{
42+
return self::ATELIER_URL;
43+
}
44+
45+
public function getAuthors() : array
46+
{
47+
return array('Sumi', 'SumiTerra');
48+
}
49+
}
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
<?php
2+
/**
3+
* @package CPMDB
4+
* @subpackage Ateliers
5+
*/
6+
7+
declare(strict_types=1);
8+
9+
namespace CPMDB\Mods\Ateliers\Atelier;
10+
11+
use CPMD\Mods\Ateliers\BaseAtelier;
12+
13+
/**
14+
* Atelier mod: Frail Inc
15+
*
16+
* @package CPMDB
17+
* @subpackage Ateliers
18+
* @auto-generated See {@see generateAtelierClasses()}
19+
*/
20+
class FrailIncAtelier extends BaseAtelier
21+
{
22+
public const ATELIER_ID = 'frail-inc';
23+
public const ATELIER_URL = 'https://www.nexusmods.com/cyberpunk2077/mods/6232';
24+
public const ATELIER_NAME = 'Frail Inc';
25+
26+
public const MOD_IDS = array(
27+
'clothing.netrunner-coat',
28+
);
29+
30+
public function getID(): string
31+
{
32+
return self::ATELIER_ID;
33+
}
34+
35+
public function getName() : string
36+
{
37+
return self::ATELIER_NAME;
38+
}
39+
40+
public function getURL() : string
41+
{
42+
return self::ATELIER_URL;
43+
}
44+
45+
public function getAuthors() : array
46+
{
47+
return array('mynameisfive');
48+
}
49+
}

src/Mods/Ateliers/Atelier/HystAtelierStore.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ class HystAtelierStore extends BaseAtelier
2424
public const ATELIER_NAME = 'Hyst Atelier Store';
2525

2626
public const MOD_IDS = array(
27+
'clothing.elegant-dress',
2728
'clothing.evelyn-dress',
2829
'clothing.short-tank',
2930
);
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
<?php
2+
/**
3+
* @package CPMDB
4+
* @subpackage Ateliers
5+
*/
6+
7+
declare(strict_types=1);
8+
9+
namespace CPMDB\Mods\Ateliers\Atelier;
10+
11+
use CPMD\Mods\Ateliers\BaseAtelier;
12+
13+
/**
14+
* Atelier mod: LilyDelta Boutiques
15+
*
16+
* @package CPMDB
17+
* @subpackage Ateliers
18+
* @auto-generated See {@see generateAtelierClasses()}
19+
*/
20+
class LilydeltaBoutiquesAtelier extends BaseAtelier
21+
{
22+
public const ATELIER_ID = 'lilydelta-boutiques';
23+
public const ATELIER_URL = 'https://www.nexusmods.com/cyberpunk2077/mods/14523';
24+
public const ATELIER_NAME = 'LilyDelta Boutiques';
25+
26+
public const MOD_IDS = array(
27+
'clothing.lizzy-wizzy-headset',
28+
);
29+
30+
public function getID(): string
31+
{
32+
return self::ATELIER_ID;
33+
}
34+
35+
public function getName() : string
36+
{
37+
return self::ATELIER_NAME;
38+
}
39+
40+
public function getURL() : string
41+
{
42+
return self::ATELIER_URL;
43+
}
44+
45+
public function getAuthors() : array
46+
{
47+
return array('LilyDelta');
48+
}
49+
}
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
<?php
2+
/**
3+
* @package CPMDB
4+
* @subpackage Ateliers
5+
*/
6+
7+
declare(strict_types=1);
8+
9+
namespace CPMDB\Mods\Ateliers\Atelier;
10+
11+
use CPMD\Mods\Ateliers\BaseAtelier;
12+
13+
/**
14+
* Atelier mod: Mel's Online Catalogue
15+
*
16+
* @package CPMDB
17+
* @subpackage Ateliers
18+
* @auto-generated See {@see generateAtelierClasses()}
19+
*/
20+
class MelsOnlineCatalogueAtelier extends BaseAtelier
21+
{
22+
public const ATELIER_ID = 'mels-online-catalogue';
23+
public const ATELIER_URL = 'https://www.nexusmods.com/cyberpunk2077/mods/14248';
24+
public const ATELIER_NAME = 'Mel\'s Online Catalogue';
25+
26+
public const MOD_IDS = array(
27+
'clothing.karyna-heart-choker',
28+
);
29+
30+
public function getID(): string
31+
{
32+
return self::ATELIER_ID;
33+
}
34+
35+
public function getName() : string
36+
{
37+
return self::ATELIER_NAME;
38+
}
39+
40+
public function getURL() : string
41+
{
42+
return self::ATELIER_URL;
43+
}
44+
45+
public function getAuthors() : array
46+
{
47+
return array('meluminary');
48+
}
49+
}

src/Mods/Ateliers/Atelier/NcFashionAtelier.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ class NcFashionAtelier extends BaseAtelier
2424
public const ATELIER_NAME = 'NC Fashion';
2525

2626
public const MOD_IDS = array(
27+
'clothing.ada-wong-outfit-reworked',
2728
'clothing.arasaka-corpo-shirt',
2829
'clothing.arasaka-jacket',
2930
'clothing.arasaka-sports-wear-v2',
@@ -40,7 +41,7 @@ class NcFashionAtelier extends BaseAtelier
4041
'clothing.jin-kazam-outfit',
4142
'clothing.jinx-arcane-s2-top',
4243
'clothing.leather-boots',
43-
'clothing.spandex-leggins',
44+
'clothing.spandex-leggings',
4445
'clothing.xrx-low-waist-leggings',
4546
'clothing.lucy-edgerunners-jacket',
4647
'clothing.lucy-edgerunners-pants',
@@ -53,6 +54,7 @@ class NcFashionAtelier extends BaseAtelier
5354
'clothing.turtleneck-top-camo',
5455
'clothing.xrx-asymmetric-top',
5556
'clothing.xrx-dress',
57+
'clothing.xrx-futuristic-top',
5658
'clothing.xrx-latex-gloves',
5759
'clothing.xrx-leather-jacket',
5860
'clothing.xrx-led-leotard',

src/Mods/Ateliers/Atelier/NolaDreamerBoutiqueAtelier.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ class NolaDreamerBoutiqueAtelier extends BaseAtelier
2727
'clothing.alt-jacket-and-pants',
2828
'clothing.evelyn-coat-and-fur',
2929
'clothing.judy-platform-shoes',
30+
'clothing.kitty-over-knee-socks',
3031
'clothing.michiko-dress-with-fur',
3132
'clothing.one-shoulder-shirt',
3233
);

0 commit comments

Comments
 (0)