Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds external webbing vest to the IO's vendor as an alternative to the service jacket #4963

Closed
wants to merge 10 commits into from
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_intelligence_officer, list(
list("ARMOR (CHOOSE 1)", 0, null, null, null),
list("XM4 Pattern Intel Armor", 0, /obj/item/clothing/suit/storage/marine/rto/intel, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_MANDATORY),
list("Service Jacket", 0, /obj/item/clothing/suit/storage/jacket/marine/service, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_MANDATORY),
list("Customized External Webbing", 0, /obj/item/clothing/suit/storage/jacket/marine/service/webbing, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_MANDATORY),

list("BACKPACK (CHOOSE 1)", 0, null, null, null),
list("Expedition Pack", 0, /obj/item/storage/backpack/marine/satchel/intel, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_RECOMMENDED),
Expand Down
10 changes: 10 additions & 0 deletions code/modules/clothing/suits/marine_coat.dm
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,16 @@
has_buttons = TRUE
icon_state = "coat_officer"

/obj/item/clothing/suit/storage/jacket/marine/service/webbing
name = "custom external webbing"
desc = "An external webbing vest, designed to be worn over a jumpsuit rather than on. This one has more and larger straps and pouches infused with shards of kevlar for bearing equipment. This offers minimal protection."
icon = 'icons/obj/items/clothing/cm_suits.dmi'
has_buttons = FALSE
icon_state = "coat_ioweb"
initial_icon_state = "coat_ioweb"
flags_atom = NO_SNOW_TYPE
item_state = "webbing"

/obj/item/clothing/suit/storage/jacket/marine/pilot
name = "\improper M70B1 light flak jacket"
desc = "A light flak jacket used by dropship pilots to protect themselves while flying in the cockpit. This specific flak jacket has been designed for style and comfort over protection, and it shows. Don't get hit by any stray bullets!"
Expand Down
Binary file modified icons/mob/humans/onmob/suit_1.dmi
Binary file not shown.
Binary file modified icons/obj/items/clothing/cm_suits.dmi
Binary file not shown.
Loading