Skip to content

Commit

Permalink
tiles
Browse files Browse the repository at this point in the history
  • Loading branch information
meemofcourse committed Jun 12, 2024
1 parent 94e2772 commit adbea7d
Show file tree
Hide file tree
Showing 5 changed files with 111 additions and 0 deletions.
64 changes: 64 additions & 0 deletions code/game/objects/items/stacks/tiles/tiles_suns.dm
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


45 changes: 45 additions & 0 deletions code/game/turfs/open/floor/suns_floor.dm
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 modified icons/obj/tiles.dmi
Binary file not shown.
Binary file added icons/turf/floors/suns.dmi
Binary file not shown.
2 changes: 2 additions & 0 deletions shiptest.dme
Original file line number Diff line number Diff line change
Expand Up @@ -1305,6 +1305,7 @@
#include "code\game\objects\items\stacks\tiles\tile_mineral.dm"
#include "code\game\objects\items\stacks\tiles\tile_reskinning.dm"
#include "code\game\objects\items\stacks\tiles\tile_types.dm"
#include "code\game\objects\items\stacks\tiles\tiles_suns.dm"
#include "code\game\objects\items\storage\backpack.dm"
#include "code\game\objects\items\storage\bags.dm"
#include "code\game\objects\items\storage\belt.dm"
Expand Down Expand Up @@ -1482,6 +1483,7 @@
#include "code\game\turfs\open\floor\plasteel_floor.dm"
#include "code\game\turfs\open\floor\plating.dm"
#include "code\game\turfs\open\floor\reinf_floor.dm"
#include "code\game\turfs\open\floor\suns_floor.dm"
#include "code\game\turfs\open\floor\plating\asteroid.dm"
#include "code\game\turfs\open\floor\plating\beach.dm"
#include "code\game\turfs\open\floor\plating\icemoon.dm"
Expand Down

0 comments on commit adbea7d

Please sign in to comment.