diff --git a/Resources/Locale/en-US/_NF/lathe/recipes.ftl b/Resources/Locale/en-US/_NF/lathe/recipes.ftl index 8c4eb95c33f..31b9ecae45e 100644 --- a/Resources/Locale/en-US/_NF/lathe/recipes.ftl +++ b/Resources/Locale/en-US/_NF/lathe/recipes.ftl @@ -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) \ No newline at end of file +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) diff --git a/Resources/Prototypes/_NF/Entities/Objects/Consumable/Drinks/drinks_keg.yml b/Resources/Prototypes/_NF/Entities/Objects/Consumable/Drinks/drinks_keg.yml index 65054b438f6..85130385376 100644 --- a/Resources/Prototypes/_NF/Entities/Objects/Consumable/Drinks/drinks_keg.yml +++ b/Resources/Prototypes/_NF/Entities/Objects/Consumable/Drinks/drinks_keg.yml @@ -30,7 +30,7 @@ - type: SolutionContainerManager solutions: drink: - maxVol: 250 + maxVol: 300 - type: Drink - type: DrawableSolution solution: drink @@ -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 @@ -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 @@ -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 diff --git a/Resources/Prototypes/_NF/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/_NF/Entities/Structures/Machines/lathe.yml index 08ea8ef72f4..ad0b44e4d3f 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/lathe.yml @@ -68,6 +68,9 @@ - NFFoodBoxNuggetEmpty - NFFoodContainerEggEmpty - NFFoodBoxSushi + - DrinkKegSteel + - DrinkKegPlastic + - DrinkKegWood ## Basic parts - CableStack - LightTube diff --git a/Resources/Prototypes/_NF/Recipes/Lathes/service.yml b/Resources/Prototypes/_NF/Recipes/Lathes/service.yml index 0b97186a140..fa2a80cdfe2 100644 --- a/Resources/Prototypes/_NF/Recipes/Lathes/service.yml +++ b/Resources/Prototypes/_NF/Recipes/Lathes/service.yml @@ -121,3 +121,27 @@ parent: BaseServiceItemsRecipe materials: Cardboard: 200 + +- type: latheRecipe + id: DrinkKegSteel + name: lathe-recipe-DrinkKegSteel-name + result: DrinkKegSteel + 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