forked from Baystation12/Baystation12
-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
170 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/datum/gear/uniform/pmc //Some of that is duplicate of standart Torch uniforms selection. But who cares. | ||
display_name = "PMC uniform selection" | ||
allowed_roles = list(/datum/job/detective, /datum/job/officer, /datum/job/hos) | ||
path = /obj/item/clothing/under | ||
|
||
/datum/gear/uniform/pmc/New() | ||
..() | ||
var/pmc = list() | ||
pmc["SAARE utility uniform"]= /obj/item/clothing/under/saare | ||
pmc["SAARE combat uniform"]= /obj/item/clothing/under/rank/security/saarecombat | ||
pmc["PCRC utility uniform"] = /obj/item/clothing/under/pcrc | ||
pmc["PCRC formal uniform"] = /obj/item/clothing/under/pcrcsuit | ||
pmc["SCP utility uniform"] = /obj/item/clothing/under/scp_uniform | ||
pmc["ZPCI utility uniform"] = /obj/item/clothing/under/zpci_uniform | ||
gear_tweaks += new/datum/gear_tweak/path(pmc) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/obj/item/clothing/under/scp_uniform | ||
name = "SCP guard uniform" | ||
desc = "It's dark grey uniform made of a slightly sturdier material than standard jumpsuits, to allow for good protection.\nThis uniform has SCP tags on shoulders, terran organization of NT asset protection." | ||
icon = 'mods/loadout_items/icons/obj_under.dmi' | ||
item_icons = list(slot_w_uniform_str = 'mods/loadout_items/icons/onmob_under.dmi') | ||
icon_state = "scp_uniform" | ||
item_state = "scp_uniform" | ||
worn_state = "scp_uniform" | ||
armor = list(melee = 10, bullet = 5, laser = 5,energy = 0, bomb = 0, bio = 0, rad = 0) | ||
siemens_coefficient = 0.9 | ||
|
||
/obj/item/clothing/under/zpci_uniform | ||
name = "ZPCI uniform" | ||
desc = "This is a standard model of the ZPCI uniform." | ||
icon = 'mods/loadout_items/icons/obj_under.dmi' | ||
item_icons = list(slot_w_uniform_str = 'mods/loadout_items/icons/onmob_under.dmi') | ||
icon_state = "zpci_uniform" | ||
item_state = "zpci_uniform" | ||
armor = list(melee = 10, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0) //it's security uniform's stats | ||
siemens_coefficient = 0.9 | ||
|
||
/obj/item/clothing/under/rank/security/saarecombat | ||
name = "\improper SAARE combat uniform" | ||
desc = "Tight-fitting dark uniform with a bright-green SAARE patch on the shoulder. The perfect outfit in which to kick doors out and teeth in." | ||
icon = 'mods/loadout_items/icons/obj_under.dmi' | ||
item_icons = list(slot_w_uniform_str = 'mods/loadout_items/icons/onmob_under.dmi') | ||
icon_state = "saarecombat" | ||
item_state = "saarecombat" | ||
worn_state = "saarecombat" | ||
gender_icons = 1 | ||
|
||
// SIERRA TO DO: Cleanup icons from unused loadout |
Binary file not shown.
Binary file not shown.