Resprites Catwalks, adds three new varients (#31492)

* Resprites Existing Catwalks

* grey catwalk sprites

* white catwalk sprites

* black catwalk sprites

* updates hazard catwalk sprite slightly

* fixes a minor pattern fuckup on standard catwalks

* adds the turfs and items

* removes unneeded vars from the extra catwalk varients

* fixes missing catwalk floor basesprite

* adds a few catwalks to all stations

* fixes duped variables (im silly)

* actually fixes the duped vars (im even sillier)

* fixes a decal overlap on delta
This commit is contained in:
MixityMaxity
2026-02-05 06:12:33 +00:00
committed by GitHub
parent d8a1edb3f2
commit 7f6fc2e359
14 changed files with 840 additions and 843 deletions
+6 -1
View File
@@ -1,7 +1,6 @@
GLOBAL_LIST_INIT(rod_recipes, list (
new /datum/stack_recipe("grille", /obj/structure/grille, 2, time = 1 SECONDS, one_per_turf = TRUE, on_floor_or_lattice = TRUE),
new /datum/stack_recipe("table frame", /obj/structure/table_frame, 2, time = 1 SECONDS, one_per_turf = TRUE, on_floor = TRUE),
new /datum/stack_recipe("catwalk tile", /obj/item/stack/tile/catwalk, 2, 4, 20),
new /datum/stack_recipe("curtain rod", /obj/item/mounted/curtain/curtain_fixture, 2, 1, 20),
null,
new /datum/stack_recipe_list("railings...", list(
@@ -17,6 +16,12 @@ GLOBAL_LIST_INIT(rod_recipes, list (
new /datum/stack_recipe("chainlink fence door", /obj/structure/fence/door, 10, time = 1 SECONDS, one_per_turf = TRUE, on_floor = TRUE),
new /datum/stack_recipe("chainlink fence end", /obj/structure/fence/end, 3, time = 1 SECONDS, one_per_turf = TRUE, on_floor = TRUE),
)),
new /datum/stack_recipe_list("catwalks...", list(
new /datum/stack_recipe("catwalk tile", /obj/item/stack/tile/catwalk, 2, 4, 20),
new /datum/stack_recipe("grey catwalk tile", /obj/item/stack/tile/catwalk/grey, 2, 4, 20),
new /datum/stack_recipe("white catwalk tile", /obj/item/stack/tile/catwalk/white, 2, 4, 20),
new /datum/stack_recipe("black catwalk tile", /obj/item/stack/tile/catwalk/black, 2, 4, 20),
)),
))
/obj/item/stack/rods
@@ -341,6 +341,30 @@
resistance_flags = FIRE_PROOF
merge_type = /obj/item/stack/tile/catwalk
/obj/item/stack/tile/catwalk/grey
name = "grey catwalk tiles"
singular_name = "grey catwalk tile"
desc = "A grey catwalk tile. Not rated for space usage."
icon_state = "tile_catwalk_grey"
turf_type = /turf/simulated/floor/catwalk/grey
merge_type = /obj/item/stack/tile/catwalk/grey
/obj/item/stack/tile/catwalk/black
name = "black catwalk tiles"
singular_name = "black catwalk tile"
desc = "A black catwalk tile. Not rated for space usage."
icon_state = "tile_catwalk_black"
turf_type = /turf/simulated/floor/catwalk/black
merge_type = /obj/item/stack/tile/catwalk/black
/obj/item/stack/tile/catwalk/white
name = "white catwalk tiles"
singular_name = "white catwalk tile"
desc = "A white catwalk tile. Not rated for space usage."
icon_state = "tile_catwalk_white"
turf_type = /turf/simulated/floor/catwalk/white
merge_type = /obj/item/stack/tile/catwalk/white
/obj/item/stack/tile/catwalk/cyborg
energy_type = /datum/robot_storage/energy/catwalk
is_cyborg = TRUE