diff --git a/code/game/objects/structures/flags_banners.dm b/code/game/objects/structures/flags_banners.dm index 8dd09bc8aee..33d16ab4976 100644 --- a/code/game/objects/structures/flags_banners.dm +++ b/code/game/objects/structures/flags_banners.dm @@ -3111,3 +3111,41 @@ /obj/structure/sign/flag/scarab/large/west/Initialize(mapload) . = ..(mapload, WEST) + +// Callisto + +/obj/item/flag/callisto + name = "\improper Callistean flag" + desc = "The flag of the Commonwealth of Callisto, the gateway to Sol and its largest port." + flag_path = "callisto" + flag_structure = /obj/structure/sign/flag/callisto + +/obj/structure/sign/flag/callisto + name = "\improper Callistean flag" + desc = "The flag of the Commonwealth of Callisto, the gateway to Sol and its largest port." + flag_path = "callisto" + icon_state = "callisto" + flag_item = /obj/item/flag/callisto + +/obj/item/flag/callisto/l + name = "large Callistean flag" + flag_size = TRUE + flag_structure = /obj/structure/sign/flag/callisto/large + +/obj/structure/sign/flag/callisto/large + icon_state = "callisto_l" + flag_path = "callisto" + flag_size = TRUE + flag_item = /obj/item/flag/callisto/l + +/obj/structure/sign/flag/callisto/large/north/Initialize(mapload) + . = ..(mapload, NORTH) + +/obj/structure/sign/flag/callisto/large/south/Initialize(mapload) + . = ..(mapload, SOUTH) + +/obj/structure/sign/flag/callisto/large/east/Initialize(mapload) + . = ..(mapload, EAST) + +/obj/structure/sign/flag/callisto/large/west/Initialize(mapload) + . = ..(mapload, WEST) diff --git a/code/modules/client/preference_setup/loadout/items/general.dm b/code/modules/client/preference_setup/loadout/items/general.dm index bb7c26cfe23..a6cd5e13c1a 100644 --- a/code/modules/client/preference_setup/loadout/items/general.dm +++ b/code/modules/client/preference_setup/loadout/items/general.dm @@ -247,6 +247,7 @@ banners["banner, Svarog"] = /obj/item/flag/svarog banners["banner, Empyrean"] = /obj/item/flag/empyrean banners["banner, Traditinalist Coalition"] = /obj/item/flag/traditionalist + banners["banner, Callisto"] = /obj/item/flag/callisto gear_tweaks += new /datum/gear_tweak/path(banners) /datum/gear/standard @@ -331,6 +332,7 @@ flags["flag, Svarog"] = /obj/item/flag/svarog/l flags["flag, Empyrean"] = /obj/item/flag/empyrean/l flags["flag, Traditionalist Coalition"] = /obj/item/flag/traditionalist/l + flags["flag, Callisto"] = /obj/item/flag/callisto/l gear_tweaks += new /datum/gear_tweak/path(flags) /datum/gear/towel diff --git a/html/changelogs/shimmeristaken-shimmerispain.yml b/html/changelogs/shimmeristaken-shimmerispain.yml new file mode 100644 index 00000000000..bf26ed10f6f --- /dev/null +++ b/html/changelogs/shimmeristaken-shimmerispain.yml @@ -0,0 +1,41 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +# admin +# backend +# security +# refactor +################################# + +# Your name. +author: shimmeristaken + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Added both a Callistean flag, and banner, to the loadout menu!" diff --git a/icons/obj/structure/flags.dmi b/icons/obj/structure/flags.dmi index 218a361e729..1e35fbe486f 100644 Binary files a/icons/obj/structure/flags.dmi and b/icons/obj/structure/flags.dmi differ