mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-04 14:42:56 +00:00
Mineral walls added (not buildable yet). Mineral doors are now actually destructible. Expanded the outpost, adding a small cafeteria and botany area. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1606 316c924e-a436-60f5-8080-3fe189b3f50e
71 lines
1.7 KiB
Plaintext
71 lines
1.7 KiB
Plaintext
/*
|
|
CONTAINS:
|
|
SANDSTONE
|
|
DIAMOND
|
|
URANIUM
|
|
PLASMA
|
|
GOLD
|
|
SILVER
|
|
*/
|
|
|
|
//Sandstone
|
|
var/global/list/datum/stack_recipe/sandstone_recipes = list ( \
|
|
new/datum/stack_recipe("sandstone door", /obj/mineral_door/sandstone, 10), \
|
|
/* new/datum/stack_recipe("sandstone wall", ???), \
|
|
new/datum/stack_recipe("sandstone floor", ???),\*/
|
|
)
|
|
|
|
/obj/item/stack/sheet/sandstone
|
|
New(var/loc, var/amount=null)
|
|
recipes = sandstone_recipes
|
|
return ..()
|
|
|
|
//Diamond
|
|
var/global/list/datum/stack_recipe/diamond_recipes = list ( \
|
|
new/datum/stack_recipe("diamond door", /obj/mineral_door/transparent/diamond, 10), \
|
|
)
|
|
|
|
/obj/item/stack/sheet/diamond
|
|
New(var/loc, var/amount=null)
|
|
recipes = diamond_recipes
|
|
return ..()
|
|
|
|
//Uranium
|
|
var/global/list/datum/stack_recipe/uranium_recipes = list ( \
|
|
new/datum/stack_recipe("uranium door", /obj/mineral_door/uranium, 10), \
|
|
)
|
|
|
|
/obj/item/stack/sheet/uranium
|
|
New(var/loc, var/amount=null)
|
|
recipes = uranium_recipes
|
|
return ..()
|
|
|
|
//Plasma
|
|
var/global/list/datum/stack_recipe/plasma_recipes = list ( \
|
|
new/datum/stack_recipe("plasma door", /obj/mineral_door/transparent/plasma, 10), \
|
|
)
|
|
|
|
/obj/item/stack/sheet/plasma
|
|
New(var/loc, var/amount=null)
|
|
recipes = plasma_recipes
|
|
return ..()
|
|
|
|
//Gold
|
|
var/global/list/datum/stack_recipe/gold_recipes = list ( \
|
|
new/datum/stack_recipe("golden door", /obj/mineral_door/gold, 10), \
|
|
)
|
|
|
|
/obj/item/stack/sheet/gold
|
|
New(var/loc, var/amount=null)
|
|
recipes = gold_recipes
|
|
return ..()
|
|
|
|
//Silver
|
|
var/global/list/datum/stack_recipe/silver_recipes = list ( \
|
|
new/datum/stack_recipe("silver door", /obj/mineral_door/silver, 10), \
|
|
)
|
|
|
|
/obj/item/stack/sheet/silver
|
|
New(var/loc, var/amount=null)
|
|
recipes = silver_recipes
|
|
return ..() |