]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Autism pins! (#25597)
authorTerraspark4941 <terraspark4941@gmail.com>
Sun, 14 Apr 2024 05:35:35 +0000 (10:35 +0500)
committerGitHub <noreply@github.com>
Sun, 14 Apr 2024 05:35:35 +0000 (15:35 +1000)
* hee hee he ha ha

* added gold varients, forgive me for my spritework

* maints loot, copying from past PRs

* Trying to fix RSI

* speedran these sprites in break time, pictures will be later

* Fixed/Tweaked glows

* consensus

* gregregation

* dam copiryte

* oops i forgot to delete 2 fields hope this works

Resources/Prototypes/Entities/Clothing/Neck/pins.yml
Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml
Resources/Textures/Clothing/Neck/Misc/autismpin.rsi/autism-equipped.png [new file with mode: 0644]
Resources/Textures/Clothing/Neck/Misc/autismpin.rsi/autism.png [new file with mode: 0644]
Resources/Textures/Clothing/Neck/Misc/autismpin.rsi/meta.json [new file with mode: 0644]
Resources/Textures/Clothing/Neck/Misc/goldautismpin.rsi/goldautism-equipped.png [new file with mode: 0644]
Resources/Textures/Clothing/Neck/Misc/goldautismpin.rsi/goldautism.png [new file with mode: 0644]
Resources/Textures/Clothing/Neck/Misc/goldautismpin.rsi/meta.json [new file with mode: 0644]
Resources/Textures/Clothing/Neck/Misc/pins.rsi/meta.json

index 0d22a653dbf5660ad229a07335b5b3787b831ea1..0054a3645c754625c6be744aab1f983f6ffcc7cc 100644 (file)
     clothingVisuals:
       neck:
       - state: trans-equipped
+- type: entity
+  parent: ClothingNeckPinBase
+  id: ClothingNeckAutismPin
+  name: autism pin
+  description: be autism do crime
+  components:
+  - type: Sprite
+    sprite: Clothing/Neck/Misc/autismpin.rsi
+    layers:
+    - state: autism
+  - type: Clothing
+    sprite: Clothing/Neck/Misc/autismpin.rsi
+    clothingVisuals:
+      neck:
+      - state: autism-equipped
+
+- type: entity
+  parent: ClothingNeckPinBase
+  id: ClothingNeckGoldAutismPin
+  name: golden autism pin
+  description: be autism do warcrime
+  components:
+  - type: Sprite
+    sprite: Clothing/Neck/Misc/goldautismpin.rsi
+    layers:
+    - state: goldautism
+  - type: Clothing
+    sprite: Clothing/Neck/Misc/goldautismpin.rsi
+    clothingVisuals:
+      neck:
+      - state: goldautism-equipped
index 6419c1aaa10551b58f5bf6869bd27b123449d0e4..7d7d9697d2c4fb45767200cba277d657d5bc12f5 100644 (file)
@@ -65,6 +65,8 @@
         - ClothingUniformJumpsuitPirate
         - ClothingShoesBootsCowboyFancy
         - ClothingHeadHatCowboyBountyHunter
+        - ClothingNeckAutismPin
+        - ClothingNeckGoldAutismPin
       rareChance: 0.01
       prototypes:
         - Lighter
diff --git a/Resources/Textures/Clothing/Neck/Misc/autismpin.rsi/autism-equipped.png b/Resources/Textures/Clothing/Neck/Misc/autismpin.rsi/autism-equipped.png
new file mode 100644 (file)
index 0000000..49e264e
Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Misc/autismpin.rsi/autism-equipped.png differ
diff --git a/Resources/Textures/Clothing/Neck/Misc/autismpin.rsi/autism.png b/Resources/Textures/Clothing/Neck/Misc/autismpin.rsi/autism.png
new file mode 100644 (file)
index 0000000..16a2ce0
Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Misc/autismpin.rsi/autism.png differ
diff --git a/Resources/Textures/Clothing/Neck/Misc/autismpin.rsi/meta.json b/Resources/Textures/Clothing/Neck/Misc/autismpin.rsi/meta.json
new file mode 100644 (file)
index 0000000..e82672f
--- /dev/null
@@ -0,0 +1,18 @@
+{
+  "version": 1,
+  "license": "CC-BY-NC-4.0",
+  "copyright": "Terraspark's work",
+  "size": {
+    "x": 32,
+    "y": 32
+  },
+    "states": [
+        {
+            "name": "autism"
+        },
+        {
+            "name": "autism-equipped",
+            "directions": 4
+        }
+    ]
+}
diff --git a/Resources/Textures/Clothing/Neck/Misc/goldautismpin.rsi/goldautism-equipped.png b/Resources/Textures/Clothing/Neck/Misc/goldautismpin.rsi/goldautism-equipped.png
new file mode 100644 (file)
index 0000000..39560ca
Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Misc/goldautismpin.rsi/goldautism-equipped.png differ
diff --git a/Resources/Textures/Clothing/Neck/Misc/goldautismpin.rsi/goldautism.png b/Resources/Textures/Clothing/Neck/Misc/goldautismpin.rsi/goldautism.png
new file mode 100644 (file)
index 0000000..22e9102
Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Misc/goldautismpin.rsi/goldautism.png differ
diff --git a/Resources/Textures/Clothing/Neck/Misc/goldautismpin.rsi/meta.json b/Resources/Textures/Clothing/Neck/Misc/goldautismpin.rsi/meta.json
new file mode 100644 (file)
index 0000000..6848744
--- /dev/null
@@ -0,0 +1,18 @@
+{
+  "version": 1,
+  "license": "CC-BY-NC-4.0",
+  "copyright": "Terraspark's work",
+  "size": {
+    "x": 32,
+    "y": 32
+  },
+    "states": [
+        {
+            "name": "goldautism"
+        },
+        {
+            "name": "goldautism-equipped",
+            "directions": 4
+        }
+    ]
+}
index 57fab6a8ba5267ab041a5b51243dd4e97fedf87c..46b04963997008ee6e982f832da14afae0ed4cb0 100644 (file)
@@ -6,69 +6,70 @@
     "x": 32,
     "y": 32
   },
-  "states": [
-    {
-      "name": "aro"
-    },
-    {
-      "name": "aro-equipped",
-      "directions": 4
-    },
-       {
-      "name": "asex"
-    },
-    {
-      "name": "asex-equipped",
-      "directions": 4
-    },
-       {
-      "name": "bi"
-    },
-    {
-      "name": "bi-equipped",
-      "directions": 4
-    },
-       {
-      "name": "inter"
-    },
-    {
-      "name": "inter-equipped",
-      "directions": 4
-    },
-       {
-      "name": "les"
-    },
-    {
-      "name": "les-equipped",
-      "directions": 4
-    },
-       {
-      "name": "lgbt"
-    },
-    {
-      "name": "lgbt-equipped",
-      "directions": 4
-    },
-       {
-      "name": "non"
-    },
-    {
-      "name": "non-equipped",
-      "directions": 4
-    },
-       {
-      "name": "pan"
-    },
-    {
-      "name": "pan-equipped",
-      "directions": 4
-    },
-       {
-      "name": "trans"
-    },
-    {
-      "name": "trans-equipped",
-      "directions": 4
-    }
-  ]
+    "states": [
+        {
+            "name": "aro"
+        },
+        {
+            "name": "aro-equipped",
+            "directions": 4
+        },
+        {
+            "name": "asex"
+        },
+        {
+            "name": "asex-equipped",
+            "directions": 4
+        },
+        {
+            "name": "bi"
+        },
+        {
+            "name": "bi-equipped",
+            "directions": 4
+        },
+        {
+            "name": "inter"
+        },
+        {
+            "name": "inter-equipped",
+            "directions": 4
+        },
+        {
+            "name": "les"
+        },
+        {
+            "name": "les-equipped",
+            "directions": 4
+        },
+        {
+            "name": "lgbt"
+        },
+        {
+            "name": "lgbt-equipped",
+            "directions": 4
+        },
+        {
+            "name": "non"
+        },
+        {
+            "name": "non-equipped",
+            "directions": 4
+        },
+        {
+            "name": "pan"
+        },
+        {
+            "name": "pan-equipped",
+            "directions": 4
+        },
+        {
+            "name": "trans"
+        },
+        {
+            "name": "trans-equipped",
+            "directions": 4
+        }
+    ]
 }
+