Unholy Chef Tweaks (#8473)

This commit is contained in:
Geeves
2020-03-22 12:17:29 +01:00
committed by GitHub
parent 51decb6038
commit 5fb94a7ed4
3 changed files with 32 additions and 1 deletions
@@ -698,7 +698,7 @@
name = "produce box"
desc = "A large box of random, leftover produce."
icon_state = "largebox"
starts_with = list(/obj/random_produce = 12)
starts_with = list(/obj/random_produce/box = 15)
/obj/item/storage/box/produce/fill()
. = ..()
+24
View File
@@ -43,3 +43,27 @@
log_debug("Cannot spawn random produce [seed_chosen]! Fix this by editing [type]'s produce_list!",SEVERITY_ERROR)
return INITIALIZE_HINT_QDEL
/obj/random_produce/box // produce for spawning in chef produce boxes. better suited for the job
produce_list = list(
"chili" = 1,
"berries" = 0.25,
"tomato" = 2,
"eggplant" = 0.5,
"apple" = 0.25,
"mushrooms" = 0.25,
"cabbage" = 2,
"banana" = 0.5,
"corn" = 2,
"potato" = 2,
"soybean" = 0.5,
"rice" = 2,
"carrot" = 1,
"whitebeet" = 1,
"pumpkin" = 0.1,
"lime" = 0.25,
"lemon" = 0.25,
"cacao" = 0.5,
"cherry" = 0.25,
"onion" = 0.5
)