Add fork & spoon to dinnerware (#19784)
* some utensils clean * add utensils to dinnerware
This commit is contained in:
@@ -3,6 +3,8 @@
|
|||||||
startingInventory:
|
startingInventory:
|
||||||
ButchCleaver: 1
|
ButchCleaver: 1
|
||||||
KitchenKnife: 5
|
KitchenKnife: 5
|
||||||
|
Spoon: 4
|
||||||
|
Fork: 4
|
||||||
FoodBowlBig: 10
|
FoodBowlBig: 10
|
||||||
FoodPlate: 10
|
FoodPlate: 10
|
||||||
FoodPlateSmall: 10
|
FoodPlateSmall: 10
|
||||||
|
|||||||
@@ -1,16 +1,30 @@
|
|||||||
- type: entity
|
- type: entity
|
||||||
parent: BaseItem
|
parent: BaseItem
|
||||||
id: UtensilBase
|
id: UtensilBase
|
||||||
abstract: true
|
abstract: true
|
||||||
components:
|
components:
|
||||||
- type: Sprite
|
- type: Sprite
|
||||||
sprite: Objects/Misc/utensils.rsi
|
sprite: Objects/Misc/utensils.rsi
|
||||||
- type: Item
|
- type: Item # TODO add inhand sprites for all utensils
|
||||||
sprite: Objects/Misc/utensils.rsi
|
sprite: Objects/Misc/utensils.rsi
|
||||||
- type: Tag
|
- type: Tag
|
||||||
tags:
|
tags:
|
||||||
- Trash
|
- Metal
|
||||||
- type: SpaceGarbage
|
- type: SpaceGarbage
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
parent: UtensilBase
|
||||||
|
id: UtensilBasePlastic
|
||||||
|
abstract: true
|
||||||
|
components:
|
||||||
|
- type: Utensil
|
||||||
|
breakChance: 0.20
|
||||||
|
- type: StaticPrice
|
||||||
|
price: 0
|
||||||
|
- type: Tag
|
||||||
|
tags:
|
||||||
|
- Plastic
|
||||||
|
- Trash
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: UtensilBase
|
parent: UtensilBase
|
||||||
@@ -34,24 +48,16 @@
|
|||||||
Piercing: 5
|
Piercing: 5
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: UtensilBase
|
parent: UtensilBasePlastic
|
||||||
id: ForkPlastic
|
id: ForkPlastic
|
||||||
name: plastic fork
|
name: plastic fork
|
||||||
description: An eating utensil, perfect for stabbing.
|
description: An eating utensil, perfect for stabbing.
|
||||||
components:
|
components:
|
||||||
- type: Sprite
|
- type: Sprite
|
||||||
state: plastic_fork
|
state: plastic_fork
|
||||||
- type: Item
|
|
||||||
- type: Utensil
|
- type: Utensil
|
||||||
types:
|
types:
|
||||||
- Fork
|
- Fork
|
||||||
breakChance: 0.20
|
|
||||||
- type: Tag
|
|
||||||
tags:
|
|
||||||
- Plastic
|
|
||||||
- Trash
|
|
||||||
- type: StaticPrice
|
|
||||||
price: 0
|
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: UtensilBase
|
parent: UtensilBase
|
||||||
@@ -59,9 +65,6 @@
|
|||||||
name: spoon
|
name: spoon
|
||||||
description: There is no spoon.
|
description: There is no spoon.
|
||||||
components:
|
components:
|
||||||
- type: Tag
|
|
||||||
tags:
|
|
||||||
- Metal
|
|
||||||
- type: Sprite
|
- type: Sprite
|
||||||
state: spoon
|
state: spoon
|
||||||
- type: Item
|
- type: Item
|
||||||
@@ -76,15 +79,11 @@
|
|||||||
Blunt: 1
|
Blunt: 1
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: UtensilBase
|
parent: UtensilBasePlastic
|
||||||
id: SpoonPlastic
|
id: SpoonPlastic
|
||||||
name: plastic spoon
|
name: plastic spoon
|
||||||
description: There is no spoon.
|
description: There is no spoon.
|
||||||
components:
|
components:
|
||||||
- type: Tag
|
|
||||||
tags:
|
|
||||||
- Plastic
|
|
||||||
- Trash
|
|
||||||
- type: Sprite
|
- type: Sprite
|
||||||
state: plastic_spoon
|
state: plastic_spoon
|
||||||
- type: Item
|
- type: Item
|
||||||
@@ -92,7 +91,6 @@
|
|||||||
- type: Utensil
|
- type: Utensil
|
||||||
types:
|
types:
|
||||||
- Spoon
|
- Spoon
|
||||||
breakChance: 0.20
|
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: UtensilBase
|
parent: UtensilBase
|
||||||
@@ -100,16 +98,8 @@
|
|||||||
name: plastic knife
|
name: plastic knife
|
||||||
description: That's not a knife. This is a knife.
|
description: That's not a knife. This is a knife.
|
||||||
components:
|
components:
|
||||||
- type: Tag
|
|
||||||
tags:
|
|
||||||
- Plastic
|
|
||||||
- Trash
|
|
||||||
- type: Sprite
|
- type: Sprite
|
||||||
state: plastic_knife
|
state: plastic_knife
|
||||||
- type: Item
|
|
||||||
- type: Utensil
|
- type: Utensil
|
||||||
types:
|
types:
|
||||||
- Knife
|
- Knife
|
||||||
breakChance: 0.20
|
|
||||||
- type: StaticPrice
|
|
||||||
price: 0
|
|
||||||
|
|||||||
Reference in New Issue
Block a user