diff --git a/code/game/machinery/biogenerator.dm b/code/game/machinery/biogenerator.dm index 8fadcf5f63d..c9a353cc15c 100644 --- a/code/game/machinery/biogenerator.dm +++ b/code/game/machinery/biogenerator.dm @@ -75,6 +75,21 @@ object = /obj/item/reagent_containers/food/snacks/spreads cost = 80 +/singleton/biorecipe/food/lard + name = "Lard" + object = /obj/item/reagent_containers/food/snacks/spreads/lard + cost = 80 + +/singleton/biorecipe/food/egg_carton + name = "Chicken Egg Carton" + object = /obj/item/storage/box/fancy/egg_box + cost = 300 + +/singleton/biorecipe/food/tunneler_egg_carton + name = "Ice Tunneler Egg Carton" + object = /obj/item/storage/box/fancy/egg_box/tunneler + cost = 300 + /singleton/biorecipe/food/enzyme name = "Universal Enzyme (50u)" object = /obj/item/reagent_containers/food/condiment/enzyme diff --git a/code/game/objects/items/weapons/storage/fancy.dm b/code/game/objects/items/weapons/storage/fancy.dm index d2a054843ea..a661fd5ff94 100644 --- a/code/game/objects/items/weapons/storage/fancy.dm +++ b/code/game/objects/items/weapons/storage/fancy.dm @@ -126,11 +126,23 @@ storage_slots = 12 can_hold = list( /obj/item/reagent_containers/food/snacks/egg, - /obj/item/reagent_containers/food/snacks/boiledegg + /obj/item/reagent_containers/food/snacks/boiledegg, + /obj/item/reagent_containers/food/snacks/egg/ice_tunnelers ) starts_with = list(/obj/item/reagent_containers/food/snacks/egg = 12) foldable = /obj/item/stack/material/cardboard +/obj/item/storage/box/fancy/egg_box/tunneler + name = "ice tunneler egg carton" + desc = "A carton of ice tunneler eggs." + can_hold = list( + /obj/item/reagent_containers/food/snacks/egg/ice_tunnelers, + /obj/item/reagent_containers/food/snacks/boiledegg, + /obj/item/reagent_containers/food/snacks/egg + ) + starts_with = list(/obj/item/reagent_containers/food/snacks/egg/ice_tunnelers = 12) + foldable = /obj/item/stack/material/cardboard + /* * Cracker Packet */ diff --git a/html/changelogs/ramke - biogenerator_additions.yml b/html/changelogs/ramke - biogenerator_additions.yml new file mode 100644 index 00000000000..ae1b18c5a59 --- /dev/null +++ b/html/changelogs/ramke - biogenerator_additions.yml @@ -0,0 +1,43 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +# admin +# backend +# security +# refactor +################################# + +# Your name. +author: Ramke + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Created a new egg carton variant for ice tunneler eggs." + - rscadd: "Allows the biogenerator to create chicken and ice tunneler egg cartons and lard." + - tweak: "Allows ice tunneler eggs to be stored in the egg carton." \ No newline at end of file