Wildlands flagpatches (#17135)

* Wildlands Flagpatches

Adds flagpatches for each of the Wildlands Successor states to the game, with the FSF, Pact, SFA, SPG and SSMD ones being selectable from the PMCG loadout (For use by Wildlands Squadron members).

Sprites by Dessysalta, who also gets credit for the idea. I'm just a code monkey.

* Never Forget...

* Grammar sucks

* Dessysalta's Proof Read

Thank you!

* Extra tab

* Update code/modules/clothing/suits/modular_armor.dm

Co-authored-by: Matt Atlas <mattiathebest2000@hotmail.it>

* Update code/modules/clothing/suits/modular_armor.dm

Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com>

* Apply suggestions from code review

Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com>

---------

Co-authored-by: Matt Atlas <mattiathebest2000@hotmail.it>
Co-authored-by: SleepyGemmy <99297919+SleepyGemmy@users.noreply.github.com>
This commit is contained in:
Sparky
2023-09-01 19:00:42 +01:00
committed by GitHub
parent 7bcc1c44c3
commit 36a32010a5
4 changed files with 136 additions and 0 deletions

View File

@@ -440,6 +440,23 @@
epmc_uniform_fr_med["Ve'katak Phalanx first responder uniform"] = /obj/item/clothing/under/rank/medical/first_responder/pmc/vekatak_phalanx
gear_tweaks += new /datum/gear_tweak/path(epmc_uniform_fr_med)
/datum/gear/faction/wildlands_flagpatches
display_name = "wildlands flagpatch selection"
description = "A selection of flagpatches from the now defunct groups of the Human Wildlands."
path = /obj/item/clothing/accessory/flagpatch/fsf
slot = slot_tie
faction = "Private Military Contracting Group"
flags = null
/datum/gear/faction/wildlands_flagpatches/New()
..()
var/list/wildlands_flag_patches = list()
wildlands_flag_patches["flagpatch, free solarian fleets"] = /obj/item/clothing/accessory/flagpatch/fsf
wildlands_flag_patches["flagpatch, middle ring shield pact"] = /obj/item/clothing/accessory/flagpatch/pact
wildlands_flag_patches["flagpatch, solarian provisional government"] = /obj/item/clothing/accessory/flagpatch/spg
wildlands_flag_patches["flagpatch, southern solarian military district"] = /obj/item/clothing/accessory/flagpatch/ssmd
gear_tweaks += new /datum/gear_tweak/path(wildlands_flag_patches)
//Zeng-Hu
/datum/gear/faction/zenghu_beret
display_name = "zeng-hu headwear selection"