Merge pull request #1182 from Kabramen/stone-floors

New craftable stone tiles!
This commit is contained in:
QuoteFox
2021-05-22 01:46:06 +01:00
committed by GitHub
5 changed files with 52 additions and 1 deletions
@@ -30,6 +30,9 @@ Mineral Sheets
GLOBAL_LIST_INIT(sandstone_recipes, list ( \
new/datum/stack_recipe("pile of dirt", /obj/machinery/hydroponics/soil, 3, time = 10, one_per_turf = 1, on_floor = 1), \
new/datum/stack_recipe("sandstone tile", /obj/item/stack/tile/mineral/sandstone, 1, 4, 20), \
new/datum/stack_recipe("crimson tile", /obj/item/stack/tile/mineral/crimsonstone, 1, 4, 20), \
new/datum/stack_recipe("basalt tile", /obj/item/stack/tile/mineral/basaltstone, 1, 4, 20), \
new/datum/stack_recipe("sandstone door", /obj/structure/mineral_door/sandstone, 10, one_per_turf = 1, on_floor = 1), \
new/datum/stack_recipe("aesthetic volcanic floor tile", /obj/item/stack/tile/basalt, 2, 2, 4, 20), \
new/datum/stack_recipe("Assistant Statue", /obj/structure/statue/sandstone/assistant, 5, one_per_turf = 1, on_floor = 1), \
@@ -77,4 +77,31 @@
icon_state = "tile_darkshuttle"
turf_type = /turf/open/floor/mineral/plastitanium
mineralType = "plastitanium"
materials = list(MAT_TITANIUM=250, MAT_PLASMA=250)
materials = list(MAT_TITANIUM=250, MAT_PLASMA=250)
/obj/item/stack/tile/mineral/sandstone
name = "sandstone tile"
singular_name = "sandstone floor tile"
desc = "A rough stone tile."
icon_state = "tile_sandstone"
turf_type = /turf/open/floor/mineral/sandstone_floor
mineralType = "sandstone"
materials = list(MAT_SANDSTONE=500)
/obj/item/stack/tile/mineral/crimsonstone
name = "crimson tile"
singular_name = "crimson floor tile"
desc = "A tile made out of layenia's local stone."
icon_state = "tile_crimsonstone"
turf_type = /turf/open/floor/mineral/crimsonstone_floor
mineralType = "sandstone"
materials = list(MAT_SANDSTONE=500)
/obj/item/stack/tile/mineral/basaltstone
name = "basalt tile"
singular_name = "basalt floor tile"
desc = "A tile made out of Lavaland's local stone."
icon_state = "tile_basaltstone"
turf_type = /turf/open/floor/mineral/basaltstone_floor
mineralType = "sandstone"
materials = list(MAT_SANDSTONE=500)