talon, vb, and typhon fixes

This commit is contained in:
Killian
2022-10-12 13:25:58 +01:00
parent 3bc9414f49
commit 33efd08ddb
8 changed files with 128 additions and 61 deletions
+13 -1
View File
@@ -13,7 +13,9 @@
var/static/plating_colors = list(
/obj/item/stack/tile/floor = "#858a8f",
/obj/item/stack/tile/floor/dark = "#4f4f4f",
/obj/item/stack/tile/floor/white = "#e8e8e8")
/obj/item/stack/tile/floor/white = "#e8e8e8",
/obj/item/stack/tile/floor/techmaint = "#4d585b",
/obj/item/stack/tile/floor/techgrey = "#363f43")
var/health = 100
var/maxhealth = 100
@@ -189,3 +191,13 @@
icon_state = "catwalk_platedwhite"
tile = /obj/item/stack/tile/floor/white
platecolor = "#e8e8e8"
/obj/effect/catwalk_plated/techmaint
icon_state = "catwalk_techmaint"
tile = /obj/item/stack/tile/floor/techmaint
platecolor = "#4d585b"
/obj/effect/catwalk_plated/techfloor
icon_state = "catwalk_techfloor"
tile = /obj/item/stack/tile/floor/techgrey
platecolor = "#363f43"