Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds casks to the service techfab #2842

Merged
merged 11 commits into from
Feb 8, 2025
19 changes: 12 additions & 7 deletions Resources/Locale/en-US/_NF/lathe/recipes.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,21 @@ lathe-recipe-WeaponCaseShortAmmo-name = ammo case (small, empty)
lathe-recipe-WeaponCaseShortExplosives-name = explosives case (small, empty)

# Cardboard
lathe-recipe-NFHappyHonkMimeEmpty-name = happy honk meal (empty)
lathe-recipe-NFHappyHonkMimeEmpty-name = happy honk meal (empty)
lathe-recipe-NFHappyHonkEmpty-name = happy honk meal (empty)
lathe-recipe-NFHappyHonkMcCargoEmpty-name = mccargo meal (empty)
lathe-recipe-NFHappyHonkCluwneEmpty-name = woeful cluwne meal (empty)
lathe-recipe-NFHappyHonkNukieEmpty-name = robust nukie meal (empty)
lathe-recipe-NFHappyHonkMcCargoEmpty-name = mccargo meal (empty)
lathe-recipe-NFHappyHonkCluwneEmpty-name = woeful cluwne meal (empty)
lathe-recipe-NFHappyHonkNukieEmpty-name = robust nukie meal (empty)
lathe-recipe-NFFoodBoxPizza-name = pizza box (empty)
lathe-recipe-NFFoodBoxDonutEmpty-name = donut box (empty)
lathe-recipe-NFFoodBoxDonutEmpty-name = donut box (empty)
lathe-recipe-NFFoodBoxNuggetEmpty-name = chicken nuggets (empty)
lathe-recipe-NFFoodContainerEggEmpty-name = egg carton (empty)
lathe-recipe-NFFoodContainerEggEmpty-name = egg carton (empty)
lathe-recipe-NFBoxMREEmpty-name = M.R.E. (empty)

# Plastic
lathe-recipe-NFFoodBoxSushi-name = sushi tray (empty)
lathe-recipe-NFFoodBoxSushi-name = sushi tray (empty)

# Service
lathe-recipe-DrinkKegSteel-name = cask (steel)
lathe-recipe-DrinkKegWood-name = cask (wood)
lathe-recipe-DrinkKegPlastic-name = cask (plastic)
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
- type: entity
parent: DrinkKegBase
id: DrinkKegSteel
suffix: Steel
name: steel cask
components:
- type: Sprite
sprite: _NF/Objects/Consumable/Drinks/keg_steel.rsi
Expand All @@ -102,7 +102,7 @@
- type: entity
parent: DrinkKegBase
id: DrinkKegWood
suffix: Wood
name: wood cask
components:
- type: Sprite
sprite: _NF/Objects/Consumable/Drinks/keg_wood.rsi
Expand All @@ -115,7 +115,7 @@
- type: entity
parent: DrinkKegBase
id: DrinkKegPlastic
suffix: Plastic
name: plastic cask
components:
- type: Sprite
sprite: _NF/Objects/Consumable/Drinks/keg_plastic.rsi
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@
- NFFoodBoxNuggetEmpty
- NFFoodContainerEggEmpty
- NFFoodBoxSushi
- DrinkKegSteel
- DrinkKegPlastic
- DrinkKegWood
## Basic parts
- CableStack
- LightTube
Expand Down
24 changes: 24 additions & 0 deletions Resources/Prototypes/_NF/Recipes/Lathes/service.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,3 +121,27 @@
parent: BaseServiceItemsRecipe
materials:
Cardboard: 200

- type: latheRecipe
id: DrinkKegSteel
name: lathe-recipe-DrinkKegSteel-name
result: DrinkKegSteel
dustylens marked this conversation as resolved.
Show resolved Hide resolved
completetime: 2
materials:
Steel: 300

- type: latheRecipe
id: DrinkKegPlastic
name: lathe-recipe-DrinkKegPlastic-name
result: DrinkKegPlastic
completetime: 2
materials:
Plastic: 300

- type: latheRecipe
id: DrinkKegWood
name: lathe-recipe-DrinkKegWood-name
result: DrinkKegWood
completetime: 2
materials:
Wood: 300
Loading