Skip to content

Commit 06eebd5

Browse files
committed
Added Gloves and Neck tags.
1 parent 296a223 commit 06eebd5

File tree

2 files changed

+44
-0
lines changed

2 files changed

+44
-0
lines changed

src/Mods/Tags/Types/Gloves.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 Gloves extends GeneralTagInfo
10+
{
11+
public const TAG_NAME = 'Gloves';
12+
13+
protected function _getName(): string
14+
{
15+
return self::TAG_NAME;
16+
}
17+
18+
public function getLabel(): string
19+
{
20+
return 'Gloves';
21+
}
22+
}

src/Mods/Tags/Types/Neck.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\ItemSlotTag;
8+
9+
class Neck extends ItemSlotTag
10+
{
11+
public const TAG_NAME = 'Neck';
12+
13+
protected function _getName(): string
14+
{
15+
return self::TAG_NAME;
16+
}
17+
18+
public function getLabel(): string
19+
{
20+
return 'Neck';
21+
}
22+
}

0 commit comments

Comments
 (0)