From a370bc19b00127d9d908732af94bbbc8191ea111 Mon Sep 17 00:00:00 2001 From: SenorJaba Date: Wed, 17 Sep 2025 17:51:51 +0300 Subject: [PATCH] Guild berets and signs (#1786) * Guild berets and signs * Naming fix * Small fix * Russ --- .../Locale/en-US/_CP14/loadouts/loadout.ftl | 4 +- .../Locale/ru-RU/_CP14/loadouts/loadout.ftl | 6 +- .../_CP14/Catalog/Fills/closets.yml | 8 ++ .../Clothing/Head/Roles/guildworker.yml | 54 +++++++++++ .../Entities/Objects/Misc/guild_signs.yml | 91 ++++++++++++++++++ .../_CP14/Loadouts/Jobs/guildworker.yml | 36 +++++++ .../_CP14/Loadouts/role_loadouts.yml | 2 +- .../blue_guild_beret.rsi/equipped-HELMET.png | Bin 0 -> 599 bytes .../GuildWorker/blue_guild_beret.rsi/icon.png | Bin 0 -> 274 bytes .../blue_guild_beret.rsi/meta.json | 18 ++++ .../green_guild_beret.rsi/equipped-HELMET.png | Bin 0 -> 580 bytes .../green_guild_beret.rsi/icon.png | Bin 0 -> 274 bytes .../green_guild_beret.rsi/meta.json | 18 ++++ .../guild_beret.rsi/equipped-HELMET.png | Bin 0 -> 580 bytes .../GuildWorker/guild_beret.rsi/icon.png | Bin 0 -> 261 bytes .../GuildWorker/guild_beret.rsi/meta.json | 18 ++++ .../red_guild_beret.rsi/equipped-HELMET.png | Bin 0 -> 596 bytes .../GuildWorker/red_guild_beret.rsi/icon.png | Bin 0 -> 277 bytes .../GuildWorker/red_guild_beret.rsi/meta.json | 18 ++++ .../equipped-HELMET.png | Bin 0 -> 587 bytes .../yellow_guild_beret.rsi/icon.png | Bin 0 -> 267 bytes .../yellow_guild_beret.rsi/meta.json | 18 ++++ .../Objects/Misc/guild_signs.rsi/blue.png | Bin 0 -> 413 bytes .../Objects/Misc/guild_signs.rsi/green.png | Bin 0 -> 432 bytes .../Objects/Misc/guild_signs.rsi/meta.json | 23 +++++ .../Objects/Misc/guild_signs.rsi/red.png | Bin 0 -> 387 bytes .../Objects/Misc/guild_signs.rsi/yellow.png | Bin 0 -> 403 bytes .../Furniture/order_board.rsi/flag_yellow.png | Bin 412 -> 387 bytes 28 files changed, 310 insertions(+), 4 deletions(-) create mode 100644 Resources/Prototypes/_CP14/Entities/Clothing/Head/Roles/guildworker.yml create mode 100644 Resources/Prototypes/_CP14/Entities/Objects/Misc/guild_signs.yml create mode 100644 Resources/Prototypes/_CP14/Loadouts/Jobs/guildworker.yml create mode 100644 Resources/Textures/_CP14/Clothing/Head/Roles/GuildWorker/blue_guild_beret.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/_CP14/Clothing/Head/Roles/GuildWorker/blue_guild_beret.rsi/icon.png create mode 100644 Resources/Textures/_CP14/Clothing/Head/Roles/GuildWorker/blue_guild_beret.rsi/meta.json create mode 100644 Resources/Textures/_CP14/Clothing/Head/Roles/GuildWorker/green_guild_beret.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/_CP14/Clothing/Head/Roles/GuildWorker/green_guild_beret.rsi/icon.png create mode 100644 Resources/Textures/_CP14/Clothing/Head/Roles/GuildWorker/green_guild_beret.rsi/meta.json create mode 100644 Resources/Textures/_CP14/Clothing/Head/Roles/GuildWorker/guild_beret.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/_CP14/Clothing/Head/Roles/GuildWorker/guild_beret.rsi/icon.png create mode 100644 Resources/Textures/_CP14/Clothing/Head/Roles/GuildWorker/guild_beret.rsi/meta.json create mode 100644 Resources/Textures/_CP14/Clothing/Head/Roles/GuildWorker/red_guild_beret.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/_CP14/Clothing/Head/Roles/GuildWorker/red_guild_beret.rsi/icon.png create mode 100644 Resources/Textures/_CP14/Clothing/Head/Roles/GuildWorker/red_guild_beret.rsi/meta.json create mode 100644 Resources/Textures/_CP14/Clothing/Head/Roles/GuildWorker/yellow_guild_beret.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/_CP14/Clothing/Head/Roles/GuildWorker/yellow_guild_beret.rsi/icon.png create mode 100644 Resources/Textures/_CP14/Clothing/Head/Roles/GuildWorker/yellow_guild_beret.rsi/meta.json create mode 100644 Resources/Textures/_CP14/Objects/Misc/guild_signs.rsi/blue.png create mode 100644 Resources/Textures/_CP14/Objects/Misc/guild_signs.rsi/green.png create mode 100644 Resources/Textures/_CP14/Objects/Misc/guild_signs.rsi/meta.json create mode 100644 Resources/Textures/_CP14/Objects/Misc/guild_signs.rsi/red.png create mode 100644 Resources/Textures/_CP14/Objects/Misc/guild_signs.rsi/yellow.png diff --git a/Resources/Locale/en-US/_CP14/loadouts/loadout.ftl b/Resources/Locale/en-US/_CP14/loadouts/loadout.ftl index e82c28ba6f..f37e6fc8d0 100644 --- a/Resources/Locale/en-US/_CP14/loadouts/loadout.ftl +++ b/Resources/Locale/en-US/_CP14/loadouts/loadout.ftl @@ -63,7 +63,7 @@ cp14-loadout-merchant-shirt = Merchant's shirt cp14-loadout-merchant-pants = Merchant's pants cp14-loadout-merchant-shoes = Merchant's shoes -# Guildmaster +# Guild cp14-loadout-guildmaster-outer = Guildmaster outer clothes cp14-loadout-guildmaster-head = Guildmaster hat @@ -72,3 +72,5 @@ cp14-loadout-guildmaster-shirt = Guildmaster shirt cp14-loadout-guildmaster-pants = Guildmaster pants cp14-loadout-guildmaster-shoes = Guildmaster shoes cp14-loadout-guildmaster-spells = Guildmaster spells + +cp14-loadout-guildworker-head = Guild worker's head diff --git a/Resources/Locale/ru-RU/_CP14/loadouts/loadout.ftl b/Resources/Locale/ru-RU/_CP14/loadouts/loadout.ftl index afe42c9792..405a7f6c58 100644 --- a/Resources/Locale/ru-RU/_CP14/loadouts/loadout.ftl +++ b/Resources/Locale/ru-RU/_CP14/loadouts/loadout.ftl @@ -63,7 +63,7 @@ cp14-loadout-merchant-shirt = Рубашка торговца cp14-loadout-merchant-pants = Штаны торговца cp14-loadout-merchant-shoes = Ботинки торговца -# Guildmaster +# Guild cp14-loadout-guildmaster-outer = Верхняя одежда гильдмастера cp14-loadout-guildmaster-head = Шляпа гильдмастера @@ -71,4 +71,6 @@ cp14-loadout-guildmaster-cloak = Накидка гильдмастера cp14-loadout-guildmaster-shirt = Рубашка гильдмастера cp14-loadout-guildmaster-pants = Штаны гильдмастера cp14-loadout-guildmaster-shoes = Ботинки гильдмастера -cp14-loadout-guildmaster-spells = Заклинания гильдмастера \ No newline at end of file +cp14-loadout-guildmaster-spells = Заклинания гильдмастера + +cp14-loadout-guildworker-head = Шляпа работника гильдии \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Catalog/Fills/closets.yml b/Resources/Prototypes/_CP14/Catalog/Fills/closets.yml index a4f1d87ded..68c4e06b76 100644 --- a/Resources/Prototypes/_CP14/Catalog/Fills/closets.yml +++ b/Resources/Prototypes/_CP14/Catalog/Fills/closets.yml @@ -93,6 +93,14 @@ - id: CP14StampDenied - id: CP14StampApproved - id: CP14PaperFolderBlue + - id: CP14ClothingHeadGuildBeretRed + - id: CP14ClothingHeadGuildBeretYellow + - id: CP14ClothingHeadGuildBeretBlue + - id: CP14ClothingHeadGuildBeretGreen + - id: CP14GuildSignRed + - id: CP14GuildSignYellow + - id: CP14GuildSignGreen + - id: CP14GuildSignBlue - type: entity parent: CP14WoodenCloset diff --git a/Resources/Prototypes/_CP14/Entities/Clothing/Head/Roles/guildworker.yml b/Resources/Prototypes/_CP14/Entities/Clothing/Head/Roles/guildworker.yml new file mode 100644 index 0000000000..20c5762463 --- /dev/null +++ b/Resources/Prototypes/_CP14/Entities/Clothing/Head/Roles/guildworker.yml @@ -0,0 +1,54 @@ +- type: entity + parent: CP14ClothingHeadBase + id: CP14ClothingHeadGuildBeret + name: guild beret + description: A welcoming sign of care and responsibility. + components: + - type: Sprite + sprite: _CP14/Clothing/Head/Roles/GuildWorker/guild_beret.rsi + - type: Clothing + sprite: _CP14/Clothing/Head/Roles/GuildWorker/guild_beret.rsi + +- type: entity + parent: CP14ClothingHeadBase + id: CP14ClothingHeadGuildBeretRed + name: red guild beret + description: A welcoming sign of care and responsibility. This one is associated with hunting and fighting. + components: + - type: Sprite + sprite: _CP14/Clothing/Head/Roles/GuildWorker/red_guild_beret.rsi + - type: Clothing + sprite: _CP14/Clothing/Head/Roles/GuildWorker/red_guild_beret.rsi + +- type: entity + parent: CP14ClothingHeadBase + id: CP14ClothingHeadGuildBeretYellow + name: yellow guild beret + description: A welcoming sign of care and responsibility. This one is associated with gathering and mining. + components: + - type: Sprite + sprite: _CP14/Clothing/Head/Roles/GuildWorker/yellow_guild_beret.rsi + - type: Clothing + sprite: _CP14/Clothing/Head/Roles/GuildWorker/yellow_guild_beret.rsi + +- type: entity + parent: CP14ClothingHeadBase + id: CP14ClothingHeadGuildBeretBlue + name: blue guild beret + description: A welcoming sign of care and responsibility. This one is associated with creating and building. + components: + - type: Sprite + sprite: _CP14/Clothing/Head/Roles/GuildWorker/blue_guild_beret.rsi + - type: Clothing + sprite: _CP14/Clothing/Head/Roles/GuildWorker/blue_guild_beret.rsi + +- type: entity + parent: CP14ClothingHeadBase + id: CP14ClothingHeadGuildBeretGreen + name: green guild beret + description: A welcoming sign of care and responsibility. This one is associated with speaking and teaching. + components: + - type: Sprite + sprite: _CP14/Clothing/Head/Roles/GuildWorker/green_guild_beret.rsi + - type: Clothing + sprite: _CP14/Clothing/Head/Roles/GuildWorker/green_guild_beret.rsi \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Entities/Objects/Misc/guild_signs.yml b/Resources/Prototypes/_CP14/Entities/Objects/Misc/guild_signs.yml new file mode 100644 index 0000000000..ae41e5b58e --- /dev/null +++ b/Resources/Prototypes/_CP14/Entities/Objects/Misc/guild_signs.yml @@ -0,0 +1,91 @@ +- type: entity + id: CP14GuildSignRed + name: red guild sign + description: A small sign to indicate a desk related to red quests. + parent: + - BaseItem + - CP14BaseFlammable + categories: [ ForkFiltered ] + components: + - type: Sprite + noRot: true + sprite: _CP14/Objects/Misc/guild_signs.rsi + state: red + - type: Item + size: Small + - type: Damageable + damageContainer: Inorganic + damageModifierSet: CP14Wood + - type: Destructible + thresholds: + - trigger: + !type:DamageTypeTrigger + damageType: Heat + damage: 6 + behaviors: + - !type:DoActsBehavior + acts: ["Destruction"] + - !type:PlaySoundBehavior + sound: + collection: WoodDestroy + - !type:SpawnEntitiesBehavior + spawn: + CP14Ash1: + min: 1 + max: 2 + - trigger: + !type:DamageTrigger + damage: 10 + behaviors: + - !type:DoActsBehavior + acts: ["Destruction"] + - !type:PlaySoundBehavior + sound: + collection: WoodDestroy + - !type:SpawnEntitiesBehavior + spawn: + CP14WoodenPlanks1: + min: 1 + max: 1 + - type: PhysicalComposition + materialComposition: + CP14WoodenPlanks: 20 + +- type: entity + id: CP14GuildSignYellow + name: yellow guild sign + description: A small sign to indicate a desk related to yellow quests. + parent: + - CP14GuildSignRed + categories: [ ForkFiltered ] + components: + - type: Sprite + noRot: true + sprite: _CP14/Objects/Misc/guild_signs.rsi + state: yellow + +- type: entity + id: CP14GuildSignBlue + name: blue guild sign + description: A small sign to indicate a desk related to blue quests. + parent: + - CP14GuildSignRed + categories: [ ForkFiltered ] + components: + - type: Sprite + noRot: true + sprite: _CP14/Objects/Misc/guild_signs.rsi + state: blue + +- type: entity + id: CP14GuildSignGreen + name: green guild sign + description: A small sign to indicate a desk related to green quests. + parent: + - CP14GuildSignRed + categories: [ ForkFiltered ] + components: + - type: Sprite + noRot: true + sprite: _CP14/Objects/Misc/guild_signs.rsi + state: green \ No newline at end of file diff --git a/Resources/Prototypes/_CP14/Loadouts/Jobs/guildworker.yml b/Resources/Prototypes/_CP14/Loadouts/Jobs/guildworker.yml new file mode 100644 index 0000000000..e9b85643b6 --- /dev/null +++ b/Resources/Prototypes/_CP14/Loadouts/Jobs/guildworker.yml @@ -0,0 +1,36 @@ +# Head + +- type: loadoutGroup + id: CP14GuildWorkerHead + name: cp14-loadout-guildworker-head + loadouts: + - CP14ClothingHeadGuildBeret + - CP14ClothingHeadGuildBeretRed + - CP14ClothingHeadGuildBeretYellow + - CP14ClothingHeadGuildBeretBlue + - CP14ClothingHeadGuildBeretGreen + +- type: loadout + id: CP14ClothingHeadGuildBeret + equipment: + head: CP14ClothingHeadGuildBeret + +- type: loadout + id: CP14ClothingHeadGuildBeretRed + equipment: + head: CP14ClothingHeadGuildBeretRed + +- type: loadout + id: CP14ClothingHeadGuildBeretYellow + equipment: + head: CP14ClothingHeadGuildBeretYellow + +- type: loadout + id: CP14ClothingHeadGuildBeretGreen + equipment: + head: CP14ClothingHeadGuildBeretGreen + +- type: loadout + id: CP14ClothingHeadGuildBeretBlue + equipment: + head: CP14ClothingHeadGuildBeretBlue \ 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 0f6b957660..055e21866a 100644 --- a/Resources/Prototypes/_CP14/Loadouts/role_loadouts.yml +++ b/Resources/Prototypes/_CP14/Loadouts/role_loadouts.yml @@ -147,7 +147,7 @@ groups: - CP14GuildmasterOuterClothing - CP14GeneralEyes - - CP14GeneralHead + - CP14GuildWorkerHead - CP14GuildmasterShirt - CP14GuildmasterPants - CP14GuildmasterShoes diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/GuildWorker/blue_guild_beret.rsi/equipped-HELMET.png b/Resources/Textures/_CP14/Clothing/Head/Roles/GuildWorker/blue_guild_beret.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..dc885746b414f1be9734b0846010c49a9743d4cd GIT binary patch literal 599 zcmeAS@N?(olHy`uVBq!ia0vp^2_VeD1|%QND7OGojKx9jP7LeL$-HD>U=s9naSW-L z^Y)H?$K?c>V;_${Qjk$(oao{xkhw8{Ph8MtI-hx%csRGxj@=!TKVLi=TX6BJ=W*$n zDUT0aUA$DO>4M2&$M~-H?jsBLnC?BTctZa|!F~QIPH`3Y@Bdc!oNgxsw6Njwv!2xS z@9{P#VxN`d6{T0|b_jW1sxiCz`?|mH@zqZ2?N4-@dS6=aEiZa(;XS*`T>eaW7fb$arG0T`_k9$_%Uf(@r*ZbPp7V%^y_?7>6O>~pB@-oY(2YQeYu5X z{o1~D`F7L!R9(9(qwbwdlYVeEJ$UKki7J{`GnTHsC>O<_t|i;Q*9lOab=cR`qvmej*5-s2OvZ-X(**~Y-*JtlN z@qg3TH+gkm9_)DI@bP{1Br*0i?~2zfoz0*Bd~ROx+IknDZ?S*_D--@r|LwPZX8hhi z5tlw*=(c*o>iKl0W00vK>$15&ZRSqCd`SJ73 z64hgAbC*88*tt@}amtIN*R%5ORHaOlOq2@`7Q6IBeBVVmuiatFVTawXtq8rBSKDzW zZ|S4W_diEw$BE9&4%O&h6Imnw;`#S8Uu+ZRiEk-P6}+b6X?^>B*2V`|T>9_2yjH|< T;r>NYbs$+!S3j3^P6O zaqx@K*FW3xE9XD|`|7uY3k00ma(EYaTkQAVHD}b@*bcAzyuOy9Ybh7Q$(I}lip2tHSXf24-O>|qXV0*?|1bMvPBy>wZlBAn=YE=A z*fX7NM~HdFKKHeg=RIHiHh+I(Swwm3tp4ZI86$kf?&t;ucLK6T)?{csJ literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/GuildWorker/blue_guild_beret.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Head/Roles/GuildWorker/blue_guild_beret.rsi/meta.json new file mode 100644 index 0000000000..f9ee52b604 --- /dev/null +++ b/Resources/Textures/_CP14/Clothing/Head/Roles/GuildWorker/blue_guild_beret.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Created by Prazat, recolored by Jaba", + "size": { + "x": 48, + "y": 48 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/GuildWorker/green_guild_beret.rsi/equipped-HELMET.png b/Resources/Textures/_CP14/Clothing/Head/Roles/GuildWorker/green_guild_beret.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..b6ef2c70250b27dc9a9e73349e70a338f6fd757f GIT binary patch literal 580 zcmeAS@N?(olHy`uVBq!ia0vp^2_VeD1|%QND7OGojKx9jP7LeL$-D%z|9QGNhE&XX zd&k~GI#K4>NB5Tn7aq2jSZFAUoD}0~b(qd)*j%z{a)3Cydf}U}6EQEIX`G7{ne*mF zfKf>Shltl)l_@-p(n1yN54ROxFqiq*qp-i3yUt#K={@)R-_`$PCaLzb0PTFRGjgL$ z&g%sA&z<34-o0IO_NtQSr1{H!?fiSTWS>!v-1kj2XD3bh_fuQkdT!m%#JK;fo+j9R zl!}izb#>8A?SicyvybmRQ)HL@^Xzn!=)*rA1=)REdL_SXk*m4-{uvj-o-R-L$IumF ze^P%98`mF`s|)P4-mG5k{Q9L2?=R)8*1WpAJg%MLQxLJYu?qa_t0TUDQup08_toQ` zx9``k{=M`zx6zCH`TXrdd`Bj|Y}>Ny?3?@RS9|4uN;cb9cj}pbpTAm{{W|YSZSLw( z-%RzEe%~#>DQtV>OL;+{&#-_GIy3%1-FG!NExUTY>dUwnu2Uxmed?MNzoaOM%ZHu2 z(u#j+w~lkhZ<6Q`1tk9faKMj-a<;*x8}Mf?*FQ4R6XU>{J)MTqPS0;h|zWqOga1Zx6Aea x!k6DOe%`ZSdU>Mnq>_Jsb2QClFx`0|_%4I4)+vX#1_nn#vYxJfF6*2Ung9`B`O5$R literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/GuildWorker/green_guild_beret.rsi/icon.png b/Resources/Textures/_CP14/Clothing/Head/Roles/GuildWorker/green_guild_beret.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..a144e09c50dae803a665ffb644ac9faf664036a3 GIT binary patch literal 274 zcmeAS@N?(olHy`uVBq!ia0vp^1|ZDA1|-9oezpTC#^NA%Cx&(BWL^R}XFOdTLoyoQ zUQy(C43s$balh{d&T@|JH|8dEWeDGCP+l-ns@cNwxVMMQ-W!1&6C9ff?zPwzMOf(6QjOU$_W>M P{$lWS^>bP0l+XkKwef6# literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/GuildWorker/green_guild_beret.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Head/Roles/GuildWorker/green_guild_beret.rsi/meta.json new file mode 100644 index 0000000000..f9ee52b604 --- /dev/null +++ b/Resources/Textures/_CP14/Clothing/Head/Roles/GuildWorker/green_guild_beret.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Created by Prazat, recolored by Jaba", + "size": { + "x": 48, + "y": 48 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/GuildWorker/guild_beret.rsi/equipped-HELMET.png b/Resources/Textures/_CP14/Clothing/Head/Roles/GuildWorker/guild_beret.rsi/equipped-HELMET.png new file mode 100644 index 0000000000000000000000000000000000000000..8b1e9e6c1f848229cd6012adb31264925664f7bc GIT binary patch literal 580 zcmeAS@N?(olHy`uVBq!ia0vp^2_VeD1|%QND7OGojKx9jP7LeL$-D%z|9QGNhE&XX zd&k~e#!=$<$N7#NH`XjD(8-u8GI8zsLsz)Wk~Zc$u;iXUH+{mnEpkoy2ei%}jLd#G z-|L9m#sG_L7AJ%ZE~W+PY~Fe2tt7|!Lwa@g1qE*ooG~^&f5`OvWT15ndrXC=P2PEK zPIkGo>|XxQ>5j@1RF-DVO6stYE9PvpZhfBZQhFJ zb9=={Uwcn-bJl+~L0m;teg6{AczgZ2m#=9Jy7xo0j#QkllPhExsb~W8}lkL@v*(OFZjyw7jd97wtJr(HAnkC)OH(&d7)ayiy_ThhimpvC(x=$+k x{2@guJb9kDiY9-~t$Wt%k2W%6I`l{Ue#X_a&Q4tQQ+5JK*3;F`Wt~$(69CW10#X0~ literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/GuildWorker/guild_beret.rsi/icon.png b/Resources/Textures/_CP14/Clothing/Head/Roles/GuildWorker/guild_beret.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..fb68c7a1589895db0c16412fc61ceb854427b1bb GIT binary patch literal 261 zcmeAS@N?(olHy`uVBq!ia0vp^1|ZDA1|-9oezpTC#^NA%Cx&(BWL^R}`#oJ8LoyoQ zURlU>C_v)q$NvXXW-i!}a%sT~-7?nh%zTB6*e`-P`?{~1U)W|g(-zF!+TRux{#+`LX9C!2Z3fvP8 z+q`5?_2)@lpPn;!k@+dTR$2<^jvbz73dWPPgg&ebxsLQ0GVB+(1aSW-L z^Y+gEY~e(i;~)DkY0CCx^XFNf;=RelX))uVW^;3QB#S!x!TJTIg+&ELoBlUEcpy@6 z@#w*Ws@^g!QE#3Iyx_OUh~iuQ`mw0F=OfB8|&43|kuE;lFJ-uan!D_+!X?>g=N$VqYcy+w~S-pk!*D*xa2 z^f92?iz)tzLZb5eK1#h+vFSJGZ~gShTkBbY$<5$-Pp9_OA6>ODaQ*8;ca2wW4Gi(C zH2N1KoV(p@$z5a3PLrVPk@rrfNk5n?CzHL&es=xGt4!O1Q-Nkb$^~?61vo~A% zxi#f%4)dP}@oWBGd$l&ianCvhzOL7m(_WuG&A+vdy{CQUm%6Hj1%H->6pGK*^GLr? zcHjR0imyuXPv33+owu>zQ_iyG@%3J_#3L?0zu~c6{(j+H$KBWLl|Vkm1P`JN{-3S| z8gkx0YLZ@CoQa~oN7Ot?l~Cc}gj+MtU*4$`yM%M0Z}&{cR6EXRS5GGXeU!CMYR8g# zLo?HD5|P1TY7>7=+NP4emGfDl>1n4~e-8Bn9r*0Rs?%OSPR#nJdVOv8i8oO|AekA3zpoB6W(fQ^2JX|L#!*OQj`oAPHcVLI=_{(lU=osK@NzI&k@ OB zIS$45#o5o!zDaR#fq*k#++wfK=e=vbDQmvQEsh$o<%w(5wf|6F`AXkwa3rrVq+M?B9Z3Prfx z%1aQxDj8ELnPkfMq2~QZyK~p~*D~)7yl%=Qe?FgaLww#@W2pU4`0p^jtF~a}bv(2e P=rsmUS3j3^P6U}E)jaSW-L z^Y)H@&Xok2V;|WMT{&_)<&mlH42z>Dg?MHNOR%u%L$D?;b$=81!aqPwTa< z`MaV^@zv97n=GHzsCjlJuAQy#=kr_o(8qskvaaiRo;NptvgdO9^7m(7@6Wm!!4tT8 z@zOcxXN5niS@!sEWa`cNTfaT=&N{ZiDoU%(!sGAtHBzg(<2@^{y_xeZ;nGIUUq2Kk zZ6oj@`RwHL;LV0JSk0Cm`rXx^c(-$-U;6uUxGgKnV(fU-rgN|?!CvPeLXe{I58c0;Que)J8Mox?=1ds0wn9{>gTe~ HDWM4fK)VhF literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/GuildWorker/yellow_guild_beret.rsi/icon.png b/Resources/Textures/_CP14/Clothing/Head/Roles/GuildWorker/yellow_guild_beret.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..e71a34268edea1ec41aa644930da0e64d4259af7 GIT binary patch literal 267 zcmeAS@N?(olHy`uVBq!ia0vp^1|ZDA1|-9oezpTC#^NA%Cx&(BWL^R}M?GB}LoyoQ zUQy&b!PkxlV&AViS#wNEHIeE(5?_6GEMt}bi#yE*KnOCmP=e$ zrZ{}E+phiWY)+ZD3j`eTnd5FZH~pV<mSEG+qC-!{X03>5k7Q_>c7+=w-0T_nTWIq67h-p35nR>Cf-(%t`}#h{4m<&t;uc GLK6VhLTQo! literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Clothing/Head/Roles/GuildWorker/yellow_guild_beret.rsi/meta.json b/Resources/Textures/_CP14/Clothing/Head/Roles/GuildWorker/yellow_guild_beret.rsi/meta.json new file mode 100644 index 0000000000..f9ee52b604 --- /dev/null +++ b/Resources/Textures/_CP14/Clothing/Head/Roles/GuildWorker/yellow_guild_beret.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Created by Prazat, recolored by Jaba", + "size": { + "x": 48, + "y": 48 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_CP14/Objects/Misc/guild_signs.rsi/blue.png b/Resources/Textures/_CP14/Objects/Misc/guild_signs.rsi/blue.png new file mode 100644 index 0000000000000000000000000000000000000000..e5ef56fb795fff6748dab54c60a44fc12f87deb2 GIT binary patch literal 413 zcmV;O0b>4%P)Px$S4l)cR9J=Wld(^OKorJ5kt!9aXbCP@qg!K|#?i^i!NtYDv$I1d{sIQmIGCtI zW8&pdO2J}-tph@#BE4!i@3&muz3<-p?r{Jd4u|vKSz{G8O>-)@E+Fn`rMl?VMR0SC z+kT&^Hj}7nno~`Y;0U{@)(=ayBj*A2$qQURWHKSJG@swAD79~Kc2C=?{CIXAagm^i z%hUZ_OeqBbShlxxt%VZ+08Nq7TP1Y5J#@M~P)b1v$>k1o37R6U&OlOhp0krZ5JF%W z25Xt$8z^gT+0VIL@E)zsfTl=jH`Lr-GWKk9UDwmRyeXpHP?C zt{=kn!?>9+0sH|ZWgF|>697Q|(gox`J@e=V%mz3d4u|sz*W7uw-8R8N00000NkvXX Hu0mjf!QHlX literal 0 HcmV?d00001 diff --git a/Resources/Textures/_CP14/Objects/Misc/guild_signs.rsi/green.png b/Resources/Textures/_CP14/Objects/Misc/guild_signs.rsi/green.png new file mode 100644 index 0000000000000000000000000000000000000000..d5106c8a61a7ad5fb578cf5de92988a0c6c96d4f GIT binary patch literal 432 zcmV;h0Z;ykP)Px$YDq*vR9J=WlTS+mK^Vq={>#-}V?n#bVnHVlAszYv(yc>R4}l-9Q_)@MAbo)B z5W;o}q$JQLSkm!dksWMhHPOkuHNVsByU#xFGw;lTMx)XEcS5Sdoa2nlLz6^mv98w! zc_X=RG?cuRL^;P9*_Oe>NV2tUF4Vp}OZGx0UZ<}VBC67SwwACXoE)4^)h@2jCTlwx z!|U|PInHQVi14xi^YEJsA#hz6fMTJvij`Ub+cL0|v8kF6f=aDSty!Hs`|M;4Y|Bsz zu=EImrnhpu4vxE6C?SNP)oQ6)trlP&#XPx$JxN4CR9J=Wl(9~OP!xtg5P@1qNNwsu>eQie=-@Lrxtlooe$FN?CO&|ZlSAF? zq_>0!L`vGyp(#SGcpK~F{ibtI{&UWMIX8epp-}vHG+ANa_wx&&HUFs91$u*P;Au3H z>MbSe`+n{@Hg0Cp)ACyFFxQC8j4)26Oz1Mh*K_SjRK!PDmtShUgZ*!7w>D76YIxbu zwn!Q99J{y`fUw-pSO|pW66i*eJ8s)}j=ehrtEPX!uT~(0*qBcy)7=^H9GgMct>gmT zVDJ2_IG1C9re!ebx>9Q}epImeMsK(GP)Px$O-V#SR9J=WlD$d;K@^40$}SnQ6L#q-X{NXAn)NlDu4Tw$Hk9w96nkBN-t51DPlQd_0^k z{2n}BBIe0oBmt~Bf;uMCWOD`tXXtfWl{>AADm~Bp^~P=3=yh78F_8L|SL9YrER&y1 z69f^h3#1X0#k97;`RqJjeYrDK$S;B@L3g`I^!)`q-<{!oYyoi4ZKsvkjTs1aj8Mk_ xfHt>)F>tt(;(p-FMHWflMiJS7!C){LegGtzaQ0(V`y&7V002ovPDHLkV1gPrXK-t6MCrg=BYPhWsc=Cd>OkAVcPZ_nVm%15mq!IXFKI zW@U;lu1BJHRx>o+YE3U{Kq0#NJb>jQo876XSD`{2df8xRheBW;($Db|t4!FMhfaQjdcfp2X!%cBGtgl$Ksyy_4)Heu|O0H>l_zkmNtq7_O@o3Ti4OS tZmHW^tICAzL?c8*L_|bHL_|bXvv0i>Q6Z5mhv@(S002ovPDHLkV1n_Kp*a8m delta 372 zcmV-)0gL{F1DpepF@IJ`L_t(&f$i73O2j}I1>h4I@UnpjqN^;}S#FVH3mYq6Knsg~ zfW^YzQY`H(eE}__jh)z8Syisl}4$r$*@>6Dr@tfH>pyBpn7d+n8at)N#RM7$cs(q?=w9s_36zz#1FNk| zNGXQ{0P343MuVjl=|HpX;r?tJ05H=!0sy?N2(J@2SCq>C z2NDZ#9LGeCiEaJw4wU`v1DdapQUbR938e(o#U22_wnuYiqwT=Ypk)j`5Gvs5Wpqw? zd;K1MV8IV8?K5Q%d9{9EVP&BoIdye5mQ$V93Y8{gB?=)TA|fIpA|fK9oP7ZnDp6pN SH^$Zg0000