mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-19 18:17:52 +01:00
make simple leather items at a high cost. -Watermelon and pumpkin biomass lowered a bit so biomass isn't totally trivial to acquire. -Added more wood items for tower cap wood construction: Wooden doors and sandals. -Added plump helmet biscuits and mushroom soup to kitchen recipes. Revision: r3454 Author: d_h2...@yahoo.com Date: Apr 13, 2012
16 lines
613 B
Plaintext
16 lines
613 B
Plaintext
/*
|
|
CONTAINS:
|
|
WOOD PLANKS
|
|
*/
|
|
|
|
var/global/list/datum/stack_recipe/wood_recipes = list ( \
|
|
new/datum/stack_recipe("wooden sandals", /obj/item/clothing/shoes/sandal, 1), \
|
|
new/datum/stack_recipe("table parts", /obj/item/weapon/table_parts/wood, 2), \
|
|
new/datum/stack_recipe("wooden barricade", /obj/structure/barricade/wooden, 5, time = 30, one_per_turf = 1, on_floor = 1), \
|
|
new/datum/stack_recipe("wooden door", /obj/structure/mineral_door/wood, 10, time = 20, one_per_turf = 1, on_floor = 1), \
|
|
)
|
|
|
|
/obj/item/stack/sheet/wood
|
|
New(var/loc, var/amount=null)
|
|
recipes = wood_recipes
|
|
return ..() |