Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
No BANDA
Browse files Browse the repository at this point in the history
AyIong committed Jun 17, 2024
1 parent 465fa71 commit e3a2f08
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions modular_bandastation/aesthetics/decals/code/floor_decals.dm
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@
alpha = 110

/// Automatically generates all subtypes for a decal with the given path.
#define LINE_DECAL_SUBTYPE_HELPER_BANDA(path)\
#define LINE_DECAL_SUBTYPE_HELPER(path)\
##path/line {\
icon_state = "line";\
}\
@@ -40,83 +40,83 @@
name = "blue line decal"
color = "#52B4E9"

LINE_DECAL_SUBTYPE_HELPER_BANDA(/obj/effect/turf_decal/line/blue)
LINE_DECAL_SUBTYPE_HELPER(/obj/effect/turf_decal/line/blue)

/// Dark blue lines
/obj/effect/turf_decal/line/dark_blue
name = "dark blue line decal"
color = "#486091"

LINE_DECAL_SUBTYPE_HELPER_BANDA(/obj/effect/turf_decal/line/dark_blue)
LINE_DECAL_SUBTYPE_HELPER(/obj/effect/turf_decal/line/dark_blue)

/// Green lines
/obj/effect/turf_decal/line/green
name = "green line decal"
color = "#9FED58"

LINE_DECAL_SUBTYPE_HELPER_BANDA(/obj/effect/turf_decal/line/green)
LINE_DECAL_SUBTYPE_HELPER(/obj/effect/turf_decal/line/green)

/// Dark green lines
/obj/effect/turf_decal/line/dark_green
name = "dark green line decal"
color = "#439C1E"

LINE_DECAL_SUBTYPE_HELPER_BANDA(/obj/effect/turf_decal/line/dark_green)
LINE_DECAL_SUBTYPE_HELPER(/obj/effect/turf_decal/line/dark_green)

/// Yellow lines
/obj/effect/turf_decal/line/yellow
name = "yellow line decal"
color = "#EFB341"

LINE_DECAL_SUBTYPE_HELPER_BANDA(/obj/effect/turf_decal/line/yellow)
LINE_DECAL_SUBTYPE_HELPER(/obj/effect/turf_decal/line/yellow)

/// Red lines
/obj/effect/turf_decal/line/red
name = "red line decal"
color = "#DE3A3A"

LINE_DECAL_SUBTYPE_HELPER_BANDA(/obj/effect/turf_decal/line/red)
LINE_DECAL_SUBTYPE_HELPER(/obj/effect/turf_decal/line/red)

/// Dark red lines
/obj/effect/turf_decal/line/dark_red
name = "dark red line decal"
color = "#B11111"

LINE_DECAL_SUBTYPE_HELPER_BANDA(/obj/effect/turf_decal/line/dark_red)
LINE_DECAL_SUBTYPE_HELPER(/obj/effect/turf_decal/line/dark_red)

/// Bar lines
/obj/effect/turf_decal/line/bar
name = "bar line decal"
color = "#791500"
alpha = 130

LINE_DECAL_SUBTYPE_HELPER_BANDA(/obj/effect/turf_decal/line/bar)
LINE_DECAL_SUBTYPE_HELPER(/obj/effect/turf_decal/line/bar)

/// Purple lines
/obj/effect/turf_decal/line/purple
name = "purple line decal"
color = "#D381C9"

LINE_DECAL_SUBTYPE_HELPER_BANDA(/obj/effect/turf_decal/line/purple)
LINE_DECAL_SUBTYPE_HELPER(/obj/effect/turf_decal/line/purple)

/// Brown lines
/obj/effect/turf_decal/line/brown
name = "brown line decal"
color = "#A46106"

LINE_DECAL_SUBTYPE_HELPER_BANDA(/obj/effect/turf_decal/line/brown)
LINE_DECAL_SUBTYPE_HELPER(/obj/effect/turf_decal/line/brown)

/// Neutral lines
/obj/effect/turf_decal/line/neutral
name = "neutral line decal"
color = "#D4D4D4"
alpha = 50

LINE_DECAL_SUBTYPE_HELPER_BANDA(/obj/effect/turf_decal/line/neutral)
LINE_DECAL_SUBTYPE_HELPER(/obj/effect/turf_decal/line/neutral)

/// Dark lines
/obj/effect/turf_decal/line/dark
name = "dark line decal"
color = "#0e0f0f"

LINE_DECAL_SUBTYPE_HELPER_BANDA(/obj/effect/turf_decal/line/dark)
LINE_DECAL_SUBTYPE_HELPER(/obj/effect/turf_decal/line/dark)

0 comments on commit e3a2f08

Please sign in to comment.