Skip to content

Commit f4fe5f4

Browse files
committed
Added all missing tags.
1 parent e31c82d commit f4fe5f4

37 files changed

+798
-4
lines changed

src/Mods/Tags/Types/Animated.php

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace CPMDB\Mods\Tags\Types;
6+
7+
use CPMDB\Mods\Tags\Categories\GeneralTagInfo;
8+
9+
class Animated extends GeneralTagInfo
10+
{
11+
public const TAG_NAME = 'Animated';
12+
13+
protected function _getName(): string
14+
{
15+
return self::TAG_NAME;
16+
}
17+
18+
public function getLabel(): string
19+
{
20+
return 'Animated textures';
21+
}
22+
}

src/Mods/Tags/Types/Belt.php

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace CPMDB\Mods\Tags\Types;
6+
7+
use CPMDB\Mods\Tags\Categories\GeneralTagInfo;
8+
9+
class Belt extends GeneralTagInfo
10+
{
11+
public const TAG_NAME = 'Belt';
12+
13+
protected function _getName(): string
14+
{
15+
return self::TAG_NAME;
16+
}
17+
18+
public function getLabel(): string
19+
{
20+
return 'Belt';
21+
}
22+
}

src/Mods/Tags/Types/BodyAdonis.php

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace CPMDB\Mods\Tags\Types;
6+
7+
use CPMDB\Mods\Tags\Categories\BodyModTagInfo;
8+
9+
class BodyAdonis extends BodyModTagInfo
10+
{
11+
public const TAG_NAME = 'Body-Adonis';
12+
13+
protected function _getName(): string
14+
{
15+
return self::TAG_NAME;
16+
}
17+
18+
public function getLabel(): string
19+
{
20+
return 'Adonis';
21+
}
22+
23+
public function getSourceURL(): string
24+
{
25+
return 'https://www.nexusmods.com/cyberpunk2077/mods/4968';
26+
}
27+
}
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace CPMDB\Mods\Tags\Types;
6+
7+
use CPMDB\Mods\Tags\Categories\BodyModTagInfo;
8+
9+
class BodyGymfiend extends BodyModTagInfo
10+
{
11+
public const TAG_NAME = 'Body-Gymfiend';
12+
13+
protected function _getName(): string
14+
{
15+
return self::TAG_NAME;
16+
}
17+
18+
public function getLabel(): string
19+
{
20+
return 'Body-Gymfiend';
21+
}
22+
23+
public function getSourceURL(): string
24+
{
25+
return 'https://www.nexusmods.com/cyberpunk2077/mods/6423';
26+
}
27+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace CPMDB\Mods\Tags\Types;
6+
7+
class BodyHystAngel extends BodyHyst
8+
{
9+
public const TAG_NAME = 'Body-Hyst-Angel';
10+
11+
protected function _getName(): string
12+
{
13+
return self::TAG_NAME;
14+
}
15+
16+
public function getLabel(): string
17+
{
18+
return 'Hyst Angel';
19+
}
20+
}
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace CPMDB\Mods\Tags\Types;
6+
7+
use CPMDB\Mods\Tags\Categories\GeneralTagInfo;
8+
9+
class BodyHystEBB extends BodyHyst
10+
{
11+
public const TAG_NAME = 'Body-Hyst-EBB';
12+
13+
protected function _getName(): string
14+
{
15+
return self::TAG_NAME;
16+
}
17+
18+
public function getLabel(): string
19+
{
20+
return 'Hyst EBB';
21+
}
22+
}
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace CPMDB\Mods\Tags\Types;
6+
7+
use CPMDB\Mods\Tags\Categories\GeneralTagInfo;
8+
9+
class BodyHystEBBP extends BodyHyst
10+
{
11+
public const TAG_NAME = 'Body-Hyst-EBBP';
12+
13+
protected function _getName(): string
14+
{
15+
return self::TAG_NAME;
16+
}
17+
18+
public function getLabel(): string
19+
{
20+
return 'Hyst EBBP';
21+
}
22+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace CPMDB\Mods\Tags\Types;
6+
7+
class BodyHystEBBPRB extends BodyHyst
8+
{
9+
public const TAG_NAME = 'Body-Hyst-EBBPRB';
10+
11+
protected function _getName(): string
12+
{
13+
return self::TAG_NAME;
14+
}
15+
16+
public function getLabel(): string
17+
{
18+
return 'Hyst EBBPRB';
19+
}
20+
}
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace CPMDB\Mods\Tags\Types;
6+
7+
use CPMDB\Mods\Tags\Categories\GeneralTagInfo;
8+
9+
class BodyHystEBBRB extends BodyHyst
10+
{
11+
public const TAG_NAME = 'Body-Hyst-EBBRB';
12+
13+
protected function _getName(): string
14+
{
15+
return self::TAG_NAME;
16+
}
17+
18+
public function getLabel(): string
19+
{
20+
return 'Hyst EBBRB';
21+
}
22+
}

src/Mods/Tags/Types/BodyHystRB.php

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace CPMDB\Mods\Tags\Types;
6+
7+
class BodyHystRB extends BodyHyst
8+
{
9+
public const TAG_NAME = 'Body-Hyst-RB';
10+
11+
protected function _getName(): string
12+
{
13+
return self::TAG_NAME;
14+
}
15+
16+
public function getLabel(): string
17+
{
18+
return 'Hyst RB';
19+
}
20+
}

0 commit comments

Comments
 (0)