Adds (dirty) steel tiles.

This commit is contained in:
PsiOmega
2015-08-16 06:07:59 -07:00
committed by Zuhayr
parent 593023443f
commit aa475ea23c
6 changed files with 21 additions and 0 deletions
@@ -87,6 +87,12 @@
singular_name = "red floor tile"
icon_state = "tile_red"
/obj/item/stack/tile/floor_steel
name = "steel floor tile"
singular_name = "steel floor tile"
icon_state = "tile_steel"
matter = list("plasteel" = 937.5)
/obj/item/stack/tile/floor_white
name = "white floor tile"
singular_name = "white floor tile"
+7
View File
@@ -92,6 +92,13 @@ var/list/flooring_types
has_damage_range = null
flags = TURF_REMOVE_CROWBAR
build_type = /obj/item/stack/tile/floor_red
/decl/flooring/tiling/steel
name = "steel floor"
icon_base = "steel"
has_damage_range = null
flags = TURF_REMOVE_CROWBAR
build_type = /obj/item/stack/tile/floor_steel
/decl/flooring/tiling/white
name = "white floor"
@@ -79,6 +79,9 @@ var/list/floor_decals = list()
name = "brown corner"
icon_state = "corner_brown"
/obj/effect/floor_decal/corner/brown/full
icon_state = "corner_brown_full"
/obj/effect/floor_decal/corner/white
name = "white corner"
icon_state = "corner_white"
@@ -64,6 +64,11 @@
icon_state = "red"
initial_flooring = /decl/flooring/tiling/red
/turf/simulated/floor/tiled/steel
name = "steel floor"
icon_state = "steel_dirty"
initial_flooring = /decl/flooring/tiling/steel
/turf/simulated/floor/tiled/white
name = "white floor"
icon_state = "white"
Binary file not shown.

Before

Width:  |  Height:  |  Size: 62 KiB

After

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 56 KiB

After

Width:  |  Height:  |  Size: 58 KiB