From 5f9c6e6ee33725814b0c6be431c5a99d1d0aeea5 Mon Sep 17 00:00:00 2001 From: brainfood1183 <113240905+brainfood1183@users.noreply.github.com> Date: Mon, 24 Apr 2023 03:32:32 +0100 Subject: [PATCH] [entity] jonk bot * jonkbot * copyright * fix * fix --- .../Prototypes/Entities/Mobs/NPCs/silicon.yml | 41 ++++++++++++++++++ .../Consumable/Food/Containers/box.yml | 17 ++++---- .../Entities/Objects/Fun/bike_horn.yml | 21 ++++++++- .../Recipes/Crafting/Graphs/bots/honkbot.yml | 39 +++++++++++++++++ .../Prototypes/Recipes/Crafting/bots.yml | 13 ++++++ Resources/Prototypes/tags.yml | 7 +++ .../Mobs/Silicon/Bots/honkbot.rsi/jonkbot.png | Bin 0 -> 15550 bytes .../Mobs/Silicon/Bots/honkbot.rsi/meta.json | 6 ++- .../clown.rsi/box-inhand-left.png | Bin .../clown.rsi/box-inhand-right.png | Bin .../clown.rsi/box-open.png | Bin .../clown.rsi/box.png | Bin .../clown.rsi/meta.json | 0 .../cluwne.rsi/box-inhand-left.png | Bin .../cluwne.rsi/box-inhand-right.png | Bin .../cluwne.rsi/box-open.png | Bin .../cluwne.rsi/box.png | Bin .../cluwne.rsi/meta.json | 0 .../mime.rsi/box-inhand-left.png | Bin .../mime.rsi/box-inhand-right.png | Bin .../mime.rsi/box-open.png | Bin .../{happyhonk => Happyhonk}/mime.rsi/box.png | Bin .../mime.rsi/meta.json | 0 .../nukie.rsi/box-inhand-left.png | Bin .../nukie.rsi/box-inhand-right.png | Bin .../nukie.rsi/box-open.png | Bin .../nukie.rsi/box.png | Bin .../nukie.rsi/meta.json | 0 28 files changed, 134 insertions(+), 10 deletions(-) create mode 100644 Resources/Textures/Mobs/Silicon/Bots/honkbot.rsi/jonkbot.png rename Resources/Textures/Objects/Storage/{happyhonk => Happyhonk}/clown.rsi/box-inhand-left.png (100%) rename Resources/Textures/Objects/Storage/{happyhonk => Happyhonk}/clown.rsi/box-inhand-right.png (100%) rename Resources/Textures/Objects/Storage/{happyhonk => Happyhonk}/clown.rsi/box-open.png (100%) rename Resources/Textures/Objects/Storage/{happyhonk => Happyhonk}/clown.rsi/box.png (100%) rename Resources/Textures/Objects/Storage/{happyhonk => Happyhonk}/clown.rsi/meta.json (100%) rename Resources/Textures/Objects/Storage/{happyhonk => Happyhonk}/cluwne.rsi/box-inhand-left.png (100%) rename Resources/Textures/Objects/Storage/{happyhonk => Happyhonk}/cluwne.rsi/box-inhand-right.png (100%) rename Resources/Textures/Objects/Storage/{happyhonk => Happyhonk}/cluwne.rsi/box-open.png (100%) rename Resources/Textures/Objects/Storage/{happyhonk => Happyhonk}/cluwne.rsi/box.png (100%) rename Resources/Textures/Objects/Storage/{happyhonk => Happyhonk}/cluwne.rsi/meta.json (100%) rename Resources/Textures/Objects/Storage/{happyhonk => Happyhonk}/mime.rsi/box-inhand-left.png (100%) rename Resources/Textures/Objects/Storage/{happyhonk => Happyhonk}/mime.rsi/box-inhand-right.png (100%) rename Resources/Textures/Objects/Storage/{happyhonk => Happyhonk}/mime.rsi/box-open.png (100%) rename Resources/Textures/Objects/Storage/{happyhonk => Happyhonk}/mime.rsi/box.png (100%) rename Resources/Textures/Objects/Storage/{happyhonk => Happyhonk}/mime.rsi/meta.json (100%) rename Resources/Textures/Objects/Storage/{happyhonk => Happyhonk}/nukie.rsi/box-inhand-left.png (100%) rename Resources/Textures/Objects/Storage/{happyhonk => Happyhonk}/nukie.rsi/box-inhand-right.png (100%) rename Resources/Textures/Objects/Storage/{happyhonk => Happyhonk}/nukie.rsi/box-open.png (100%) rename Resources/Textures/Objects/Storage/{happyhonk => Happyhonk}/nukie.rsi/box.png (100%) rename Resources/Textures/Objects/Storage/{happyhonk => Happyhonk}/nukie.rsi/meta.json (100%) diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml index 9b698ef25f..6ff998396e 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml @@ -82,6 +82,11 @@ excess: 120 - type: Destructible thresholds: + - trigger: + !type:DamageTrigger + damage: 100 + behaviors: + - !type:TriggerBehavior - trigger: !type:DamageTrigger damage: 120 @@ -143,6 +148,42 @@ interactSuccessSound: path: /Audio/Items/bikehorn.ogg +- type: entity + parent: MobHonkBot + id: MobJonkBot + name: jonkbot + description: Horrifying. + components: + - type: SpamEmitSound + sound: + collection: CluwneHorn + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Silicon/Bots/honkbot.rsi + state: jonkbot + - type: Slippery + launchForwardsMultiplier: 7.0 + - type: Construction + graph: JonkBot + node: bot + - type: GhostRole + makeSentient: true + name: jonkbot + description: An artificial being of pure evil. + - type: InteractionPopup + interactSuccessSound: + path: /Audio/Items/brokenbikehorn.ogg + - type: Vocal + sounds: + Unsexed: Cluwne + - type: ExplodeOnTrigger + - type: Explosive + explosionType: Default + maxIntensity: 20 + totalIntensity: 10 + intensitySlope: 5 + canCreateVacuum: false + - type: entity parent: MobSiliconBase id: MobCleanBot diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml index cd69d01bbc..baa7c64658 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml @@ -380,10 +380,10 @@ components: - type: Sprite netsync: false - sprite: Objects/Storage/happyhonk/clown.rsi + sprite: Objects/Storage/Happyhonk/clown.rsi state: box - type: Item - sprite: Objects/Storage/happyhonk/clown.rsi + sprite: Objects/Storage/Happyhonk/clown.rsi heldPrefix: box - type: Appearance visuals: @@ -394,6 +394,7 @@ - type: Tag tags: - Trash + - HappyHonk - type: StorageFill contents: - id: ToyMouse @@ -465,10 +466,10 @@ components: - type: Sprite netsync: false - sprite: Objects/Storage/happyhonk/mime.rsi + sprite: Objects/Storage/Happyhonk/mime.rsi state: box - type: Item - sprite: Objects/Storage/happyhonk/mime.rsi + sprite: Objects/Storage/Happyhonk/mime.rsi heldPrefix: box - type: entity @@ -480,10 +481,10 @@ components: - type: Sprite netsync: false - sprite: Objects/Storage/happyhonk/nukie.rsi + sprite: Objects/Storage/Happyhonk/nukie.rsi state: box - type: Item - sprite: Objects/Storage/happyhonk/nukie.rsi + sprite: Objects/Storage/Happyhonk/nukie.rsi heldPrefix: box - type: StorageFill contents: @@ -512,10 +513,10 @@ components: - type: Sprite netsync: false - sprite: Objects/Storage/happyhonk/cluwne.rsi + sprite: Objects/Storage/Happyhonk/cluwne.rsi state: box - type: Item - sprite: Objects/Storage/happyhonk/cluwne.rsi + sprite: Objects/Storage/Happyhonk/cluwne.rsi heldPrefix: box - type: StorageFill contents: diff --git a/Resources/Prototypes/Entities/Objects/Fun/bike_horn.yml b/Resources/Prototypes/Entities/Objects/Fun/bike_horn.yml index 317691b63d..480fc1905f 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/bike_horn.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/bike_horn.yml @@ -41,11 +41,12 @@ Blunt: 0 - type: entity - parent: BikeHorn + parent: BaseItem id: CluwneHorn name: broken bike horn description: A broken horn off of a bicycle. components: + - type: ItemCooldown - type: Sprite sprite: Objects/Fun/cluwnehorn.rsi state: icon @@ -56,11 +57,29 @@ sprite: Objects/Fun/cluwnehorn.rsi slots: [Belt] quickEquip: false + - type: Tag + tags: + - Payload # yes, you can make re-usable prank grenades + - CluwneHorn + - type: EmitSoundOnTrigger + sound: + collection: CluwneHorn + params: + variation: 0.125 - type: EmitSoundOnUse sound: collection: CluwneHorn params: variation: 0.246 + - type: MeleeWeapon + soundHit: + collection: CluwneHorn + params: + variation: 0.125 + damage: + types: + Blunt: 5 + - type: entity parent: BikeHorn diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/bots/honkbot.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/bots/honkbot.yml index c804364b01..25a9104d59 100644 --- a/Resources/Prototypes/Recipes/Crafting/Graphs/bots/honkbot.yml +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/bots/honkbot.yml @@ -36,3 +36,42 @@ doAfter: 2 - node: bot entity: MobHonkBot + +- type: constructionGraph + id: JonkBot + start: start + graph: + - node: start + edges: + - to: bot + steps: + - tag: HappyHonk + icon: + sprite: Objects/Storage/Happyhonk/clown.rsi + state: box + name: happy honk meal + - tag: ClownRubberStamp + icon: + sprite: Objects/Misc/bureaucracy.rsi + state: stamp-clown + name: clown's rubber stamp + doAfter: 2 + - tag: CluwneHorn + icon: + sprite: Objects/Fun/cluwnehorn.rsi + state: icon + name: broken bike horn + doAfter: 2 + - tag: ProximitySensor + icon: + sprite: Objects/Misc/proximity_sensor.rsi + state: icon + name: proximity sensor + - tag: BorgArm + icon: + sprite: Mobs/Silicon/drone.rsi + state: l_hand + name: borg arm + doAfter: 2 + - node: bot + entity: MobJonkBot diff --git a/Resources/Prototypes/Recipes/Crafting/bots.yml b/Resources/Prototypes/Recipes/Crafting/bots.yml index ff3858eaf1..2f76f14ec6 100644 --- a/Resources/Prototypes/Recipes/Crafting/bots.yml +++ b/Resources/Prototypes/Recipes/Crafting/bots.yml @@ -24,6 +24,19 @@ sprite: Mobs/Silicon/Bots/honkbot.rsi state: honkbot +- type: construction + name: jonkbot + id: jonkbot + graph: JonkBot + startNode: start + targetNode: bot + category: construction-category-utilities + objectType: Item + description: This cursed bot honks, laughs and slips people. + icon: + sprite: Mobs/Silicon/Bots/honkbot.rsi + state: jonkbot + - type: construction name: medibot id: medibot diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index f549352e3d..ae37ea4f3f 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -140,6 +140,9 @@ - type: Tag id: ClownRubberStamp +- type: Tag + id: CluwneHorn + - type: Tag id: Crayon @@ -305,6 +308,10 @@ - type: Tag id: Handcuffs +- type: Tag + id: HappyHonk + + - type: Tag id: Hardsuit # Prevent melee injectors that can't penetrate hardsuits from injecting the wearer (nettles) diff --git a/Resources/Textures/Mobs/Silicon/Bots/honkbot.rsi/jonkbot.png b/Resources/Textures/Mobs/Silicon/Bots/honkbot.rsi/jonkbot.png new file mode 100644 index 0000000000000000000000000000000000000000..cf0d266d7312103ceb4e6253efaa49ba027ee314 GIT binary patch literal 15550 zcmeI3e{dA#8OPt0Vnc+0Ll{Cjon8*GLEPIP_ba!#oQ4EVW^yrxFeX7Ho87%+&E4&B zyUAT*qz(ZYT3R7u2W_a-44q-DKZZ)_4^+TOtW}Yjjx|jxSnvk|K@=)tA@tq5+>g9T z-pP!1`ptUBsVL; zV)JKze${MJq+;`Zb}!=%mC7wjd1qK&)mc?5cD9Nx$$W<=%N^xmfPkzErf9$))c9zz zITn|P|BYeVY>G|MTZ_#lMnY4ax7t*yhGmo8;-Eyv;WRm27S`@`+MKtWIEJ;;jFq-B z6ldja3~%F1V;{383;uJ5B_Cf?cGp-sXce1VbUnn=bR-h7M64Dy+)T4Bmy2dNn&T)q zgVH*Jx)7y;+TwVSM4U2N6T?bKSJa@%h$}RyZF;fUY$Qs4#;z+6N+t?wW9%SBIx2){ z*22(}IZ0yDC)5`9$4*TWY1uCaZUoT8lbG%A`DHVz?$=Z!-6!=Nkx2 znp)FWwnGGCNGJ8wYCA$QT_bC1TUeA=w!=$VJlWOjiZ8V|<02W#l;1&;kELmVOh}CaILEPJ@G25P9QXumd2{eRB)dXl+=i}%uS;%sr61plgk8M_HYbm zr5GD5##)Z$IVW#-EoWGsVbX%cXCg7Ys-*ZjCdA-)*2#0$^cZO~(HO9QBtaLZ6(xOc zS{zB_eQG!$=pH2?G|O}-*zBfLgK0C9RmGR8el-kFOZHgZ^kl(gYJ=!hvcVj+p%EjHtyo~*BXX*x6jKtv}tYo(7yA>|7JP0^u;6D54DhDZ!0I)JKHU7+_A3v)ap^y!A3mJ9H|Nr} znQyt=VD8}=7XdspUI2S`9(|+d;Qso~CptgA=vwf{ttYci_Ab~q`;|fP-I6`UuYviq z`Jd1fRkgRX>)OrBBa453Z60`ieGd5g`YU~3{r&VDaOc`UV{u+&!L{gDGnM?!tNOOg z{p`w%qZcz8)~z|6QTciBV5`^1Eoyl7-Au4+`3uj^VJgA*PX7G-OQ}ycATbGS~{q8SsocOXUf6KX&fdd21;EMO!j_$wx`a|uH z7VY@U@&2FoH`Nt&WrM-TE;L*{()%0bcULmjzBdb8UiaJVkG%PyI;TIc>eAy!o%=p` zegE9icTTPsO$UGYe*ehX`QY%WV?|4b?=GyXA9!bXF4*(#Hh$8vbM}n> zrdwvu|3e;q-1c_fze3S7%iiREbyN3tdC|)c{P@cvCKrO~%5T2@$>~!KjTu*0WGngd zxks%TyXLhW$go^EG3(reGeGFU%g2gNpZJmAJ@nG|yFcBuY5Uew|2+HhzMr*>Y{>g4 z{N!M7r1u9!o0nABc9d6F^qhI=-+k>}`QTFD!uqQ%*9#86ngIs4W!ZGP$f!Y3v9hY{ J`4x>D{|nbEJ|X}B literal 0 HcmV?d00001 diff --git a/Resources/Textures/Mobs/Silicon/Bots/honkbot.rsi/meta.json b/Resources/Textures/Mobs/Silicon/Bots/honkbot.rsi/meta.json index fcb184f863..de06949608 100644 --- a/Resources/Textures/Mobs/Silicon/Bots/honkbot.rsi/meta.json +++ b/Resources/Textures/Mobs/Silicon/Bots/honkbot.rsi/meta.json @@ -1,5 +1,5 @@ { - "copyright" : "Taken from https://github.com/tgstation/tgstation at https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a", + "copyright" : "Taken from https://github.com/tgstation/tgstation at https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a, jonkbot made by Alekshhh (github) for ss14", "license" : "CC-BY-SA-3.0", "size" : { "x" : 32, @@ -9,6 +9,10 @@ { "directions" : 1, "name" : "honkbot" + }, + { + "directions" : 1, + "name" : "jonkbot" } ], "version" : 1 diff --git a/Resources/Textures/Objects/Storage/happyhonk/clown.rsi/box-inhand-left.png b/Resources/Textures/Objects/Storage/Happyhonk/clown.rsi/box-inhand-left.png similarity index 100% rename from Resources/Textures/Objects/Storage/happyhonk/clown.rsi/box-inhand-left.png rename to Resources/Textures/Objects/Storage/Happyhonk/clown.rsi/box-inhand-left.png diff --git a/Resources/Textures/Objects/Storage/happyhonk/clown.rsi/box-inhand-right.png b/Resources/Textures/Objects/Storage/Happyhonk/clown.rsi/box-inhand-right.png similarity index 100% rename from Resources/Textures/Objects/Storage/happyhonk/clown.rsi/box-inhand-right.png rename to Resources/Textures/Objects/Storage/Happyhonk/clown.rsi/box-inhand-right.png diff --git a/Resources/Textures/Objects/Storage/happyhonk/clown.rsi/box-open.png b/Resources/Textures/Objects/Storage/Happyhonk/clown.rsi/box-open.png similarity index 100% rename from Resources/Textures/Objects/Storage/happyhonk/clown.rsi/box-open.png rename to Resources/Textures/Objects/Storage/Happyhonk/clown.rsi/box-open.png diff --git a/Resources/Textures/Objects/Storage/happyhonk/clown.rsi/box.png b/Resources/Textures/Objects/Storage/Happyhonk/clown.rsi/box.png similarity index 100% rename from Resources/Textures/Objects/Storage/happyhonk/clown.rsi/box.png rename to Resources/Textures/Objects/Storage/Happyhonk/clown.rsi/box.png diff --git a/Resources/Textures/Objects/Storage/happyhonk/clown.rsi/meta.json b/Resources/Textures/Objects/Storage/Happyhonk/clown.rsi/meta.json similarity index 100% rename from Resources/Textures/Objects/Storage/happyhonk/clown.rsi/meta.json rename to Resources/Textures/Objects/Storage/Happyhonk/clown.rsi/meta.json diff --git a/Resources/Textures/Objects/Storage/happyhonk/cluwne.rsi/box-inhand-left.png b/Resources/Textures/Objects/Storage/Happyhonk/cluwne.rsi/box-inhand-left.png similarity index 100% rename from Resources/Textures/Objects/Storage/happyhonk/cluwne.rsi/box-inhand-left.png rename to Resources/Textures/Objects/Storage/Happyhonk/cluwne.rsi/box-inhand-left.png diff --git a/Resources/Textures/Objects/Storage/happyhonk/cluwne.rsi/box-inhand-right.png b/Resources/Textures/Objects/Storage/Happyhonk/cluwne.rsi/box-inhand-right.png similarity index 100% rename from Resources/Textures/Objects/Storage/happyhonk/cluwne.rsi/box-inhand-right.png rename to Resources/Textures/Objects/Storage/Happyhonk/cluwne.rsi/box-inhand-right.png diff --git a/Resources/Textures/Objects/Storage/happyhonk/cluwne.rsi/box-open.png b/Resources/Textures/Objects/Storage/Happyhonk/cluwne.rsi/box-open.png similarity index 100% rename from Resources/Textures/Objects/Storage/happyhonk/cluwne.rsi/box-open.png rename to Resources/Textures/Objects/Storage/Happyhonk/cluwne.rsi/box-open.png diff --git a/Resources/Textures/Objects/Storage/happyhonk/cluwne.rsi/box.png b/Resources/Textures/Objects/Storage/Happyhonk/cluwne.rsi/box.png similarity index 100% rename from Resources/Textures/Objects/Storage/happyhonk/cluwne.rsi/box.png rename to Resources/Textures/Objects/Storage/Happyhonk/cluwne.rsi/box.png diff --git a/Resources/Textures/Objects/Storage/happyhonk/cluwne.rsi/meta.json b/Resources/Textures/Objects/Storage/Happyhonk/cluwne.rsi/meta.json similarity index 100% rename from Resources/Textures/Objects/Storage/happyhonk/cluwne.rsi/meta.json rename to Resources/Textures/Objects/Storage/Happyhonk/cluwne.rsi/meta.json diff --git a/Resources/Textures/Objects/Storage/happyhonk/mime.rsi/box-inhand-left.png b/Resources/Textures/Objects/Storage/Happyhonk/mime.rsi/box-inhand-left.png similarity index 100% rename from Resources/Textures/Objects/Storage/happyhonk/mime.rsi/box-inhand-left.png rename to Resources/Textures/Objects/Storage/Happyhonk/mime.rsi/box-inhand-left.png diff --git a/Resources/Textures/Objects/Storage/happyhonk/mime.rsi/box-inhand-right.png b/Resources/Textures/Objects/Storage/Happyhonk/mime.rsi/box-inhand-right.png similarity index 100% rename from Resources/Textures/Objects/Storage/happyhonk/mime.rsi/box-inhand-right.png rename to Resources/Textures/Objects/Storage/Happyhonk/mime.rsi/box-inhand-right.png diff --git a/Resources/Textures/Objects/Storage/happyhonk/mime.rsi/box-open.png b/Resources/Textures/Objects/Storage/Happyhonk/mime.rsi/box-open.png similarity index 100% rename from Resources/Textures/Objects/Storage/happyhonk/mime.rsi/box-open.png rename to Resources/Textures/Objects/Storage/Happyhonk/mime.rsi/box-open.png diff --git a/Resources/Textures/Objects/Storage/happyhonk/mime.rsi/box.png b/Resources/Textures/Objects/Storage/Happyhonk/mime.rsi/box.png similarity index 100% rename from Resources/Textures/Objects/Storage/happyhonk/mime.rsi/box.png rename to Resources/Textures/Objects/Storage/Happyhonk/mime.rsi/box.png diff --git a/Resources/Textures/Objects/Storage/happyhonk/mime.rsi/meta.json b/Resources/Textures/Objects/Storage/Happyhonk/mime.rsi/meta.json similarity index 100% rename from Resources/Textures/Objects/Storage/happyhonk/mime.rsi/meta.json rename to Resources/Textures/Objects/Storage/Happyhonk/mime.rsi/meta.json diff --git a/Resources/Textures/Objects/Storage/happyhonk/nukie.rsi/box-inhand-left.png b/Resources/Textures/Objects/Storage/Happyhonk/nukie.rsi/box-inhand-left.png similarity index 100% rename from Resources/Textures/Objects/Storage/happyhonk/nukie.rsi/box-inhand-left.png rename to Resources/Textures/Objects/Storage/Happyhonk/nukie.rsi/box-inhand-left.png diff --git a/Resources/Textures/Objects/Storage/happyhonk/nukie.rsi/box-inhand-right.png b/Resources/Textures/Objects/Storage/Happyhonk/nukie.rsi/box-inhand-right.png similarity index 100% rename from Resources/Textures/Objects/Storage/happyhonk/nukie.rsi/box-inhand-right.png rename to Resources/Textures/Objects/Storage/Happyhonk/nukie.rsi/box-inhand-right.png diff --git a/Resources/Textures/Objects/Storage/happyhonk/nukie.rsi/box-open.png b/Resources/Textures/Objects/Storage/Happyhonk/nukie.rsi/box-open.png similarity index 100% rename from Resources/Textures/Objects/Storage/happyhonk/nukie.rsi/box-open.png rename to Resources/Textures/Objects/Storage/Happyhonk/nukie.rsi/box-open.png diff --git a/Resources/Textures/Objects/Storage/happyhonk/nukie.rsi/box.png b/Resources/Textures/Objects/Storage/Happyhonk/nukie.rsi/box.png similarity index 100% rename from Resources/Textures/Objects/Storage/happyhonk/nukie.rsi/box.png rename to Resources/Textures/Objects/Storage/Happyhonk/nukie.rsi/box.png diff --git a/Resources/Textures/Objects/Storage/happyhonk/nukie.rsi/meta.json b/Resources/Textures/Objects/Storage/Happyhonk/nukie.rsi/meta.json similarity index 100% rename from Resources/Textures/Objects/Storage/happyhonk/nukie.rsi/meta.json rename to Resources/Textures/Objects/Storage/Happyhonk/nukie.rsi/meta.json -- 2.51.2