Adds inhands for crayons and the crayon box (#4481)

This commit is contained in:
Swept
2021-08-17 15:28:58 -07:00
committed by GitHub
parent 08ee779cf3
commit 6abe0de900
24 changed files with 127 additions and 3 deletions

View File

@@ -9,8 +9,6 @@
tags:
- Write
- Crayon
- type: Item
size: 1
- type: UserInterface
interfaces:
- key: enum.CrayonUiKey.Key
@@ -26,6 +24,10 @@
- type: Sprite
sprite: Objects/Fun/crayons.rsi
state: white
- type: Item
sprite: Objects/Fun/crayons.rsi
size: 1
HeldPrefix: white
- type: Crayon
color: white
capacity: 5
@@ -41,6 +43,10 @@
- type: Sprite
sprite: Objects/Fun/crayons.rsi
state: mime
- type: Item
sprite: Objects/Fun/crayons.rsi
size: 1
HeldPrefix: mime
- type: Crayon
color: white
capacity: 5
@@ -56,6 +62,10 @@
- type: Sprite
sprite: Objects/Fun/crayons.rsi
state: black
- type: Item
sprite: Objects/Fun/crayons.rsi
size: 1
HeldPrefix: black
- type: Crayon
color: black
capacity: 5
@@ -71,6 +81,10 @@
- type: Sprite
sprite: Objects/Fun/crayons.rsi
state: red
- type: Item
sprite: Objects/Fun/crayons.rsi
size: 1
HeldPrefix: red
- type: Crayon
color: red
capacity: 5
@@ -86,6 +100,10 @@
- type: Sprite
sprite: Objects/Fun/crayons.rsi
state: orange
- type: Item
sprite: Objects/Fun/crayons.rsi
size: 1
HeldPrefix: orange
- type: Crayon
color: orange
capacity: 5
@@ -101,6 +119,10 @@
- type: Sprite
sprite: Objects/Fun/crayons.rsi
state: yellow
- type: Item
sprite: Objects/Fun/crayons.rsi
size: 1
HeldPrefix: yellow
- type: Crayon
color: yellow
capacity: 5
@@ -116,6 +138,10 @@
- type: Sprite
sprite: Objects/Fun/crayons.rsi
state: green
- type: Item
sprite: Objects/Fun/crayons.rsi
size: 1
HeldPrefix: green
- type: Crayon
color: green
capacity: 5
@@ -131,6 +157,10 @@
- type: Sprite
sprite: Objects/Fun/crayons.rsi
state: blue
- type: Item
sprite: Objects/Fun/crayons.rsi
size: 1
HeldPrefix: blue
- type: Crayon
color: lightblue
capacity: 5
@@ -146,6 +176,10 @@
- type: Sprite
sprite: Objects/Fun/crayons.rsi
state: purple
- type: Item
sprite: Objects/Fun/crayons.rsi
size: 1
HeldPrefix: purple
- type: Crayon
color: purple
capacity: 5
@@ -166,7 +200,9 @@
- type: Storage
capacity: 7
- type: Item
sprite: Objects/Fun/crayons.rsi
size: 9999
HeldPrefix: box
- type: StorageCounter
countTag: Crayon
- type: StorageFill

Binary file not shown.

After

Width:  |  Height:  |  Size: 175 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 187 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 311 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 316 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 387 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 396 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 316 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 320 B

View File

@@ -1,7 +1,7 @@
{
"version": 1,
"license": "CC-BY-SA-3.0",
"copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24",
"copyright": "Taken from tgstation and modified by Swept at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24",
"size": {
"x": 32,
"y": 32
@@ -10,36 +10,124 @@
{
"name": "black"
},
{
"name": "black-inhand-left",
"directions": 4
},
{
"name": "black-inhand-right",
"directions": 4
},
{
"name": "blue"
},
{
"name": "blue-inhand-left",
"directions": 4
},
{
"name": "blue-inhand-right",
"directions": 4
},
{
"name": "box"
},
{
"name": "box-inhand-left",
"directions": 4
},
{
"name": "box-inhand-right",
"directions": 4
},
{
"name": "green"
},
{
"name": "green-inhand-left",
"directions": 4
},
{
"name": "green-inhand-right",
"directions": 4
},
{
"name": "mime"
},
{
"name": "mime-inhand-left",
"directions": 4
},
{
"name": "mime-inhand-right",
"directions": 4
},
{
"name": "orange"
},
{
"name": "orange-inhand-left",
"directions": 4
},
{
"name": "orange-inhand-right",
"directions": 4
},
{
"name": "purple"
},
{
"name": "purple-inhand-left",
"directions": 4
},
{
"name": "purple-inhand-right",
"directions": 4
},
{
"name": "rainbow"
},
{
"name": "rainbow-inhand-left",
"directions": 4
},
{
"name": "rainbow-inhand-right",
"directions": 4
},
{
"name": "red"
},
{
"name": "red-inhand-left",
"directions": 4
},
{
"name": "red-inhand-right",
"directions": 4
},
{
"name": "white"
},
{
"name": "white-inhand-left",
"directions": 4
},
{
"name": "white-inhand-right",
"directions": 4
},
{
"name": "yellow"
},
{
"name": "yellow-inhand-left",
"directions": 4
},
{
"name": "yellow-inhand-right",
"directions": 4
},
{
"name": "green_box"
},

Binary file not shown.

After

Width:  |  Height:  |  Size: 296 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 301 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 317 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 321 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 313 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 317 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 342 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 342 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 302 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 306 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 149 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 150 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 317 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 321 B