* added chopstick sprites
* Create chopsticks.yml
* added chopstick yml
* hopfully it acts like a forke
* added chopsticks to dinnerware vendor
* uncapitalized the name
* Update Resources/Prototypes/Entities/Objects/Misc/chopsticks.yml
Co-authored-by: lzk <124214523+lzk228@users.noreply.github.com>
* made the chopsticks icon a reasonable size
* added chopsticks to chang vendor
* made paired chopsticks you can break apart
* added them to vendors
---------
Co-authored-by: redfire1331 <Redfire1331@users.noreply.github.com>
Co-authored-by: lzk <124214523+lzk228@users.noreply.github.com>
DrinkHellRamen: 3
FoodSnackChowMein: 3
FoodSnackDanDanNoodles: 3
+ PairedChopsticks: 3
# rice?
RollingPin: 4
Spoon: 4
Fork: 4
+ PairedChopsticks: 4
FoodBowlBig: 10
FoodPlate: 10
FoodPlateSmall: 10
--- /dev/null
+- type: entity
+ parent: BaseItem
+ id: ChopSticks
+ name: chopsticks
+ description: A very traditional utensil.
+ components:
+ - type: Sprite
+ sprite: Objects/Misc/chopstick.rsi
+ state: icon
+ - type: Item
+ sprite: Objects/Misc/chopstick.rsi
+ size: Small
+ - type: Utensil
+ types:
+ - Fork
+
+- type: entity
+ parent: BaseItem
+ name: paired chopsticks
+ id: PairedChopsticks
+ description: You should probably seperate them.
+ components:
+ - type: SpawnItemsOnUse
+ items:
+ - id: ChopSticks
+ - type: Sprite
+ sprite: Objects/Misc/chopstick.rsi
+ state: paired
+ - type: EmitSoundOnUse
+ sound:
+ path: /Audio/Effects/chopstickbreak.ogg
--- /dev/null
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Taken from goonstation at https://github.com/goonstation/goonstation/pull/1179",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "icon"
+ },
+ {
+ "name": "inhand-left",
+ "directions": 4
+ },
+ {
+ "name": "inhand-right",
+ "directions": 4
+ },
+ {
+ "name": "paired"
+ }
+ ]
+ }
\ No newline at end of file