Adds Ducks (#5997)

* Add Ducks

* Update cargo_livestock.yml
This commit is contained in:
ZeroDayDaemon
2022-01-03 02:47:35 -05:00
committed by GitHub
parent 947d0b5883
commit b45bd3b396
17 changed files with 268 additions and 7 deletions

View File

@@ -107,6 +107,72 @@
meat: FoodMeatChicken
pieces: 1
- type: entity
name: mallard duck #Quack
parent: SimpleMobBase
id: MobDuckMallard
description: An adorable mallard duck, it's fluffy and soft!
components:
- type: Sprite
drawdepth: Mobs
layers:
- map: ["enum.DamageStateVisualLayers.Base"]
state: duck-0
sprite: Mobs/Animals/duck.rsi
- type: Appearance
visuals:
- type: DamageStateVisualizer
normal: duck-0
crit: dead-0
dead: dead-0
- type: Butcherable
meat: FoodMeatDuck
pieces: 1
- type: entity
name: white duck #Quack
parent: SimpleMobBase
id: MobDuckWhite
description: An adorable white duck, it's fluffy and soft!
components:
- type: Sprite
drawdepth: Mobs
layers:
- map: ["enum.DamageStateVisualLayers.Base"]
state: duck-1
sprite: Mobs/Animals/duck.rsi
- type: Appearance
visuals:
- type: DamageStateVisualizer
normal: duck-1
crit: dead-1
dead: dead-1
- type: Butcherable
meat: FoodMeatDuck
pieces: 1
- type: entity
name: brown duck #Quack
parent: SimpleMobBase
id: MobDuckBrown
description: An adorable brown duck, it's fluffy and soft!
components:
- type: Sprite
drawdepth: Mobs
layers:
- map: ["enum.DamageStateVisualLayers.Base"]
state: duck-2
sprite: Mobs/Animals/duck.rsi
- type: Appearance
visuals:
- type: DamageStateVisualizer
normal: duck-2
crit: dead-2
dead: dead-2
- type: Butcherable
meat: FoodMeatDuck
pieces: 1
- type: entity
name: butterfly
parent: SimpleMobBase

View File

@@ -303,6 +303,16 @@
state: chicken
# Tastes like bun, chicken.
- type: entity
name: duck sandwich # Burger for you sick bastards
parent: FoodBurgerBase
id: FoodBurgerDuck
description: A duck sandwich, only the criminally insane would dare to eat the meat of such an adorable creature.
components:
- type: Sprite
state: chicken
# Tastes like bun, duck.
- type: entity
name: cheese burger
parent: FoodBurgerBase

View File

@@ -139,6 +139,27 @@
count: 3
slice: FoodMeatChickenCutlet
- type: entity
name: raw duck meat
parent: FoodMeatBase
id: FoodMeatDuck
description: A slab of raw duck. Remember to wash your hands!
components:
- type: Tag
tags:
- Raw
- type: Sprite
state: bird
- type: SolutionContainerManager
solutions:
food:
reagents:
- ReagentId: Toxin
Quantity: 1
- type: SliceableFood
count: 3
slice: FoodMeatDuckCutlet
- type: entity
name: raw crab meat
parent: FoodMeatBase
@@ -508,6 +529,31 @@
- ReagentId: Nutriment
Quantity: 15
- type: entity
name: cooked duck
parent: FoodMeatBase
id: FoodMeatDuckCooked
description: A cooked piece of duck. Best used in other recipes.
components:
- type: Tag
tags:
- Cooked
- type: Food
trash: FoodPlateSmall
- type: Sprite
layers:
- state: plate-meat
- state: bird-cooked
- type: SolutionContainerManager
solutions:
food:
reagents:
- ReagentId: Nutriment
Quantity: 10
- type: SliceableFood
count: 3
slice: FoodMeatDuckCutletCooked
- type: entity
name: cooked crab
parent: FoodMeatBase
@@ -702,6 +748,26 @@
- ReagentId: Toxin
Quantity: 1
- type: entity
name: raw duck cutlet
parent: FoodMeatBase
id: FoodMeatDuckCutlet
description: A cutlet of raw duck. Remember to wash your hands!
components:
- type: Tag
tags:
- Raw
- Cutlet
- type: Sprite
state: cutlet
color: white
- type: SolutionContainerManager
solutions:
food:
reagents:
- ReagentId: Toxin
Quantity: 1
- type: entity
name: raw lizard cutlet
parent: FoodMeatBase
@@ -886,6 +952,25 @@
- ReagentId: Nutriment
Quantity: 10
- type: entity
name: duck cutlet
parent: FoodMeatBase
id: FoodMeatDuckCutletCooked
description: A cutlet of cooked duck. Remember to wash your hands!
components:
- type: Tag
tags:
- Cooked
- Cutlet
- type: Sprite
state: cutlet-cooked
color: white
- type: SolutionContainerManager
solutions:
food:
reagents:
- ReagentId: Nutriment
Quantity: 10
- type: entity
name: lizard cutlet

View File

@@ -306,6 +306,8 @@
- HydroponicsSeedsExotic
- LivestockMonkeyCube
- LivestockCow
- LivestockChicken
- LivestockDuck
- FoodPizza
- ServiceJanitorial
- ServiceLightsReplacement