From 7dabf570409c7c2d69ae638f671a67e3488c7ce9 Mon Sep 17 00:00:00 2001 From: Novacat <35587478+Novacat@users.noreply.github.com> Date: Sun, 11 Aug 2024 15:21:45 -0400 Subject: [PATCH] Away Team/Pilot Supply Crates (#16178) - Adds some recently introduced stuff to the pilot/away team supply crates - Adds an Away Team Leader supply crate - Removes a duplicated bomber jacket in the pilot crate --- code/datums/supplypacks/supply.dm | 32 ++++++++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) diff --git a/code/datums/supplypacks/supply.dm b/code/datums/supplypacks/supply.dm index 02215b03f5c..96d0d282749 100644 --- a/code/datums/supplypacks/supply.dm +++ b/code/datums/supplypacks/supply.dm @@ -176,6 +176,7 @@ /obj/item/weapon/material/knife/tacknife/survival, /obj/item/weapon/material/knife/machete, /obj/item/clothing/accessory/holster/machete, + /obj/item/clothing/gloves/watch/survival ) cost=25 containertype = /obj/structure/closet/crate/secure/xion @@ -199,9 +200,38 @@ /obj/item/weapon/material/knife/tacknife/survival, /obj/item/clothing/head/pilot_vr, /obj/item/clothing/under/rank/pilot1, - /obj/item/clothing/suit/storage/toggle/bomber/pilot + /obj/item/weapon/gun/energy/gun/protector/pilotgun/locked, + /obj/item/clothing/gloves/watch/survival ) cost=20 containertype = /obj/structure/closet/crate/secure/xion containername = "Pilot equipment" access = access_pilot + +/datum/supply_pack/pathfindergear + name="Away Team Leader gear" + contains = list ( + /obj/item/device/cataloguer/compact/pathfinder, + /obj/item/device/geiger, + /obj/item/clothing/suit/storage/hooded/explorer, + /obj/item/device/flashlight/glowstick, + /obj/item/device/flashlight, + /obj/item/stack/marker_beacon/thirty, + /obj/item/weapon/storage/belt/explorer/pathfinder, + /obj/item/clothing/mask/gas/explorer, + /obj/item/weapon/cartridge/explorer, + /obj/item/device/gps/explorer, + /obj/item/clothing/under/explorer, + /obj/item/device/radio/headset/pathfinder, + /obj/item/clothing/shoes/boots/winter/explorer, + /obj/item/weapon/material/knife/tacknife/survival, + /obj/item/weapon/material/knife/machete/deluxe, + /obj/item/clothing/accessory/holster/machete, + /obj/item/weapon/storage/box/explorerkeys, + /obj/item/device/mapping_unit, + /obj/item/clothing/gloves/watch/survival + ) + cost=75 + containertype = /obj/structure/closet/crate/secure/xion + containername = "Away Team Leader equipment" + access = list(access_explorer)