-
-
Notifications
You must be signed in to change notification settings - Fork 540
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
94e2772
commit adbea7d
Showing
5 changed files
with
111 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/obj/item/stack/tile/suns | ||
name = "white marble tile" | ||
singular_name = "white marble floor tile" | ||
icon_state = "tile_suns_light" | ||
turf_type = /turf/open/floor/suns | ||
tile_reskin_types = list( | ||
/obj/item/stack/tile/suns/plain, | ||
/obj/item/stack/tile/suns/pattern, | ||
/obj/item/stack/tile/suns/hatch, | ||
/obj/item/stack/tile/suns/diagonal, | ||
/obj/item/stack/tile/suns/grid, | ||
/obj/item/stack/tile/suns/dark, | ||
/obj/item/stack/tile/suns/dark/plain, | ||
/obj/item/stack/tile/suns/dark/pattern) | ||
|
||
/obj/item/stack/tile/suns/plain | ||
name = "white plain marble tile" | ||
singular_name = "white plain marble floor tile" | ||
icon_state = "tile_suns_lightplain" | ||
turf_type = /turf/open/floor/suns/plain | ||
|
||
/obj/item/stack/tile/suns/pattern | ||
name = "patterned white marble tile" | ||
singular_name = "patterned white marble floor tile" | ||
icon_state = "tile_suns_lightpattern" | ||
turf_type = /turf/open/floor/suns/pattern | ||
|
||
/obj/item/stack/tile/suns/hatch | ||
name = "hatched white marble tile" | ||
singular_name = "hatched white marble floor tile" | ||
icon_state = "tile_suns_lighthatched" | ||
turf_type = /turf/open/floor/suns/hatch | ||
|
||
/obj/item/stack/tile/suns/diagonal | ||
name = "diagonal white marble tile" | ||
singular_name = "diagonal white marble floor tile" | ||
icon_state = "tile_suns_lightdiag" | ||
turf_type = /turf/open/floor/suns/diagonal | ||
|
||
/obj/item/stack/tile/suns/grid | ||
name = "dark grid tile" | ||
singular_name = "dark grid floor floor tile" | ||
icon_state = "tile_suns_darkchunky" | ||
turf_type = /turf/open/floor/suns/grid | ||
|
||
/obj/item/stack/tile/suns/dark | ||
name = "black marble tile" | ||
singular_name = "black marble floor tile" | ||
icon_state = "tile_suns_dark" | ||
turf_type = /turf/open/floor/suns/dark | ||
|
||
/obj/item/stack/tile/suns/dark/plain | ||
name = "black plain marble tile" | ||
singular_name = "black plain marble floor tile" | ||
icon_state = "tile_suns_darkplain" | ||
turf_type = /turf/open/floor/suns/dark/plain | ||
|
||
/obj/item/stack/tile/suns/dark/pattern | ||
name = "patterned black marble tile" | ||
singular_name = "patterned black marble floor tile" | ||
icon_state = "tile_suns_darkpattern" | ||
turf_type = /turf/open/floor/suns/dark/pattern | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/turf/open/floor/suns | ||
name = "white marble floor" | ||
icon = 'icons/turf/floors/suns.dmi' | ||
icon_state = "light" | ||
floor_tile = /obj/item/stack/tile/suns | ||
|
||
/turf/open/floor/suns/plain | ||
name = "white plain marble floor" | ||
icon_state = "lightplain" | ||
floor_tile = /obj/item/stack/tile/suns/plain | ||
|
||
/turf/open/floor/suns/pattern | ||
name = "patterned white marble floor" | ||
icon_state = "lightpattern" | ||
floor_tile = /obj/item/stack/tile/suns/pattern | ||
|
||
/turf/open/floor/suns/hatch | ||
name = "hatched white marble floor" | ||
icon_state = "lighthatched" | ||
floor_tile = /obj/item/stack/tile/suns/hatch | ||
|
||
/turf/open/floor/suns/diagonal | ||
name = "diagonal white marble floor" | ||
icon_state = "lightdiag" | ||
floor_tile = /obj/item/stack/tile/suns/diagonal | ||
|
||
/turf/open/floor/suns/grid | ||
name = "dark grid floor" | ||
icon_state = "darkchunky" | ||
floor_tile = /obj/item/stack/tile/suns/grid | ||
|
||
/turf/open/floor/suns/dark | ||
name = "black marble floor" | ||
icon_state = "dark" | ||
floor_tile = /obj/item/stack/tile/suns/dark | ||
|
||
/turf/open/floor/suns/dark/plain | ||
name = "black plain marble floor" | ||
icon_state = "darkplain" | ||
floor_tile = /obj/item/stack/tile/suns/dark/plain | ||
|
||
/turf/open/floor/suns/dark/pattern | ||
name = "patterned black marble floor" | ||
icon_state = "darkpattern" | ||
floor_tile = /obj/item/stack/tile/suns/dark/pattern |
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters