meep you owe me (#17708)

This commit is contained in:
RustingWithYou
2023-11-01 15:12:07 +00:00
committed by GitHub
parent b00aa701f7
commit 141b96812a
2 changed files with 49 additions and 5 deletions
@@ -71,9 +71,14 @@
name = "Nralakk Consular Officer"
uniform = /obj/item/clothing/under/skrell
backpack_contents = list(
/obj/item/device/camera = 1
)
/datum/outfit/job/representative/consular/nralakk/post_equip(mob/living/carbon/human/H, visualsOnly = FALSE)
if(H)
if(isskrell(H))
H.equip_to_slot_or_del(new /obj/item/gun/energy/psipistol(H), slot_belt)
if(isvaurca(H)) // there should be a system for this but for now this will have to do i guess
H.equip_to_slot_or_del(new /obj/item/clothing/under/gearharness(H), slot_w_uniform)
H.equip_to_slot_or_del(new /obj/item/clothing/head/vaurca_breeder/nralakk(H), slot_head)
@@ -81,11 +86,9 @@
H.equip_to_slot_or_del(new /obj/item/clothing/mask/gas/vaurca/filter(H), slot_wear_mask)
H.equip_to_slot_or_del(new /obj/item/clothing/suit/vaurca/breeder/nralakk(H), slot_wear_suit)
H.equip_to_slot_or_del(new /obj/item/storage/backpack/typec/cthur(H), slot_back)
else if(isskrell(H))
backpack_contents = list(
/obj/item/device/camera = 1,
/obj/item/gun/energy/psipistol = 1
)
H.equip_to_slot_or_del(new /obj/item/gun/energy/pistol(H), slot_belt)
else
H.equip_to_slot_or_del(new /obj/item/gun/energy/pistol(H), slot_belt)
if(!visualsOnly)
addtimer(CALLBACK(src, PROC_REF(send_representative_mission), H), 5 MINUTES)
return TRUE