Skip to content

Commit

Permalink
Merge pull request #2655 from Jaggachi/master
Browse files Browse the repository at this point in the history
Jaggachi's electric boogaloo
  • Loading branch information
Tk420634 committed Jul 19, 2023
2 parents b5beb60 + 7a8a08c commit b504418
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 0 deletions.
5 changes: 5 additions & 0 deletions modular_citadel/code/modules/client/loadout/belt_loadout.dm
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,11 @@
name = "army belt"
path = /obj/item/storage/belt/army

/datum/gear/belt/armyold
name = "old style army belt"
path = /obj/item/storage/belt/army/assault/enclave
cost = 2

/datum/gear/belt/army/assault
name = "assault belt"
path = /obj/item/storage/belt/army/assault
Expand Down
19 changes: 19 additions & 0 deletions modular_citadel/code/modules/client/loadout/suit.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1141,6 +1141,25 @@
path = /obj/item/clothing/suit/toggle/labcoat/detvest
subcategory = LOADOUT_SUBCATEGORY_SUIT_JACKETS

//Soviet Gear

/datum/gear/suit/russianjacket
name = "Russian Officer Jacket"
path = /obj/item/clothing/suit/armor/outfit/jacket/navyblue/russian
subcategory = LOADOUT_SUBCATEGORY_SUIT_JACKETS
cost = 1

/datum/gear/suit/sovietjacket
name = "Soviet Officer Jacket"
path = /obj/item/clothing/suit/armor/light/duster/russian_coat
subcategory = LOADOUT_SUBCATEGORY_SUIT_ARMOR
cost = 2

/datum/gear/suit/sovietlightvest
name = "Soviet Vest"
path = /obj/item/clothing/suit/armor/light/vest/russian
subcategory = LOADOUT_SUBCATEGORY_SUIT_ARMOR
cost = 2

// BEGIN_INTERNALS
// END_INTERNALS
Expand Down
13 changes: 13 additions & 0 deletions modular_citadel/code/modules/client/loadout/uniform.dm
Original file line number Diff line number Diff line change
Expand Up @@ -2854,4 +2854,17 @@
path = /obj/item/clothing/under/greek_dress
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_DRESSES

// Soviet Uniforms

/datum/gear/uniform/sovietuniform
name = "Soviet Uniform"
cost = 0
path = /obj/item/clothing/under/costume/soviet
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_UNIFORMS

/datum/gear/uniform/russianuniform
name = "Russian Officers Uniform"
cost = 0
path = /obj/item/clothing/under/costume/russian_officer
subcategory = LOADOUT_SUBCATEGORY_UNIFORM_UNIFORMS

0 comments on commit b504418

Please sign in to comment.