mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-23 12:08:28 +01:00
@@ -0,0 +1,7 @@
|
||||
/datum/material/diamond/generate_recipes()
|
||||
..()
|
||||
recipes += list(
|
||||
new /datum/stack_recipe_list("floor tiles", list(
|
||||
new /datum/stack_recipe("diamond floor tile", /obj/item/stack/tile/floor/diamond, 1, 4, 20, recycle_material = "[name]")
|
||||
))
|
||||
)
|
||||
@@ -0,0 +1,7 @@
|
||||
/datum/material/gold/generate_recipes()
|
||||
..()
|
||||
recipes += list(
|
||||
new /datum/stack_recipe_list("floor tiles", list(
|
||||
new /datum/stack_recipe("gold floor tile", /obj/item/stack/tile/floor/gold, 1, 4, 20, recycle_material = "[name]")
|
||||
))
|
||||
)
|
||||
@@ -0,0 +1,7 @@
|
||||
/datum/material/phoron/generate_recipes()
|
||||
..()
|
||||
recipes += list(
|
||||
new /datum/stack_recipe_list("floor tiles", list(
|
||||
new /datum/stack_recipe("phoron floor tile", /obj/item/stack/tile/floor/phoron, 1, 4, 20, recycle_material = "[name]")
|
||||
))
|
||||
)
|
||||
@@ -0,0 +1,7 @@
|
||||
/datum/material/silver/generate_recipes()
|
||||
..()
|
||||
recipes += list(
|
||||
new /datum/stack_recipe_list("floor tiles", list(
|
||||
new /datum/stack_recipe("silver floor tile", /obj/item/stack/tile/floor/silver, 1, 4, 20, recycle_material = "[name]")
|
||||
))
|
||||
)
|
||||
@@ -0,0 +1,7 @@
|
||||
/datum/material/uranium/generate_recipes()
|
||||
..()
|
||||
recipes += list(
|
||||
new /datum/stack_recipe_list("floor tiles", list(
|
||||
new /datum/stack_recipe("uranium floor tile", /obj/item/stack/tile/floor/uranium, 1, 4, 20, recycle_material = "[name]")
|
||||
))
|
||||
)
|
||||
Reference in New Issue
Block a user