New stone tiles

This commit is contained in:
LFP
2022-11-10 09:33:24 -06:00
parent e3f28b5cd6
commit b8c93bedd0
5 changed files with 99 additions and 2 deletions
@@ -33,6 +33,13 @@ GLOBAL_LIST_INIT(sandstone_recipes, list ( \
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("running bond stone tile", /obj/item/stack/tile/mineral/running_bond_stone, 1, 4, 20), \
new/datum/stack_recipe("herringbone stone tile", /obj/item/stack/tile/mineral/herringbone_stone, 1, 4, 20), \
new/datum/stack_recipe("large stone tile", /obj/item/stack/tile/mineral/large_stone, 1, 4, 20), \
new/datum/stack_recipe("blueslate tile", /obj/item/stack/tile/mineral/blueslate, 1, 4, 20), \
new/datum/stack_recipe("rough sandstone tile", /obj/item/stack/tile/mineral/sandstone_rough, 1, 4, 20), \
new/datum/stack_recipe("concrete tile", /obj/item/stack/tile/mineral/concrete, 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), \
@@ -104,4 +104,58 @@
icon_state = "tile_basaltstone"
turf_type = /turf/open/floor/mineral/basaltstone_floor
mineralType = "sandstone"
materials = list(MAT_SANDSTONE=500)
materials = list(MAT_SANDSTONE=500)
/obj/item/stack/tile/mineral/running_bond_stone
name = "running bond stone tile"
singular_name = "running bond floor tile"
desc = "A tile made out of layenia's local stone."
icon_state = "tile_running_bond_stone"
turf_type = /turf/open/floor/mineral/running_bond_stone
mineralType = "sandstone"
materials = list(MAT_SANDSTONE=500)
/obj/item/stack/tile/mineral/herringbone_stone
name = "herringbone stone tile"
singular_name = "herringbone floor tile"
desc = "A tile made out of layenia's local stone."
icon_state = "tile_herringbone_stone"
turf_type = /turf/open/floor/mineral/herringbone_stone
mineralType = "sandstone"
materials = list(MAT_SANDSTONE=500)
/obj/item/stack/tile/mineral/large_stone
name = "large stone tile"
singular_name = "large stone floor tile"
desc = "A tile made out of layenia's local stone."
icon_state = "tile_large_stone"
turf_type = /turf/open/floor/mineral/large_stone
mineralType = "sandstone"
materials = list(MAT_SANDSTONE=500)
/obj/item/stack/tile/mineral/blueslate
name = "blueslate tile"
singular_name = "blueslate floor tile"
desc = "A tile made out of layenia's local stone."
icon_state = "tile_blueslate"
turf_type = /turf/open/floor/mineral/blueslate
mineralType = "sandstone"
materials = list(MAT_SANDSTONE=500)
/obj/item/stack/tile/mineral/sandstone_rough
name = "rough sandstone tile"
singular_name = "rough sandstone floor tile"
desc = "A very rough sandstone tile."
icon_state = "tile_sandstone_rough"
turf_type = /turf/open/floor/mineral/sandstone_rough
mineralType = "sandstone"
materials = list(MAT_SANDSTONE=500)
/obj/item/stack/tile/mineral/concrete
name = "concrete tile"
singular_name = "concrete floor tile"
desc = "A fairly smooth concrete surface."
icon_state = "tile_concrete"
turf_type = /turf/open/floor/mineral/concrete
mineralType = "sandstone"
materials = list(MAT_SANDSTONE=500)