diff --git a/Resources/Locale/en-US/_CP14/loadouts/loadout.ftl b/Resources/Locale/en-US/_CP14/loadouts/loadout.ftl index 879ebd1075..f1d14fde29 100644 --- a/Resources/Locale/en-US/_CP14/loadouts/loadout.ftl +++ b/Resources/Locale/en-US/_CP14/loadouts/loadout.ftl @@ -42,6 +42,8 @@ cp14-loadout-guard-commander-cloak = Guard commander's cloak # Guard cp14-loadout-investigator-cloak = Investigator's cloak +cp14-loadout-investigator-head = Investigator's head + cp14-loadout-guard-cloak = Guard's cloak cp14-loadout-guard-head = Guard's head cp14-loadout-guard-pants = Guard's pants diff --git a/Resources/Locale/ru-RU/_CP14/loadouts/loadout.ftl b/Resources/Locale/ru-RU/_CP14/loadouts/loadout.ftl index e59a700756..a21a77a620 100644 --- a/Resources/Locale/ru-RU/_CP14/loadouts/loadout.ftl +++ b/Resources/Locale/ru-RU/_CP14/loadouts/loadout.ftl @@ -42,6 +42,8 @@ cp14-loadout-guard-commander-cloak = Накидка командира стра # Guard cp14-loadout-investigator-cloak = Накидка дознавателя +cp14-loadout-investigator-head = Шляпа дознавателя + cp14-loadout-guard-cloak = Накидка стражи cp14-loadout-guard-head = Шляпа стражи cp14-loadout-guard-pants = Штаны стражи diff --git a/Resources/Prototypes/_CP14/Entities/Clothing/Head/Roles/guard.yml b/Resources/Prototypes/_CP14/Entities/Clothing/Head/Roles/guard.yml index 643393d782..801e41ddee 100644 --- a/Resources/Prototypes/_CP14/Entities/Clothing/Head/Roles/guard.yml +++ b/Resources/Prototypes/_CP14/Entities/Clothing/Head/Roles/guard.yml @@ -22,7 +22,67 @@ sprite: _CP14/Clothing/Head/Roles/Guard/helmet.rsi - type: HideLayerClothing slots: - - Snout + - Hair + - HeadTop + - HeadSide + +- type: entity + parent: CP14ClothingHeadGuardBase + id: CP14ClothingHeadGuardCorinthianHelmet + name: "corinthian helmet" + components: + - type: Sprite + sprite: _CP14/Clothing/Head/Roles/Guard/corinthian_helmet.rsi + - type: Clothing + sprite: _CP14/Clothing/Head/Roles/Guard/corinthian_helmet.rsi + - type: HideLayerClothing + slots: + - Hair + - HeadTop + - HeadSide + +- type: entity + parent: CP14ClothingHeadGuardBase + id: CP14ClothingHeadGuardCap + name: "guard's cap" + components: + - type: Sprite + sprite: _CP14/Clothing/Head/Roles/Guard/guard_cap.rsi + - type: Clothing + sprite: _CP14/Clothing/Head/Roles/Guard/guard_cap.rsi + +- type: entity + parent: CP14ClothingHeadGuardBase + id: CP14ClothingHeadGuardFedora + name: "guard's fedora" + components: + - type: Sprite + sprite: _CP14/Clothing/Head/Roles/Guard/guard_fedora.rsi + - type: Clothing + sprite: _CP14/Clothing/Head/Roles/Guard/guard_fedora.rsi + +- type: entity + parent: CP14ClothingHeadGuardBase + id: CP14ClothingHeadGuardTriangular + name: "guard's triangular hat" + components: + - type: Sprite + sprite: _CP14/Clothing/Head/Roles/Guard/guard_triangularhat.rsi + - type: Clothing + sprite: _CP14/Clothing/Head/Roles/Guard/guard_triangularhat.rsi + +- type: entity + parent: CP14ClothingHeadGuardBase + id: CP14ClothingHeadGuardInvestigatorHelmet + name: "investigator helmet" + components: + - type: Sprite + sprite: _CP14/Clothing/Head/Roles/Guard/investigator_helmet.rsi + - type: Clothing + sprite: _CP14/Clothing/Head/Roles/Guard/investigator_helmet.rsi + - type: HideLayerClothing + slots: + - Hair - HeadTop - HeadSide diff --git a/Resources/Prototypes/_CP14/Loadouts/Jobs/guard.yml b/Resources/Prototypes/_CP14/Loadouts/Jobs/guard.yml index b0e923c212..d87d5696b5 100644 --- a/Resources/Prototypes/_CP14/Loadouts/Jobs/guard.yml +++ b/Resources/Prototypes/_CP14/Loadouts/Jobs/guard.yml @@ -27,12 +27,30 @@ minLimit: 1 loadouts: - CP14ClothingHeadGuardHelmet + - CP14ClothingHeadGuardCorinthianHelmet + - CP14ClothingHeadGuardCap + - CP14ClothingHeadGuardFedora - type: loadout id: CP14ClothingHeadGuardHelmet equipment: head: CP14ClothingHeadGuardHelmet +- type: loadout + id: CP14ClothingHeadGuardCorinthianHelmet + equipment: + head: CP14ClothingHeadGuardCorinthianHelmet + +- type: loadout + id: CP14ClothingHeadGuardCap + equipment: + head: CP14ClothingHeadGuardCap + +- type: loadout + id: CP14ClothingHeadGuardFedora + equipment: + head: CP14ClothingHeadGuardFedora + # Pants - type: loadoutGroup diff --git a/Resources/Prototypes/_CP14/Loadouts/Jobs/investigator.yml b/Resources/Prototypes/_CP14/Loadouts/Jobs/investigator.yml index 382a031ce5..ff38cc243d 100644 --- a/Resources/Prototypes/_CP14/Loadouts/Jobs/investigator.yml +++ b/Resources/Prototypes/_CP14/Loadouts/Jobs/investigator.yml @@ -10,4 +10,26 @@ - type: loadout id: CP14ClothingCloakGuardInvestigator equipment: - cloak: CP14ClothingCloakGuardInvestigator \ No newline at end of file + cloak: CP14ClothingCloakGuardInvestigator + + +# Head + +- type: loadoutGroup + id: CP14InvestigatorHead + name: cp14-loadout-investigator-head + minLimit: 1 + loadouts: + - CP14ClothingHeadGuardInvestigatorHelmet + - CP14ClothingHeadGuardFedora + - CP14ClothingHeadGuardTriangular + +- type: loadout + id: CP14ClothingHeadGuardTriangular + equipment: + head: CP14ClothingHeadGuardTriangular + +- type: loadout + id: CP14ClothingHeadGuardInvestigatorHelmet + equipment: + head: CP14ClothingHeadGuardInvestigatorHelmet \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Loadouts/role_loadouts.yml b/Resources/Prototypes/_CP14/Loadouts/role_loadouts.yml index 083cdce0e9..32874effd9 100644 --- a/Resources/Prototypes/_CP14/Loadouts/role_loadouts.yml +++ b/Resources/Prototypes/_CP14/Loadouts/role_loadouts.yml @@ -89,7 +89,7 @@ - type: roleLoadout id: JobCP14Investigator groups: - - CP14GuardHead + - CP14InvestigatorHead - CP14GeneralOuterClothing - CP14GeneralEyes - CP14InvestigatorCloak # diff --git a/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/blue.rsi/equipped-CLOAK.png b/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/blue.rsi/equipped-CLOAK.png index 2971840d4f..8f85e7990a 100644 Binary files a/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/blue.rsi/equipped-CLOAK.png and b/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/blue.rsi/equipped-CLOAK.png differ diff --git a/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/blue.rsi/icon.png b/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/blue.rsi/icon.png index 3aa630b924..f2ab5a363e 100644 Binary files a/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/blue.rsi/icon.png and b/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/blue.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/blue.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/blue.rsi/meta.json index 0799f0bd2c..59b2ae8591 100644 --- a/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/blue.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/blue.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Created by TheShuEd", + "copyright": "Created by TheShuEd, recolored by Dinazewwr", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/guard_commander_cloak.rsi/equipped-CLOAK.png b/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/guard_commander_cloak.rsi/equipped-CLOAK.png index 0748f6bcca..8cc312d0b4 100644 Binary files a/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/guard_commander_cloak.rsi/equipped-CLOAK.png and b/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/guard_commander_cloak.rsi/equipped-CLOAK.png differ diff --git a/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/guard_commander_cloak.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/guard_commander_cloak.rsi/meta.json index 660ed31f5e..0f46e07b9b 100644 --- a/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/guard_commander_cloak.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/guard_commander_cloak.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Created by TheShuEd", + "copyright": "Created by TheShuEd, recolored by Dinazewwr", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/guard_syurko.rsi/equipped-CLOAK.png b/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/guard_syurko.rsi/equipped-CLOAK.png index 66b0472bfc..8bec79a24d 100644 Binary files a/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/guard_syurko.rsi/equipped-CLOAK.png and b/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/guard_syurko.rsi/equipped-CLOAK.png differ diff --git a/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/guard_syurko.rsi/icon.png b/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/guard_syurko.rsi/icon.png index 76c6209825..9903612d99 100644 Binary files a/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/guard_syurko.rsi/icon.png and b/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/guard_syurko.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/guard_syurko.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/guard_syurko.rsi/meta.json index bac73872e4..bbd41f5c04 100644 --- a/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/guard_syurko.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/guard_syurko.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "All right reserved", - "copyright": "Created by creamy", + "copyright": "Created by creamy, recolored by Dinazewwr", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/investigator.rsi/equipped-CLOAK.png b/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/investigator.rsi/equipped-CLOAK.png index e36bf5097c..9cb2faeda9 100644 Binary files a/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/investigator.rsi/equipped-CLOAK.png and b/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/investigator.rsi/equipped-CLOAK.png differ diff --git a/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/investigator.rsi/icon.png b/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/investigator.rsi/icon.png index 1f77aa504a..3a37cbbfdf 100644 Binary files a/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/investigator.rsi/icon.png and b/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/investigator.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/investigator.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/investigator.rsi/meta.json index 0799f0bd2c..59b2ae8591 100644 --- a/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/investigator.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Cloak/Roles/Guard/investigator.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Created by TheShuEd", + "copyright": "Created by TheShuEd, recolored by Dinazewwr", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/corinthian_helmet.rsi/equipped-HELMET.png b/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/corinthian_helmet.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..2bb4172f0c Binary files /dev/null and b/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/corinthian_helmet.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/corinthian_helmet.rsi/icon.png b/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/corinthian_helmet.rsi/icon.png new file mode 100644 index 0000000000..00351da84d Binary files /dev/null and b/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/corinthian_helmet.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/corinthian_helmet.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/corinthian_helmet.rsi/meta.json new file mode 100644 index 0000000000..fe54f63843 --- /dev/null +++ b/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/corinthian_helmet.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Created by dinazewwr", + "size": { + "x": 48, + "y": 48 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/guard_cap.rsi/equipped-HELMET.png b/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/guard_cap.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..c6c149090d Binary files /dev/null and b/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/guard_cap.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/guard_cap.rsi/icon.png b/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/guard_cap.rsi/icon.png new file mode 100644 index 0000000000..335eb358be Binary files /dev/null and b/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/guard_cap.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/guard_cap.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/guard_cap.rsi/meta.json new file mode 100644 index 0000000000..fe54f63843 --- /dev/null +++ b/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/guard_cap.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Created by dinazewwr", + "size": { + "x": 48, + "y": 48 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/guard_fedora.rsi/equipped-HELMET.png b/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/guard_fedora.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..ae105372e9 Binary files /dev/null and b/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/guard_fedora.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/guard_fedora.rsi/icon.png b/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/guard_fedora.rsi/icon.png new file mode 100644 index 0000000000..2d6eb653cb Binary files /dev/null and b/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/guard_fedora.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/guard_fedora.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/guard_fedora.rsi/meta.json new file mode 100644 index 0000000000..fe54f63843 --- /dev/null +++ b/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/guard_fedora.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Created by dinazewwr", + "size": { + "x": 48, + "y": 48 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/guard_triangularhat.rsi/equipped-HELMET.png b/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/guard_triangularhat.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..ec81e8e1a2 Binary files /dev/null and b/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/guard_triangularhat.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/guard_triangularhat.rsi/icon.png b/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/guard_triangularhat.rsi/icon.png new file mode 100644 index 0000000000..efab9c6214 Binary files /dev/null and b/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/guard_triangularhat.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/guard_triangularhat.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/guard_triangularhat.rsi/meta.json new file mode 100644 index 0000000000..fe54f63843 --- /dev/null +++ b/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/guard_triangularhat.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Created by dinazewwr", + "size": { + "x": 48, + "y": 48 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/helmet.rsi/equipped-HELMET.png b/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/helmet.rsi/equipped-HELMET.png index 18e01f6c1d..cd7c055b5a 100644 Binary files a/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/helmet.rsi/equipped-HELMET.png and b/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/helmet.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/helmet.rsi/icon.png b/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/helmet.rsi/icon.png index dc97cf744a..13746f7030 100644 Binary files a/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/helmet.rsi/icon.png and b/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/helmet.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/helmet.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/helmet.rsi/meta.json index 7aba0be756..a28857a2c8 100644 --- a/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/helmet.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/helmet.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Created by TheShuEd, edited by dinazewwr", + "copyright": "Created by TheShuEd, recolored by dinazewwr", "size": { "x": 48, "y": 48 diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/investigator_helmet.rsi/equipped-HELMET.png b/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/investigator_helmet.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..2f7a191f54 Binary files /dev/null and b/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/investigator_helmet.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/investigator_helmet.rsi/icon.png b/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/investigator_helmet.rsi/icon.png new file mode 100644 index 0000000000..0bfcdb5237 Binary files /dev/null and b/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/investigator_helmet.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/investigator_helmet.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/investigator_helmet.rsi/meta.json new file mode 100644 index 0000000000..fe54f63843 --- /dev/null +++ b/Resources/Textures/_CP14/Clothing/Head/Roles/Guard/investigator_helmet.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Created by dinazewwr", + "size": { + "x": 48, + "y": 48 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_CP14/Clothing/Pants/Roles/Guard/b_chainmail.rsi/equipped-PANTS.png b/Resources/Textures/_CP14/Clothing/Pants/Roles/Guard/b_chainmail.rsi/equipped-PANTS.png index 9afb9c3c78..1f5bf57c20 100644 Binary files a/Resources/Textures/_CP14/Clothing/Pants/Roles/Guard/b_chainmail.rsi/equipped-PANTS.png and b/Resources/Textures/_CP14/Clothing/Pants/Roles/Guard/b_chainmail.rsi/equipped-PANTS.png differ diff --git a/Resources/Textures/_CP14/Clothing/Pants/Roles/Guard/b_chainmail.rsi/icon.png b/Resources/Textures/_CP14/Clothing/Pants/Roles/Guard/b_chainmail.rsi/icon.png index 1fa9dace1a..94f9b74fd2 100644 Binary files a/Resources/Textures/_CP14/Clothing/Pants/Roles/Guard/b_chainmail.rsi/icon.png and b/Resources/Textures/_CP14/Clothing/Pants/Roles/Guard/b_chainmail.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Clothing/Pants/Roles/Guard/b_chainmail.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Pants/Roles/Guard/b_chainmail.rsi/meta.json index 2e91191db7..e966654210 100644 --- a/Resources/Textures/_CP14/Clothing/Pants/Roles/Guard/b_chainmail.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Pants/Roles/Guard/b_chainmail.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "All right reserved", - "copyright": "Created by KBAS5", + "copyright": "Created by KBAS5, recolored by Dinazewwr", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/_CP14/Clothing/Shirt/Roles/Guard/b_chainmail.rsi/equipped-SHIRT.png b/Resources/Textures/_CP14/Clothing/Shirt/Roles/Guard/b_chainmail.rsi/equipped-SHIRT.png index b65deb5495..79f42d2fe1 100644 Binary files a/Resources/Textures/_CP14/Clothing/Shirt/Roles/Guard/b_chainmail.rsi/equipped-SHIRT.png and b/Resources/Textures/_CP14/Clothing/Shirt/Roles/Guard/b_chainmail.rsi/equipped-SHIRT.png differ diff --git a/Resources/Textures/_CP14/Clothing/Shirt/Roles/Guard/b_chainmail.rsi/icon.png b/Resources/Textures/_CP14/Clothing/Shirt/Roles/Guard/b_chainmail.rsi/icon.png index b2396842b1..f74b73622e 100644 Binary files a/Resources/Textures/_CP14/Clothing/Shirt/Roles/Guard/b_chainmail.rsi/icon.png and b/Resources/Textures/_CP14/Clothing/Shirt/Roles/Guard/b_chainmail.rsi/icon.png differ diff --git a/Resources/Textures/_CP14/Clothing/Shirt/Roles/Guard/b_chainmail.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Shirt/Roles/Guard/b_chainmail.rsi/meta.json index 7076adf11d..bfd0c2b1c8 100644 --- a/Resources/Textures/_CP14/Clothing/Shirt/Roles/Guard/b_chainmail.rsi/meta.json +++ b/Resources/Textures/_CP14/Clothing/Shirt/Roles/Guard/b_chainmail.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Created by TheShuEd", + "copyright": "Created by TheShuEd, recolored by Dinazewwr", "size": { "x": 32, "y": 32