Skip to content

Commit

Permalink
augh
Browse files Browse the repository at this point in the history
  • Loading branch information
toolmind committed Nov 17, 2023
1 parent 5352fd3 commit 61a2b0f
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 2 deletions.
18 changes: 18 additions & 0 deletions code/modules/clothing/suits/labcoat.dm
Original file line number Diff line number Diff line change
Expand Up @@ -299,3 +299,21 @@
name = "liaison's winter coat"
desc = "A Weyland-Yutani winter coat. Only the best comfort for the liaison in a cold environment."
icon_state = "snowsuit_liaison"

/obj/item/clothing/suit/storage/snow_suit/liaison/modified
name = "modified liaison's winter coat"
desc = "A Weyland-Yutani winter coat. This one has been modified to holster guns and other objects. Only the best comfort and utility for the liaison surviving in a cold, hostile environment."
allowed = list(
/obj/item/weapon/gun,
/obj/item/tank/emergency_oxygen,
/obj/item/device/flashlight,
/obj/item/ammo_magazine,
/obj/item/explosive/grenade,
/obj/item/device/binoculars,
/obj/item/attachable/bayonet,
/obj/item/storage/large_holster/machete,
/obj/item/weapon/baseballbat,
/obj/item/weapon/baseballbat/metal,
/obj/item/device/motiondetector,
/obj/item/device/walkman,
)
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/datum/equipment_preset/survivor/engineer/soro
name = "Survivor - Sorokyne Strata Political Prisioner"
assignment = "Sorokyne Strata Political Prisioner"
name = "Survivor - Sorokyne Strata Political Prisoner"
assignment = "Sorokyne Strata Political Prisoner"

/datum/equipment_preset/survivor/engineer/soro/load_gear(mob/living/carbon/human/new_human)
new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/UPP(new_human), WEAR_BODY)
Expand Down Expand Up @@ -58,3 +58,17 @@
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/snow_suit/survivor(new_human), WEAR_JACKET)
new_human.equip_to_slot_or_del(new /obj/item/clothing/head/ushanka(new_human), WEAR_HEAD)
..()

/datum/equipment_preset/survivor/corporate/soro
name = "Survivor - Sorokyne Strata Corporate Liaison"
assignment = "Sorokyne Strata Corporate Liaison"

/datum/equipment_preset/survivor/corporate/soro/load_gear(mob/living/carbon/human/new_human)
new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/charcoal(new_human), WEAR_BODY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/head/ushanka(new_human), WEAR_HEAD)
new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf(new_human), WEAR_FACE)
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/snow_suit/liaison/modified(new_human), WEAR_JACKET)
new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/lockable/liaison, WEAR_BACK)
new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET)
..()

1 change: 1 addition & 0 deletions maps/sorokyne_strata.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"/datum/equipment_preset/survivor/scientist/soro",
"/datum/equipment_preset/survivor/doctor/soro",
"/datum/equipment_preset/survivor/engineer/soro",
"/datum/equipment_preset/survivor/corporate/soro",
"/datum/equipment_preset/survivor/security/soro",
"/datum/equipment_preset/survivor/interstellar_human_rights_observer/soro"
],
Expand Down

0 comments on commit 61a2b0f

Please sign in to comment.