Skip to content
This repository has been archived by the owner on Apr 24, 2022. It is now read-only.

Commit

Permalink
Loadout Menu Fix/Update (#475)
Browse files Browse the repository at this point in the history
* Loadout Options/Fix

Fixes some loadout options, adds some others. More customization.

* Scribe Update/Fieldscribe Outfit return

Added options for scribes. Can start w/ a coat/outfit instead of grabbing the one of two available in R&D. Made the fieldscribe outfit on par with the regular one so its more of a cosmetic choice.
  • Loading branch information
Jawnner authored Dec 1, 2021
1 parent 63ef76e commit 1844cec
Show file tree
Hide file tree
Showing 7 changed files with 65 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/clothing/suits/labcoat.dm
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@

/obj/item/clothing/suit/toggle/labcoat/fieldscribe
name = "fieldscribe suit"
desc = "(II) A suit that protects against the weather, and looks stylish, but not much else."
desc = "(IV) A heavy-duty coat and chestrig fitted with tons of pockets. Ballistic weave and ceramic inserts are included to substantially increase Field Scribe survival rates."
icon_state = "fieldscribe"
armor = list("tier" = 2, "energy" = 0, "bomb" = 16, "bio" = 0, "rad" = 0, "fire" = 10, "acid" = 0)
armor = list("tier" = 4, "energy" = 40, "bomb" = 50, "bio" = 60, "rad" = 10, "fire" = 60, "acid" = 20)

/obj/item/clothing/suit/toggle/labcoat/scribecoat
name = "fieldscribe coat"
Expand Down
4 changes: 4 additions & 0 deletions modular_citadel/code/modules/client/loadout/glasses.dm
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@
name = "Jamjar glasses"
path = /obj/item/clothing/glasses/regular/jamjar

/datum/gear/glasses/circle
name = "Circle glasses"
path = /obj/item/clothing/glasses/regular/circle

/datum/gear/glasses/monocle
name = "Monocle"
path = /obj/item/clothing/glasses/monocle
Expand Down
5 changes: 5 additions & 0 deletions modular_citadel/code/modules/client/loadout/gloves.dm
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,8 @@
name = "Midnight gloves"
path = /obj/item/clothing/gloves/evening/black
cost = 2

/datum/gear/gloves/plated
name = "plated gloves"
path = /obj/item/clothing/gloves/legion/plated
cost = 2
5 changes: 5 additions & 0 deletions modular_citadel/code/modules/client/loadout/head.dm
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@
path = /obj/item/clothing/head/soft/f13/utility/tan
cost = 2

/datum/gear/head/vaquerohat
name = "vaquero hat"
path = /obj/item/clothing/head/helmet/f13/vaquerohat
cost = 2

/datum/gear/head/pirate
name = "pirate hat"
path = /obj/item/clothing/head/pirate
Expand Down
4 changes: 4 additions & 0 deletions modular_citadel/code/modules/client/loadout/neck.dm
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@
name = "simple apron"
path = /obj/item/clothing/neck/apron/labor

/datum/gear/neck/apron
name = "stethoscope"
path = /obj/item/clothing/neck/stethoscope

/datum/gear/neck/blacktie
name = "black tie"
subcategory = LOADOUT_SUBCATEGORY_NECK_TIE
Expand Down
23 changes: 23 additions & 0 deletions modular_citadel/code/modules/client/loadout/shoes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -100,4 +100,27 @@

/datum/gear/shoes/plated
name = "plated war boots"
path = /obj/item/clothing/shoes/f13/military/plated
cost = 2

/datum/gear/shoes/patrol_boots
name = "NCR patrol boots"
path = /obj/item/clothing/shoes/f13/military/ncr
cost = 2
restricted_desc = "NCR"
restricted_roles = list("NCR Captain",
"NCR Lieutenant",
"NCR Veteran Ranger",
"NCR Ranger",
"NCR Medical Officer",
"NCR Sergeant First Class",
"NCR Lieutenant",
"NCR Heavy Trooper",
"NCR Sergeant",
"NCR Corporal",
"NCR Combat Engineer",
"NCR Combat Medic",
"NCR Trooper",
"NCR Rear Echelon",
"NCR Off-Duty"
)
22 changes: 22 additions & 0 deletions modular_citadel/code/modules/client/loadout/suit.dm
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,28 @@
path = /obj/item/clothing/suit/flakjack
subcategory = LOADOUT_SUBCATEGORY_SUIT_JACKETS
cost = 3

/datum/gear/suit/fieldscribe
name = "Fieldscribe suit"
path = /obj/item/clothing/suit/toggle/labcoat/fieldscribe
subcategory = LOADOUT_SUBCATEGORY_SUIT_JOBS
cost = 5
restricted_desc = "Scribes"
restricted_roles = list("Head Scribe",
"Senior Scribe",
"Scribe",
)

/datum/gear/suit/scribecoat
name = "Fieldscribe coat"
path = /obj/item/clothing/suit/toggle/labcoat/scribecoat
subcategory = LOADOUT_SUBCATEGORY_SUIT_JOBS
cost = 5
restricted_desc = "Scribes"
restricted_roles = list("Head Scribe",
"Senior Scribe",
"Scribe",
)

/datum/gear/suit/town
name = "Town Trenchcoat"
Expand Down

0 comments on commit 1844cec

Please sign in to comment.