diff --git a/code/game/machinery/suit_cycler_units.dm b/code/game/machinery/suit_cycler_units.dm index 4771d7ae085..f70fdd624b6 100644 --- a/code/game/machinery/suit_cycler_units.dm +++ b/code/game/machinery/suit_cycler_units.dm @@ -286,6 +286,10 @@ suit = /obj/item/clothing/suit/space/void/sol/ssmd helmet = /obj/item/clothing/head/helmet/space/void/sol/ssmd +/obj/machinery/suit_cycler/offship/sol/splf + suit = /obj/item/clothing/suit/space/void/sol/splf + helmet = /obj/item/clothing/head/helmet/space/void/sol/splf + /obj/machinery/suit_cycler/offship/xanu model_text = "All-Xanu Spacefleet" req_access = list(ACCESS_COALITION_NAVY) diff --git a/code/game/objects/items/devices/modkit.dm b/code/game/objects/items/devices/modkit.dm index e8300925c63..52345ceb47d 100644 --- a/code/game/objects/items/devices/modkit.dm +++ b/code/game/objects/items/devices/modkit.dm @@ -305,7 +305,8 @@ "Southern Fleet Administration" = /obj/item/clothing/suit/space/void/sol/sfa, "Solarian Provisional Government" = /obj/item/clothing/suit/space/void/sol/spg, "Solarian Restoration Front" = /obj/item/clothing/suit/space/void/sol/srf, - "Southern Solarian Military District" = /obj/item/clothing/suit/space/void/sol/ssmd + "Southern Solarian Military District" = /obj/item/clothing/suit/space/void/sol/ssmd, + "Solarian People's Liberation Front" = /obj/item/clothing/suit/space/void/sol/splf ) helmet_options = list( "Solarian Armed Forces" = /obj/item/clothing/head/helmet/space/void/sol, @@ -315,7 +316,8 @@ "Southern Fleet Administration" = /obj/item/clothing/head/helmet/space/void/sol/sfa, "Solarian Provisional Government" = /obj/item/clothing/head/helmet/space/void/sol/spg, "Solarian Restoration Front" = /obj/item/clothing/head/helmet/space/void/sol/srf, - "Southern Solarian Military District" = /obj/item/clothing/head/helmet/space/void/sol/ssmd + "Southern Solarian Military District" = /obj/item/clothing/head/helmet/space/void/sol/ssmd, + "Solarian People's Liberation Front" = /obj/item/clothing/head/helmet/space/void/sol/splf ) /obj/item/voidsuit_modkit_multi/unathi_pirate diff --git a/code/modules/clothing/spacesuits/void/misc.dm b/code/modules/clothing/spacesuits/void/misc.dm index d3e4c1ed1c3..b8442150998 100644 --- a/code/modules/clothing/spacesuits/void/misc.dm +++ b/code/modules/clothing/spacesuits/void/misc.dm @@ -1003,6 +1003,18 @@ icon_state = "sfa_suit" item_state = "sfa_suit" +/obj/item/clothing/head/helmet/space/void/sol/splf + name = "solarian people's liberation fleet voidsuit helmet" + desc = "A sleek and waspish composite-armored voidsuit helmet, issued to the personnel of the Sol Alliance's military. This one has been sprayed a dull grey, marking it as in the possession of the Solarian People's Liberation Fleet. Freedom fighters to some, obstinate insurgents to others." + icon_state = "splf_helmet" + item_state = "splf_helmet" + +/obj/item/clothing/suit/space/void/sol/splf + name = "solarian people's liberation fleet voidsuit" + desc = "A midweight Zavodskoi-manufactured voidsuit designed for the Solarian Armed Forces, the Type-4 \"Gargoyle\" is the primary armored voidsuit in use by the Alliance military. This one has been sprayed a dull grey, marking it as in the possession of the Solarian People's Liberation Fleet. Freedom fighters to some, obstinate insurgents to others." + icon_state = "splf_suit" + item_state = "splf_suit" + /obj/item/clothing/head/helmet/space/void/coalition/gadpathur name = "coalition vulture-GP voidsuit helmet" desc = "A helmet resembling an avian. This one has been modified for usage with Gadpathur's navy." diff --git a/html/changelogs/hazelmouse-solresprite.yml b/html/changelogs/hazelmouse-solresprite.yml new file mode 100644 index 00000000000..900207517aa --- /dev/null +++ b/html/changelogs/hazelmouse-solresprite.yml @@ -0,0 +1,58 @@ +################################ +# 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 +# - (fixes bugs) +# wip +# - (work in progress) +# qol +# - (quality of life) +# soundadd +# - (adds a sound) +# sounddel +# - (removes a sound) +# rscadd +# - (adds a feature) +# rscdel +# - (removes a feature) +# imageadd +# - (adds an image or sprite) +# imagedel +# - (removes an image or sprite) +# spellcheck +# - (fixes spelling or grammar) +# experiment +# - (experimental change) +# balance +# - (balance changes) +# code_imp +# - (misc internal code change) +# refactor +# - (refactors code) +# config +# - (makes a change to the config files) +# admin +# - (makes changes to administrator tools) +# server +# - (miscellaneous changes to server) +################################# + +# Your name. +author: hazelmouse + +# 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, this gets changed to [] after reading. Just remove the brackets when you add new shit. +# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Introduces new sprites for the Gargoyle voidsuit and its SFA and SSMD variants, including an additional variant for the SPLF. Other Gargoyle variants still in the codebase, including the SRF suits, are unchanged." diff --git a/icons/obj/clothing/voidsuit/sol.dmi b/icons/obj/clothing/voidsuit/sol.dmi index f5a97f9a627..69d05364090 100644 Binary files a/icons/obj/clothing/voidsuit/sol.dmi and b/icons/obj/clothing/voidsuit/sol.dmi differ