Additional Material Tiles (#18803)

* Tiles

* update vorestation.dme
This commit is contained in:
Guti
2025-11-25 20:24:41 -05:00
committed by GitHub
parent 89786add5c
commit 2208b4a8a1
10 changed files with 134 additions and 0 deletions
@@ -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]")
))
)