From 4fe87fbe43a0d23c684d6974ace854e0c29e60a0 Mon Sep 17 00:00:00 2001 From: ShiftyRail <31417754+ShiftyRail@users.noreply.github.com> Date: Sat, 16 Oct 2021 08:42:47 +0100 Subject: [PATCH] Skeleton traders will no longer spawn naked (#31089) --- code/datums/outfit/trader.dm | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/code/datums/outfit/trader.dm b/code/datums/outfit/trader.dm index a762953a3f6..180c0b72aff 100644 --- a/code/datums/outfit/trader.dm +++ b/code/datums/outfit/trader.dm @@ -29,9 +29,23 @@ slot_wear_suit_str = /obj/item/clothing/suit/space/vox/civ/trader/flex, slot_head_str = /obj/item/clothing/head/helmet/space/vox/civ/trader/flex, slot_wear_mask_str = /obj/item/clothing/mask/breath, + ), + /datum/species/skellington/skelevox = list( + slot_w_uniform_str =/obj/item/clothing/under/vox/vox_robes, + slot_shoes_str = /obj/item/clothing/shoes/magboots/vox, + slot_belt_str = /obj/item/device/radio, + slot_wear_suit_str = /obj/item/clothing/suit/space/vox/civ/trader, + slot_head_str = /obj/item/clothing/head/helmet/space/vox/civ/trader, + slot_wear_mask_str = /obj/item/clothing/mask/breath/vox, ) + ) + equip_survival_gear = list( + /datum/species/vox = /obj/item/weapon/storage/box/survival/engineer/vox, + ) + + items_to_collect = list( /obj/item/weapon/storage/wallet/trader = SURVIVAL_BOX, )