]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Misc Proper Rotation Sprites (#41764)
authorTiniest Shark <head.rebel@yahoo.com>
Sun, 7 Dec 2025 22:28:39 +0000 (17:28 -0500)
committerGitHub <noreply@github.com>
Sun, 7 Dec 2025 22:28:39 +0000 (22:28 +0000)
* Proper rotation sprites.

* copyright mentions

* wrong one

* better ointment

44 files changed:
Resources/Prototypes/Entities/Clothing/Neck/ties.yml
Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_percussion.yml
Resources/Prototypes/Entities/Objects/Specific/Hydroponics/tools.yml
Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml
Resources/Prototypes/Entities/Objects/Specific/Service/barber.yml
Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml
Resources/Textures/Clothing/Neck/Ties/dettie.rsi/meta.json
Resources/Textures/Clothing/Neck/Ties/dettie.rsi/storage.png [new file with mode: 0644]
Resources/Textures/Clothing/Neck/Ties/redtie.rsi/meta.json
Resources/Textures/Clothing/Neck/Ties/redtie.rsi/storage.png [new file with mode: 0644]
Resources/Textures/Clothing/Neck/Ties/scitie.rsi/meta.json
Resources/Textures/Clothing/Neck/Ties/scitie.rsi/storage.png [new file with mode: 0644]
Resources/Textures/Objects/Fun/Instruments/microphone.rsi/meta.json
Resources/Textures/Objects/Fun/Instruments/microphone.rsi/storage.png [new file with mode: 0644]
Resources/Textures/Objects/Specific/Medical/medical.rsi/meta.json
Resources/Textures/Objects/Specific/Medical/medical.rsi/ointment-storage.png [new file with mode: 0644]
Resources/Textures/Objects/Tanks/emergency.rsi/meta.json
Resources/Textures/Objects/Tanks/emergency.rsi/storage.png [new file with mode: 0644]
Resources/Textures/Objects/Tanks/emergency_clown.rsi/meta.json
Resources/Textures/Objects/Tanks/emergency_clown.rsi/storage.png [new file with mode: 0644]
Resources/Textures/Objects/Tanks/emergency_double.rsi/meta.json
Resources/Textures/Objects/Tanks/emergency_double.rsi/storage.png [new file with mode: 0644]
Resources/Textures/Objects/Tanks/emergency_double_red.rsi/icon.png
Resources/Textures/Objects/Tanks/emergency_double_red.rsi/meta.json
Resources/Textures/Objects/Tanks/emergency_double_red.rsi/storage.png [new file with mode: 0644]
Resources/Textures/Objects/Tanks/emergency_extended.rsi/meta.json
Resources/Textures/Objects/Tanks/emergency_extended.rsi/storage.png [new file with mode: 0644]
Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/meta.json
Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/storage.png [new file with mode: 0644]
Resources/Textures/Objects/Tanks/emergency_red.rsi/meta.json
Resources/Textures/Objects/Tanks/emergency_red.rsi/storage.png [new file with mode: 0644]
Resources/Textures/Objects/Tanks/emergency_yellow.rsi/icon.png
Resources/Textures/Objects/Tanks/emergency_yellow.rsi/meta.json
Resources/Textures/Objects/Tanks/emergency_yellow.rsi/storage.png [new file with mode: 0644]
Resources/Textures/Objects/Tools/Hydroponics/clippers.rsi/meta.json
Resources/Textures/Objects/Tools/Hydroponics/hatchet.rsi/meta.json
Resources/Textures/Objects/Tools/Hydroponics/hatchet.rsi/storage.png [new file with mode: 0644]
Resources/Textures/Objects/Tools/Hydroponics/hoe.rsi/meta.json
Resources/Textures/Objects/Tools/Hydroponics/hoe.rsi/storage.png [new file with mode: 0644]
Resources/Textures/Objects/Tools/Hydroponics/scythe.rsi/meta.json
Resources/Textures/Objects/Tools/Hydroponics/spade.rsi/meta.json
Resources/Textures/Objects/Tools/Hydroponics/spade.rsi/storage.png [new file with mode: 0644]
Resources/Textures/Objects/Tools/scissors.rsi/meta.json
Resources/Textures/Objects/Tools/scissors.rsi/storage.png [new file with mode: 0644]

index 2e172ae285fd2b7739124ef3b0172da24c3f277f..2c13dade4752d0f61826baec0714d67e14bf4439 100644 (file)
@@ -1,13 +1,5 @@
 - type: entity
   parent: ClothingNeckBase
-  id: ClothingNeckTieBase
-  abstract: true
-  components:
-  - type: Item
-    storedRotation: -45
-
-- type: entity
-  parent: ClothingNeckTieBase
   id: ClothingNeckTieRed
   name: red-tie
   description: A neosilk clip-on red tie.
@@ -16,6 +8,10 @@
     sprite: Clothing/Neck/Ties/redtie.rsi
   - type: Clothing
     sprite: Clothing/Neck/Ties/redtie.rsi
+  - type: Item
+    storedSprite:
+      state: storage
+      sprite: Clothing/Neck/Ties/redtie.rsi
   - type: Tag
     tags:
     - HamsterWearable
@@ -24,7 +20,7 @@
     - Recyclable
 
 - type: entity
-  parent: ClothingNeckTieBase
+  parent: ClothingNeckBase
   id: ClothingNeckTieDet
   name: detective's tie
   description: A loosely tied necktie, a perfect accessory for the over-worked detective.
     sprite: Clothing/Neck/Ties/dettie.rsi
   - type: Clothing
     sprite: Clothing/Neck/Ties/dettie.rsi
-    
+  - type: Item
+    storedSprite:
+      state: storage
+      sprite: Clothing/Neck/Ties/dettie.rsi
+
 - type: entity
-  parent: ClothingNeckTieBase
+  parent: ClothingNeckBase
   id: ClothingNeckTieSci
   name: scientist's tie
   description: Why do we all have to wear these ridiculous ties?
     sprite: Clothing/Neck/Ties/scitie.rsi
   - type: Clothing
     sprite: Clothing/Neck/Ties/scitie.rsi
+  - type: Item
+    storedSprite:
+      state: storage
+      sprite: Clothing/Neck/Ties/scitie.rsi
   - type: Tag
     tags:
     - ClothMade
index adff2cf0141779137870e294ae2e7bb8d7994c8f..654a491d88e25f2c74437a1f45aec30d0f91ca94 100644 (file)
     sprite: Objects/Fun/Instruments/microphone.rsi
   - type: Item
     size: Small
-    storedRotation: -45
+    storedSprite:
+      state: storage
+      sprite: Objects/Fun/Instruments/microphone.rsi
+
 
 - type: entity
   parent: BasePercussionInstrument
index e37c1a881671edeac4eadcb118018f9aaaa19fda..cfe3a6924e201cdaea8614526b8683103a7003f8 100644 (file)
@@ -19,7 +19,9 @@
         Slash: 6
   - type: Item
     sprite: Objects/Tools/Hydroponics/hoe.rsi
-    storedRotation: -135
+    storedSprite:
+      state: storage
+      sprite: Objects/Tools/Hydroponics/hoe.rsi
   - type: PhysicalComposition
     materialComposition:
       Steel: 100
         Piercing: 2
   - type: Item
     sprite: Objects/Tools/Hydroponics/hatchet.rsi
-    storedRotation: -135
+    storedSprite:
+      state: storage
+      sprite: Objects/Tools/Hydroponics/hatchet.rsi
   - type: PhysicalComposition
     materialComposition:
       Steel: 100
       collection: MetalThud
   - type: Item
     sprite: Objects/Tools/Hydroponics/spade.rsi
-    storedRotation: -45
+    storedSprite:
+      state: storage
+      sprite: Objects/Tools/Hydroponics/spade.rsi
   - type: Shovel
     speedModifier: 0.75 # slower at digging than a full-sized shovel
   - type: PhysicalComposition
index 937d4c038980121658ff574b86c8d8d309ec0725..74b9caaf63b3992504342a1b60a2e8f3ec41bb0f 100644 (file)
@@ -27,7 +27,9 @@
     state: ointment
   - type: Item
     heldPrefix: ointment
-    storedRotation: 45
+    storedSprite:
+      state: ointment-storage
+      sprite: Objects/Specific/Medical/medical.rsi
   - type: Healing
     damageContainers:
       - Biological
index e3fe3584f8083b134c77db4ca60de34bf4f473b0..ccd42776e3f3aaede769eba2e1f5741f562b4fed 100644 (file)
@@ -8,7 +8,9 @@
     sprite: Objects/Tools/scissors.rsi
     state: icon
   - type: Item
-    storedRotation: 135
+    storedSprite:
+      state: storage
+      sprite: Objects/Tools/scissors.rsi
   - type: MagicMirror
   - type: ActivatableUI
     key: enum.MagicMirrorUiKey.Key
index eb4b881998bb9d8296d29a9ba864659374297bf4..8ce9de0f3bafc655870ea4052a8eb4b9add286ec 100644 (file)
@@ -94,7 +94,9 @@
   - type: Item
     size: Small
     sprite: Objects/Tanks/emergency.rsi
-    storedRotation: -45
+    storedSprite:
+      state: storage
+      sprite: Objects/Tanks/emergency.rsi
   - type: GasTank
     air:
       volume: 0.66
     sprite: Objects/Tanks/emergency_red.rsi
   - type: Item
     sprite: Objects/Tanks/emergency_red.rsi
+    storedSprite:
+      state: storage
+      sprite: Objects/Tanks/emergency_red.rsi
   - type: Clothing
     sprite: Objects/Tanks/emergency_red.rsi
 
     sprite: Objects/Tanks/emergency_extended.rsi
   - type: Item
     sprite: Objects/Tanks/emergency_extended.rsi
+    storedSprite:
+      state: storage
+      sprite: Objects/Tanks/emergency_extended.rsi
   - type: GasTank
     air:
       volume: 1.5
     sprite: Objects/Tanks/emergency_extended_red.rsi
   - type: Item
     sprite: Objects/Tanks/emergency_extended_red.rsi
+    storedSprite:
+      state: storage
+      sprite: Objects/Tanks/emergency_extended_red.rsi
   - type: Clothing
     sprite: Objects/Tanks/emergency_extended_red.rsi
 
     sprite: Objects/Tanks/emergency_double.rsi
   - type: Item
     sprite: Objects/Tanks/emergency_double.rsi
+    storedSprite:
+      state: storage
+      sprite: Objects/Tanks/emergency_double.rsi
   - type: GasTank
     air:
       volume: 2.5
     sprite: Objects/Tanks/emergency_double_red.rsi
   - type: Item
     sprite: Objects/Tanks/emergency_double_red.rsi
+    storedSprite:
+      state: storage
+      sprite: Objects/Tanks/emergency_double_red.rsi
   - type: Clothing
     sprite: Objects/Tanks/emergency_double_red.rsi
 
     sprite: Objects/Tanks/emergency_clown.rsi
   - type: Item
     sprite: Objects/Tanks/emergency_clown.rsi
+    storedSprite:
+      state: storage
+      sprite: Objects/Tanks/emergency_clown.rsi
   - type: Clothing
     sprite: Objects/Tanks/emergency_clown.rsi
 
index f6ae2ed6dec23101ef69a401c8b1f979613c91d5..c5916a5432aba66d88216c38115829040887144f 100644 (file)
@@ -1,26 +1,29 @@
 {
-  "version": 1,
-  "license": "CC-BY-SA-3.0",
-  "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da, edited by Flareguy for Space Station 14 | In hand sprites sprited by PuroSlavKing (Github) for Space Station 14",
-  "size": {
-    "x": 32,
-    "y": 32
-  },
-  "states": [
-    {
-      "name": "equipped-NECK",
-      "directions": 4
+    "version": 1,
+    "license": "CC-BY-SA-3.0",
+    "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da, edited by Flareguy for Space Station 14 | In hand sprites sprited by PuroSlavKing (Github) for Space Station 14. Storage by TiniestShark (Github)",
+    "size": {
+        "x": 32,
+        "y": 32
     },
-    {
-      "name": "icon"
-    },
-    {
-      "name": "inhand-left",
-      "directions": 4
-    },
-    {
-      "name": "inhand-right",
-      "directions": 4
-    }
-  ]
+    "states": [
+        {
+            "name": "equipped-NECK",
+            "directions": 4
+        },
+        {
+            "name": "icon"
+        },
+        {
+            "name": "storage"
+        },
+        {
+            "name": "inhand-left",
+            "directions": 4
+        },
+        {
+            "name": "inhand-right",
+            "directions": 4
+        }
+    ]
 }
diff --git a/Resources/Textures/Clothing/Neck/Ties/dettie.rsi/storage.png b/Resources/Textures/Clothing/Neck/Ties/dettie.rsi/storage.png
new file mode 100644 (file)
index 0000000..ea16fe1
Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Ties/dettie.rsi/storage.png differ
index 6c5b83440634b01969fa298353dcc9584456173d..6ec7f60813d4a4c104fd954ef2c9d8b85bcb7544 100644 (file)
@@ -1,30 +1,33 @@
 {
-  "version": 1,
-  "license": "CC-BY-SA-3.0",
-  "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da, edited by Flareguy for Space Station 14 | In hand sprites sprited by PuroSlavKing (Github) for Space Station 14",
-  "size": {
-    "x": 32,
-    "y": 32
-  },
-  "states": [
-    {
-      "name": "equipped-NECK",
-      "directions": 4
+    "version": 1,
+    "license": "CC-BY-SA-3.0",
+    "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da, edited by Flareguy for Space Station 14 | In hand sprites sprited by PuroSlavKing (Github) for Space Station 14. Storage by TiniestShark (Github)",
+    "size": {
+        "x": 32,
+        "y": 32
     },
-    {
-      "name": "equipped-NECK-hamster",
-      "directions": 4
-    },
-    {
-      "name": "icon"
-    },
-    {
-      "name": "inhand-left",
-      "directions": 4
-    },
-    {
-      "name": "inhand-right",
-      "directions": 4
-    }
-  ]
+    "states": [
+        {
+            "name": "equipped-NECK",
+            "directions": 4
+        },
+        {
+            "name": "equipped-NECK-hamster",
+            "directions": 4
+        },
+        {
+            "name": "icon"
+        },
+        {
+            "name": "storage"
+        },
+        {
+            "name": "inhand-left",
+            "directions": 4
+        },
+        {
+            "name": "inhand-right",
+            "directions": 4
+        }
+    ]
 }
diff --git a/Resources/Textures/Clothing/Neck/Ties/redtie.rsi/storage.png b/Resources/Textures/Clothing/Neck/Ties/redtie.rsi/storage.png
new file mode 100644 (file)
index 0000000..1528d42
Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Ties/redtie.rsi/storage.png differ
index 6c5b83440634b01969fa298353dcc9584456173d..6ec7f60813d4a4c104fd954ef2c9d8b85bcb7544 100644 (file)
@@ -1,30 +1,33 @@
 {
-  "version": 1,
-  "license": "CC-BY-SA-3.0",
-  "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da, edited by Flareguy for Space Station 14 | In hand sprites sprited by PuroSlavKing (Github) for Space Station 14",
-  "size": {
-    "x": 32,
-    "y": 32
-  },
-  "states": [
-    {
-      "name": "equipped-NECK",
-      "directions": 4
+    "version": 1,
+    "license": "CC-BY-SA-3.0",
+    "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da, edited by Flareguy for Space Station 14 | In hand sprites sprited by PuroSlavKing (Github) for Space Station 14. Storage by TiniestShark (Github)",
+    "size": {
+        "x": 32,
+        "y": 32
     },
-    {
-      "name": "equipped-NECK-hamster",
-      "directions": 4
-    },
-    {
-      "name": "icon"
-    },
-    {
-      "name": "inhand-left",
-      "directions": 4
-    },
-    {
-      "name": "inhand-right",
-      "directions": 4
-    }
-  ]
+    "states": [
+        {
+            "name": "equipped-NECK",
+            "directions": 4
+        },
+        {
+            "name": "equipped-NECK-hamster",
+            "directions": 4
+        },
+        {
+            "name": "icon"
+        },
+        {
+            "name": "storage"
+        },
+        {
+            "name": "inhand-left",
+            "directions": 4
+        },
+        {
+            "name": "inhand-right",
+            "directions": 4
+        }
+    ]
 }
diff --git a/Resources/Textures/Clothing/Neck/Ties/scitie.rsi/storage.png b/Resources/Textures/Clothing/Neck/Ties/scitie.rsi/storage.png
new file mode 100644 (file)
index 0000000..db6b29c
Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Ties/scitie.rsi/storage.png differ
index 3723b22992dd7c0d02538997c5efd162a11feb71..bdfdc0782911e86042e2ab1a2140400130722fe0 100644 (file)
@@ -1,22 +1,25 @@
 {
-  "version": 1,
-  "size": {
-    "x": 32,
-    "y": 32
-  },
-  "license": "CC-BY-SA-3.0",
-  "copyright": "Created by EmoGarbage",
-  "states": [
-    {
-      "name": "icon"
+    "version": 1,
+    "size": {
+        "x": 32,
+        "y": 32
     },
-    {
-      "name": "inhand-left",
-      "directions": 4
-    },
-    {
-      "name": "inhand-right",
-      "directions": 4
-    }
-  ]
+    "license": "CC-BY-SA-3.0",
+    "copyright": "Created by EmoGarbage, Storage by TiniestShark (Github)",
+    "states": [
+        {
+            "name": "icon"
+        },
+        {
+            "name": "storage"
+        },
+        {
+            "name": "inhand-left",
+            "directions": 4
+        },
+        {
+            "name": "inhand-right",
+            "directions": 4
+        }
+    ]
 }
diff --git a/Resources/Textures/Objects/Fun/Instruments/microphone.rsi/storage.png b/Resources/Textures/Objects/Fun/Instruments/microphone.rsi/storage.png
new file mode 100644 (file)
index 0000000..c7c972c
Binary files /dev/null and b/Resources/Textures/Objects/Fun/Instruments/microphone.rsi/storage.png differ
index 6fb3857023dcfca3e65c6c26fc51f34639783823..a654ea1c67253158568169fdb42d547f925b68a1 100644 (file)
@@ -1,7 +1,7 @@
 {
        "version": 1,
        "license": "CC-BY-SA-3.0",
-    "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/commit/740ff31a81313086cf16761f3677cf1e2ab46c93 and Taken from tgstation at https://github.com/tgstation/tgstation/blob/623290915c2292b56da11048deb62d758e1e3fb4/icons/obj/bloodpack.dmi, Blood pack redone by Ubaser. Taken from https://github.com/tgstation/tgstation/blob/a3568da5634e756d0849480104afda402c6f1c3c/icons/obj/medical/stack_medical.dmi. Tourniquet Sprite by PoorMansDreams, in-hand sprites of tourniquet, gauze, and bloodpack made by SeamLesss (github).",
+    "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/commit/740ff31a81313086cf16761f3677cf1e2ab46c93 and Taken from tgstation at https://github.com/tgstation/tgstation/blob/623290915c2292b56da11048deb62d758e1e3fb4/icons/obj/bloodpack.dmi, Blood pack redone by Ubaser. Taken from https://github.com/tgstation/tgstation/blob/a3568da5634e756d0849480104afda402c6f1c3c/icons/obj/medical/stack_medical.dmi. Tourniquet Sprite by PoorMansDreams, in-hand sprites of tourniquet, gauze, and bloodpack made by SeamLesss (github). Ointment Storage by TiniestShark (Github)",
        "size": {
                "x": 32,
                "y": 32
@@ -49,6 +49,9 @@
                {
                        "name": "ointment"
                },
+        {
+            "name": "ointment-storage"
+        },
                {
                        "name": "ointment-inhand-left",
                        "directions": 4
diff --git a/Resources/Textures/Objects/Specific/Medical/medical.rsi/ointment-storage.png b/Resources/Textures/Objects/Specific/Medical/medical.rsi/ointment-storage.png
new file mode 100644 (file)
index 0000000..d1073c8
Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/medical.rsi/ointment-storage.png differ
index 59aada80e00f68cfd3b9a6f936c6a2df97245e8e..8c67ffd7c9a413949023db0afb8e53679b08a903 100644 (file)
@@ -1,75 +1,78 @@
 {
-  "version": 1,
-  "license": "CC-BY-SA-3.0",
-  "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432",
-  "size": {
-    "x": 32,
-    "y": 32
-  },
-  "states": [
-    {
-      "name": "icon"
+    "version": 1,
+    "license": "CC-BY-SA-3.0",
+    "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432. Storage by TiniestShark (Github)",
+    "size": {
+        "x": 32,
+        "y": 32
     },
-    {
-      "name": "equipped-BELT",
-      "directions": 4
-    },
-    {
-      "name": "equipped-SUITSTORAGE-dog",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-kangaroo",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-puppy",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-fox",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-cat",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-sloth",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-possum",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-pig",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-hamster",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "inhand-left",
-      "directions": 4
-    },
-    {
-      "name": "inhand-right",
-      "directions": 4
-    },
-    {
-      "name": "equipped-SUITSTORAGE",
-      "directions": 4
-    }
-  ]
+    "states": [
+        {
+            "name": "icon"
+        },
+        {
+            "name": "storage"
+        },
+        {
+            "name": "equipped-BELT",
+            "directions": 4
+        },
+        {
+            "name": "equipped-SUITSTORAGE-dog",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-kangaroo",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-puppy",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-fox",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-cat",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-sloth",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-possum",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-pig",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-hamster",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "inhand-left",
+            "directions": 4
+        },
+        {
+            "name": "inhand-right",
+            "directions": 4
+        },
+        {
+            "name": "equipped-SUITSTORAGE",
+            "directions": 4
+        }
+    ]
 }
diff --git a/Resources/Textures/Objects/Tanks/emergency.rsi/storage.png b/Resources/Textures/Objects/Tanks/emergency.rsi/storage.png
new file mode 100644 (file)
index 0000000..e4537ae
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency.rsi/storage.png differ
index 21d23712e98cfe4c6a068111ab2df5f29a885938..760edc5a6702d1d1c5a703ff648c71af79d23322 100644 (file)
@@ -1,75 +1,78 @@
 {
-  "version": 1,
-  "license": "CC-BY-SA-3.0",
-  "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/ff8df99906ab1909674680b9973bd3c909080360",
-  "size": {
-    "x": 32,
-    "y": 32
-  },
-  "states": [
-    {
-      "name": "icon"
+    "version": 1,
+    "license": "CC-BY-SA-3.0",
+    "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/ff8df99906ab1909674680b9973bd3c909080360. Storage by TiniestShark (Github)",
+    "size": {
+        "x": 32,
+        "y": 32
     },
-       {
-      "name": "equipped-BELT",
-      "directions": 4
-    },
-    {
-      "name": "equipped-SUITSTORAGE-dog",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-puppy",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-fox",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-cat",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-sloth",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-hamster",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-kangaroo",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-possum",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-pig",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "inhand-left",
-      "directions": 4
-    },
-    {
-      "name": "inhand-right",
-      "directions": 4
-    },
-    {
-      "name": "equipped-SUITSTORAGE",
-      "directions": 4
-    }
-  ]
+    "states": [
+        {
+            "name": "icon"
+        },
+        {
+            "name": "storage"
+        },
+        {
+            "name": "equipped-BELT",
+            "directions": 4
+        },
+        {
+            "name": "equipped-SUITSTORAGE-dog",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-puppy",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-fox",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-cat",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-sloth",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-hamster",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-kangaroo",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-possum",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-pig",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "inhand-left",
+            "directions": 4
+        },
+        {
+            "name": "inhand-right",
+            "directions": 4
+        },
+        {
+            "name": "equipped-SUITSTORAGE",
+            "directions": 4
+        }
+    ]
 }
diff --git a/Resources/Textures/Objects/Tanks/emergency_clown.rsi/storage.png b/Resources/Textures/Objects/Tanks/emergency_clown.rsi/storage.png
new file mode 100644 (file)
index 0000000..9aa8823
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_clown.rsi/storage.png differ
index fe19dcec1cf051f0791296c87e24059c9324d59e..f4db0728d24b38fa346e4295ab7d1af137550e2d 100644 (file)
@@ -1,75 +1,78 @@
 {
-  "version": 1,
-  "license": "CC-BY-SA-3.0",
-  "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432",
-  "size": {
-    "x": 32,
-    "y": 32
-  },
-  "states": [
-    {
-      "name": "icon"
+    "version": 1,
+    "license": "CC-BY-SA-3.0",
+    "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432. Storage by TiniestShark (Github)",
+    "size": {
+        "x": 32,
+        "y": 32
     },
-    {
-      "name": "equipped-BELT",
-      "directions": 4
-    },
-    {
-      "name": "equipped-SUITSTORAGE-dog",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-puppy",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-fox",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-cat",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-sloth",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-hamster",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-kangaroo",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-possum",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-pig",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "inhand-left",
-      "directions": 4
-    },
-    {
-      "name": "inhand-right",
-      "directions": 4
-    },
-    {
-      "name": "equipped-SUITSTORAGE",
-      "directions": 4
-    }
-  ]
+    "states": [
+        {
+            "name": "icon"
+        },
+        {
+            "name": "storage"
+        },
+        {
+            "name": "equipped-BELT",
+            "directions": 4
+        },
+        {
+            "name": "equipped-SUITSTORAGE-dog",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-puppy",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-fox",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-cat",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-sloth",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-hamster",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-kangaroo",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-possum",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-pig",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "inhand-left",
+            "directions": 4
+        },
+        {
+            "name": "inhand-right",
+            "directions": 4
+        },
+        {
+            "name": "equipped-SUITSTORAGE",
+            "directions": 4
+        }
+    ]
 }
diff --git a/Resources/Textures/Objects/Tanks/emergency_double.rsi/storage.png b/Resources/Textures/Objects/Tanks/emergency_double.rsi/storage.png
new file mode 100644 (file)
index 0000000..f12481d
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_double.rsi/storage.png differ
index 584a122e5bf1af93d5e12953689def6da183dccb..871f3235bee387c18c1b877fdcd03a8283b6e24f 100644 (file)
Binary files a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/icon.png and b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/icon.png differ
index 74fc108c09ce8e4f28555f225681624afea242e3..f8ac0731881ce122ff1a2320307b3912d6abfaa9 100644 (file)
@@ -1,75 +1,78 @@
 {
-  "version": 1,
-  "license": "CC-BY-SA-3.0",
-  "copyright": "Adapted by DangerRevolution from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432",
-  "size": {
-    "x": 32,
-    "y": 32
-  },
-  "states": [
-    {
-      "name": "icon"
+    "version": 1,
+    "license": "CC-BY-SA-3.0",
+    "copyright": "Adapted by DangerRevolution from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432. Storage and icon edits by TiniestShark (Github)",
+    "size": {
+        "x": 32,
+        "y": 32
     },
-    {
-      "name": "equipped-BELT",
-      "directions": 4
-    },
-    {
-      "name": "equipped-SUITSTORAGE-dog",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-puppy",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-fox",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-cat",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-sloth",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-hamster",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-kangaroo",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-possum",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-pig",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "inhand-left",
-      "directions": 4
-    },
-    {
-      "name": "inhand-right",
-      "directions": 4
-    },
-    {
-      "name": "equipped-SUITSTORAGE",
-      "directions": 4
-    }
-  ]
+    "states": [
+        {
+            "name": "icon"
+        },
+        {
+            "name": "storage"
+        },
+        {
+            "name": "equipped-BELT",
+            "directions": 4
+        },
+        {
+            "name": "equipped-SUITSTORAGE-dog",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-puppy",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-fox",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-cat",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-sloth",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-hamster",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-kangaroo",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-possum",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-pig",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "inhand-left",
+            "directions": 4
+        },
+        {
+            "name": "inhand-right",
+            "directions": 4
+        },
+        {
+            "name": "equipped-SUITSTORAGE",
+            "directions": 4
+        }
+    ]
 }
diff --git a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/storage.png b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/storage.png
new file mode 100644 (file)
index 0000000..9dab1a5
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/storage.png differ
index fe19dcec1cf051f0791296c87e24059c9324d59e..f4db0728d24b38fa346e4295ab7d1af137550e2d 100644 (file)
@@ -1,75 +1,78 @@
 {
-  "version": 1,
-  "license": "CC-BY-SA-3.0",
-  "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432",
-  "size": {
-    "x": 32,
-    "y": 32
-  },
-  "states": [
-    {
-      "name": "icon"
+    "version": 1,
+    "license": "CC-BY-SA-3.0",
+    "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432. Storage by TiniestShark (Github)",
+    "size": {
+        "x": 32,
+        "y": 32
     },
-    {
-      "name": "equipped-BELT",
-      "directions": 4
-    },
-    {
-      "name": "equipped-SUITSTORAGE-dog",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-puppy",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-fox",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-cat",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-sloth",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-hamster",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-kangaroo",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-possum",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-pig",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "inhand-left",
-      "directions": 4
-    },
-    {
-      "name": "inhand-right",
-      "directions": 4
-    },
-    {
-      "name": "equipped-SUITSTORAGE",
-      "directions": 4
-    }
-  ]
+    "states": [
+        {
+            "name": "icon"
+        },
+        {
+            "name": "storage"
+        },
+        {
+            "name": "equipped-BELT",
+            "directions": 4
+        },
+        {
+            "name": "equipped-SUITSTORAGE-dog",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-puppy",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-fox",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-cat",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-sloth",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-hamster",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-kangaroo",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-possum",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-pig",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "inhand-left",
+            "directions": 4
+        },
+        {
+            "name": "inhand-right",
+            "directions": 4
+        },
+        {
+            "name": "equipped-SUITSTORAGE",
+            "directions": 4
+        }
+    ]
 }
diff --git a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/storage.png b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/storage.png
new file mode 100644 (file)
index 0000000..20c5c42
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/storage.png differ
index 74fc108c09ce8e4f28555f225681624afea242e3..dff0f2dd0e1ed25bbe400c3aa7a740f2cdcdc815 100644 (file)
@@ -1,75 +1,78 @@
 {
-  "version": 1,
-  "license": "CC-BY-SA-3.0",
-  "copyright": "Adapted by DangerRevolution from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432",
-  "size": {
-    "x": 32,
-    "y": 32
-  },
-  "states": [
-    {
-      "name": "icon"
+    "version": 1,
+    "license": "CC-BY-SA-3.0",
+    "copyright": "Adapted by DangerRevolution from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432. Storage by TiniestShark (Github)",
+    "size": {
+        "x": 32,
+        "y": 32
     },
-    {
-      "name": "equipped-BELT",
-      "directions": 4
-    },
-    {
-      "name": "equipped-SUITSTORAGE-dog",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-puppy",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-fox",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-cat",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-sloth",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-hamster",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-kangaroo",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-possum",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-pig",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "inhand-left",
-      "directions": 4
-    },
-    {
-      "name": "inhand-right",
-      "directions": 4
-    },
-    {
-      "name": "equipped-SUITSTORAGE",
-      "directions": 4
-    }
-  ]
+    "states": [
+        {
+            "name": "icon"
+        },
+        {
+            "name": "storage"
+        },
+        {
+            "name": "equipped-BELT",
+            "directions": 4
+        },
+        {
+            "name": "equipped-SUITSTORAGE-dog",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-puppy",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-fox",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-cat",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-sloth",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-hamster",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-kangaroo",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-possum",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-pig",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "inhand-left",
+            "directions": 4
+        },
+        {
+            "name": "inhand-right",
+            "directions": 4
+        },
+        {
+            "name": "equipped-SUITSTORAGE",
+            "directions": 4
+        }
+    ]
 }
diff --git a/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/storage.png b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/storage.png
new file mode 100644 (file)
index 0000000..2f3e6a8
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/storage.png differ
index d71cdae541cbc9a437c8b32bfe70eb583aa12fc4..5990e60d2b4127e5852f0dc242374534e5d7c8b3 100644 (file)
@@ -1,75 +1,78 @@
 {
-  "version": 1,
-  "license": "CC-BY-SA-3.0",
-  "copyright": "Adapted by DangerRevolution from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432",
-  "size": {
-    "x": 32,
-    "y": 32
-  },
-  "states": [
-    {
-      "name": "icon"
+    "version": 1,
+    "license": "CC-BY-SA-3.0",
+    "copyright": "Adapted by DangerRevolution from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432. Storage by TiniestShark (Github)",
+    "size": {
+        "x": 32,
+        "y": 32
     },
-    {
-      "name": "equipped-BELT",
-      "directions": 4
-    },
-    {
-      "name": "equipped-SUITSTORAGE-dog",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-kangaroo",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-puppy",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-fox",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-cat",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-sloth",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-possum",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-pig",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-hamster",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "inhand-left",
-      "directions": 4
-    },
-    {
-      "name": "inhand-right",
-      "directions": 4
-    },
-    {
-      "name": "equipped-SUITSTORAGE",
-      "directions": 4
-    }
-  ]
+    "states": [
+        {
+            "name": "icon"
+        },
+        {
+            "name": "storage"
+        },
+        {
+            "name": "equipped-BELT",
+            "directions": 4
+        },
+        {
+            "name": "equipped-SUITSTORAGE-dog",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-kangaroo",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-puppy",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-fox",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-cat",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-sloth",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-possum",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-pig",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-hamster",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "inhand-left",
+            "directions": 4
+        },
+        {
+            "name": "inhand-right",
+            "directions": 4
+        },
+        {
+            "name": "equipped-SUITSTORAGE",
+            "directions": 4
+        }
+    ]
 }
diff --git a/Resources/Textures/Objects/Tanks/emergency_red.rsi/storage.png b/Resources/Textures/Objects/Tanks/emergency_red.rsi/storage.png
new file mode 100644 (file)
index 0000000..678857b
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_red.rsi/storage.png differ
index ab8bebedb66473deecf4ae8c20de54aeb8e32b0b..bda5ef75641b1cd3a4d154ac1a02f3f06080aadb 100644 (file)
Binary files a/Resources/Textures/Objects/Tanks/emergency_yellow.rsi/icon.png and b/Resources/Textures/Objects/Tanks/emergency_yellow.rsi/icon.png differ
index fe19dcec1cf051f0791296c87e24059c9324d59e..1cfa40a9f9ee025f7c6ff053e656976a85ab31eb 100644 (file)
@@ -1,75 +1,78 @@
 {
-  "version": 1,
-  "license": "CC-BY-SA-3.0",
-  "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432",
-  "size": {
-    "x": 32,
-    "y": 32
-  },
-  "states": [
-    {
-      "name": "icon"
+    "version": 1,
+    "license": "CC-BY-SA-3.0",
+    "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432. Storage and icon edits by TiniestShark (Github)",
+    "size": {
+        "x": 32,
+        "y": 32
     },
-    {
-      "name": "equipped-BELT",
-      "directions": 4
-    },
-    {
-      "name": "equipped-SUITSTORAGE-dog",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-puppy",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-fox",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-cat",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-sloth",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-hamster",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-kangaroo",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-possum",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "equipped-SUITSTORAGE-pig",
-      "directions": 4,
-      "delays": [[1],[1],[1],[1]]
-    },
-    {
-      "name": "inhand-left",
-      "directions": 4
-    },
-    {
-      "name": "inhand-right",
-      "directions": 4
-    },
-    {
-      "name": "equipped-SUITSTORAGE",
-      "directions": 4
-    }
-  ]
+    "states": [
+        {
+            "name": "icon"
+        },
+        {
+            "name": "storage"
+        },
+        {
+            "name": "equipped-BELT",
+            "directions": 4
+        },
+        {
+            "name": "equipped-SUITSTORAGE-dog",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-puppy",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-fox",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-cat",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-sloth",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-hamster",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-kangaroo",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-possum",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "equipped-SUITSTORAGE-pig",
+            "directions": 4,
+            "delays": [[1],[1],[1],[1]]
+        },
+        {
+            "name": "inhand-left",
+            "directions": 4
+        },
+        {
+            "name": "inhand-right",
+            "directions": 4
+        },
+        {
+            "name": "equipped-SUITSTORAGE",
+            "directions": 4
+        }
+    ]
 }
diff --git a/Resources/Textures/Objects/Tanks/emergency_yellow.rsi/storage.png b/Resources/Textures/Objects/Tanks/emergency_yellow.rsi/storage.png
new file mode 100644 (file)
index 0000000..68db7d9
Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_yellow.rsi/storage.png differ
index 2bd70432d02b6b91d70cd79687f54f9284fc3a64..28694a1555b287f9c3e7090eaa06c643569d2df0 100644 (file)
@@ -1,22 +1,22 @@
 {
-  "version": 1,
-  "license": "CC-BY-SA-3.0",
-  "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/3160508c1a9f367be0ab054cceaf2e36c0b66250",
-  "size": {
-    "x": 32,
-    "y": 32
-  },
-  "states": [
-    {
-      "name": "inhand-left",
-      "directions": 4
+    "version": 1,
+    "license": "CC-BY-SA-3.0",
+    "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/3160508c1a9f367be0ab054cceaf2e36c0b66250",
+    "size": {
+        "x": 32,
+        "y": 32
     },
-    {
-      "name": "inhand-right",
-      "directions": 4
-    },
-    {
-      "name": "icon"
-    }
-  ]
+    "states": [
+        {
+            "name": "inhand-left",
+            "directions": 4
+        },
+        {
+            "name": "inhand-right",
+            "directions": 4
+        },
+        {
+            "name": "icon"
+        }
+    ]
 }
index ab98f8e78ade6a5ee5db34430668418e67f3f24e..959ccb745c4f594b52de2d80a2f342ba2a3c4d9c 100644 (file)
@@ -1,22 +1,25 @@
 {
-  "version": 1,
-  "license": "CC-BY-SA-3.0",
-  "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24",
-  "size": {
-    "x": 32,
-    "y": 32
-  },
-  "states": [
-    {
-      "name": "inhand-left",
-      "directions": 4
+    "version": 1,
+    "license": "CC-BY-SA-3.0",
+    "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24, storage by TiniestShark (Github)",
+    "size": {
+        "x": 32,
+        "y": 32
     },
-    {
-      "name": "inhand-right",
-      "directions": 4
-    },
-    {
-      "name": "icon"
-    }
-  ]
+    "states": [
+        {
+            "name": "icon"
+        },
+        {
+            "name": "storage"
+        },
+        {
+            "name": "inhand-left",
+            "directions": 4
+        },
+        {
+            "name": "inhand-right",
+            "directions": 4
+        }
+    ]
 }
diff --git a/Resources/Textures/Objects/Tools/Hydroponics/hatchet.rsi/storage.png b/Resources/Textures/Objects/Tools/Hydroponics/hatchet.rsi/storage.png
new file mode 100644 (file)
index 0000000..9641178
Binary files /dev/null and b/Resources/Textures/Objects/Tools/Hydroponics/hatchet.rsi/storage.png differ
index 2bd70432d02b6b91d70cd79687f54f9284fc3a64..147b05d2eaba3f45202b73ed5862a9ae17017398 100644 (file)
@@ -1,22 +1,25 @@
 {
-  "version": 1,
-  "license": "CC-BY-SA-3.0",
-  "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/3160508c1a9f367be0ab054cceaf2e36c0b66250",
-  "size": {
-    "x": 32,
-    "y": 32
-  },
-  "states": [
-    {
-      "name": "inhand-left",
-      "directions": 4
+    "version": 1,
+    "license": "CC-BY-SA-3.0",
+    "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/3160508c1a9f367be0ab054cceaf2e36c0b66250, storage by TiniestShark (Github)",
+    "size": {
+        "x": 32,
+        "y": 32
     },
-    {
-      "name": "inhand-right",
-      "directions": 4
-    },
-    {
-      "name": "icon"
-    }
-  ]
+    "states": [
+        {
+            "name": "icon"
+        },
+        {
+            "name": "storage"
+        },
+        {
+            "name": "inhand-left",
+            "directions": 4
+        },
+        {
+            "name": "inhand-right",
+            "directions": 4
+        }
+    ]
 }
diff --git a/Resources/Textures/Objects/Tools/Hydroponics/hoe.rsi/storage.png b/Resources/Textures/Objects/Tools/Hydroponics/hoe.rsi/storage.png
new file mode 100644 (file)
index 0000000..741cac1
Binary files /dev/null and b/Resources/Textures/Objects/Tools/Hydroponics/hoe.rsi/storage.png differ
index c82626cfbfc92095416f60fd81ea5c0a747eb2c8..1d0ef055673a3955e8c50ec065bab79b46a9ad43 100644 (file)
@@ -1,26 +1,26 @@
 {
-  "version": 1,
-  "license": "CC-BY-SA-3.0",
-  "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/3160508c1a9f367be0ab054cceaf2e36c0b66250",
-  "size": {
-    "x": 32,
-    "y": 32
-  },
-  "states": [
-    {
-      "name": "icon"
+    "version": 1,
+    "license": "CC-BY-SA-3.0",
+    "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/3160508c1a9f367be0ab054cceaf2e36c0b66250",
+    "size": {
+        "x": 32,
+        "y": 32
     },
-    {
-      "name": "inhand-left",
-      "directions": 4
-    },
-    {
-      "name": "inhand-right",
-      "directions": 4
-    },
-    {
-      "name": "equipped-BACKPACK",
-      "directions": 4
-    }
-  ]
+    "states": [
+        {
+            "name": "icon"
+        },
+        {
+            "name": "inhand-left",
+            "directions": 4
+        },
+        {
+            "name": "inhand-right",
+            "directions": 4
+        },
+        {
+            "name": "equipped-BACKPACK",
+            "directions": 4
+        }
+    ]
 }
index aa99fa574a843e1e1ebcc45fffd6a6b73dcf77e1..f167da2bac38b4e8a2f6cd5ea89c53974546b12d 100644 (file)
@@ -1,26 +1,29 @@
 {
-  "version": 1,
-  "license": "CC-BY-SA-3.0",
-  "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/3160508c1a9f367be0ab054cceaf2e36c0b66250",
-  "size": {
-    "x": 32,
-    "y": 32
-  },
-  "states": [
-    {
-      "name": "inhand-left",
-      "directions": 4
+    "version": 1,
+    "license": "CC-BY-SA-3.0",
+    "copyright": "Taken from Aurorastation at commit https://github.com/Aurorastation/Aurora.3/commit/3160508c1a9f367be0ab054cceaf2e36c0b66250, storage by TiniestShark (Github)",
+    "size": {
+        "x": 32,
+        "y": 32
     },
-    {
-      "name": "inhand-right",
-      "directions": 4
-    },
-    {
-      "name": "icon"
-    },
-    {
-      "name": "equipped-BELT",
-      "directions": 4
-    }
-  ]
+    "states": [
+        {
+            "name": "icon"
+        },
+        {
+            "name": "storage"
+        },
+        {
+            "name": "inhand-left",
+            "directions": 4
+        },
+        {
+            "name": "inhand-right",
+            "directions": 4
+        },
+        {
+            "name": "equipped-BELT",
+            "directions": 4
+        }
+    ]
 }
diff --git a/Resources/Textures/Objects/Tools/Hydroponics/spade.rsi/storage.png b/Resources/Textures/Objects/Tools/Hydroponics/spade.rsi/storage.png
new file mode 100644 (file)
index 0000000..53ede50
Binary files /dev/null and b/Resources/Textures/Objects/Tools/Hydroponics/spade.rsi/storage.png differ
index c431ad7f01d27ca09da94e116c7518c7f9ed8a88..061ea1d08d96caa89853bb46173222f4372efdec 100644 (file)
@@ -1,22 +1,25 @@
 {
-  "version": 1,
-  "license": "CC0-1.0",
-  "copyright": "Created by TheShuEd(github) for Space Station 14, Inhand sprites by onesch",
-  "size": {
-    "x": 32,
-    "y": 32
-  },
-  "states": [
-    {
-      "name": "icon"
+    "version": 1,
+    "license": "CC0-1.0",
+    "copyright": "Created by TheShuEd(github) for Space Station 14, Inhand sprites by onesch. Storage by TiniestShark (Github)",
+    "size": {
+        "x": 32,
+        "y": 32
     },
-    {
-      "name": "inhand-left",
-      "directions": 4
-    },
-    {
-      "name": "inhand-right",
-      "directions": 4
-    }
-  ]
+    "states": [
+        {
+            "name": "icon"
+        },
+        {
+            "name": "storage"
+        },
+        {
+            "name": "inhand-left",
+            "directions": 4
+        },
+        {
+            "name": "inhand-right",
+            "directions": 4
+        }
+    ]
 }
diff --git a/Resources/Textures/Objects/Tools/scissors.rsi/storage.png b/Resources/Textures/Objects/Tools/scissors.rsi/storage.png
new file mode 100644 (file)
index 0000000..3f35b00
Binary files /dev/null and b/Resources/Textures/Objects/Tools/scissors.rsi/storage.png differ