mirror of
https://github.com/CHOMPstation/CHOMPstation.git
synced 2026-08-25 13:06:38 +01:00
* Pathfinder Update - Implimented Pathfinder, Command Exploration role - Added Deluxe Machete for Pathfinders (just a cosmetic reskin) - Added Pathfinder's office, between expedition prep and breifing - Expanded size of expedition shuttle - Ported Pilot and Explorer voidsuit from Baystation - Restored the old air tank on the expedition shuttle - Added a couple starter shelter capsules to exploration - The expedition shuttle now has toggled blast doors to cover the windows - Increases pay of pilots, SARs, and Explorers - Adds box of volunteer headsets to the Pathfinder's locker * Polaris Merge Compatability * Forgot some things * Moves PF from command to science * Requested changes Part 1 * Travis and Access Fix * Requested changes Part 2 * Resetting Maps Part 1 * Resetting Maps Part 2 * Replaces PF office airlock * Requested Changes Part 3 * Remove gateway access * Changes Locker/Door Access Req * Removes blast doors * Pilot voidsuit crate cost tweak
99 lines
3.3 KiB
Plaintext
99 lines
3.3 KiB
Plaintext
/datum/supply_packs/voidsuits/atmos
|
|
contains = list(
|
|
/obj/item/clothing/suit/space/void/atmos = 3,
|
|
/obj/item/clothing/head/helmet/space/void/atmos = 3,
|
|
/obj/item/clothing/mask/breath = 3,
|
|
/obj/item/clothing/shoes/magboots = 3,
|
|
/obj/item/weapon/tank/oxygen = 3,
|
|
)
|
|
|
|
/datum/supply_packs/voidsuits/engineering
|
|
contains = list(
|
|
/obj/item/clothing/suit/space/void/engineering = 3,
|
|
/obj/item/clothing/head/helmet/space/void/engineering = 3,
|
|
/obj/item/clothing/mask/breath = 3,
|
|
/obj/item/clothing/shoes/magboots = 3,
|
|
/obj/item/weapon/tank/oxygen = 3
|
|
)
|
|
|
|
/datum/supply_packs/voidsuits/medical
|
|
contains = list(
|
|
/obj/item/clothing/suit/space/void/medical = 3,
|
|
/obj/item/clothing/head/helmet/space/void/medical = 3,
|
|
/obj/item/clothing/mask/breath = 3,
|
|
/obj/item/clothing/shoes/magboots = 3,
|
|
/obj/item/weapon/tank/oxygen = 3
|
|
)
|
|
|
|
/datum/supply_packs/voidsuits/medical/alt
|
|
contains = list(
|
|
/obj/item/clothing/suit/space/void/medical/alt = 3,
|
|
/obj/item/clothing/head/helmet/space/void/medical/alt = 3,
|
|
/obj/item/clothing/mask/breath = 3,
|
|
/obj/item/clothing/shoes/magboots = 3,
|
|
/obj/item/weapon/tank/oxygen = 3
|
|
)
|
|
|
|
/datum/supply_packs/voidsuits/security
|
|
contains = list(
|
|
/obj/item/clothing/suit/space/void/security = 3,
|
|
/obj/item/clothing/head/helmet/space/void/security = 3,
|
|
/obj/item/clothing/mask/breath = 3,
|
|
/obj/item/clothing/shoes/magboots = 3,
|
|
/obj/item/weapon/tank/oxygen = 3
|
|
)
|
|
|
|
/datum/supply_packs/voidsuits/security/crowd
|
|
contains = list(
|
|
/obj/item/clothing/suit/space/void/security/riot = 3,
|
|
/obj/item/clothing/head/helmet/space/void/security/riot = 3,
|
|
/obj/item/clothing/mask/breath = 3,
|
|
/obj/item/clothing/shoes/magboots = 3,
|
|
/obj/item/weapon/tank/oxygen = 3
|
|
)
|
|
|
|
/datum/supply_packs/voidsuits/security/alt
|
|
contains = list(
|
|
/obj/item/clothing/suit/space/void/security/alt = 3,
|
|
/obj/item/clothing/head/helmet/space/void/security/alt = 3,
|
|
/obj/item/clothing/mask/breath = 3,
|
|
/obj/item/clothing/shoes/magboots = 3,
|
|
/obj/item/weapon/tank/oxygen = 3
|
|
)
|
|
|
|
/datum/supply_packs/voidsuits/supply
|
|
name = "Mining voidsuits"
|
|
contains = list(
|
|
/obj/item/clothing/suit/space/void/mining = 3,
|
|
/obj/item/clothing/head/helmet/space/void/mining = 3,
|
|
/obj/item/clothing/mask/breath = 3,
|
|
/obj/item/weapon/tank/oxygen = 3
|
|
)
|
|
|
|
/datum/supply_packs/voidsuits/explorer
|
|
name = "Exploration voidsuits"
|
|
contains = list(
|
|
/obj/item/clothing/suit/space/void/exploration = 3,
|
|
/obj/item/clothing/head/helmet/space/void/exploration = 3,
|
|
/obj/item/clothing/mask/breath = 3,
|
|
/obj/item/clothing/shoes/magboots = 3,
|
|
/obj/item/weapon/tank/oxygen = 3
|
|
)
|
|
cost = 50
|
|
containertype = "/obj/structure/closet/crate/secure"
|
|
containername = "Exploration voidsuit crate"
|
|
access = access_explorer
|
|
|
|
/datum/supply_packs/voidsuits/pilot
|
|
name = "Pilot voidsuits"
|
|
contains = list(
|
|
/obj/item/clothing/suit/space/void/pilot = 1,
|
|
/obj/item/clothing/head/helmet/space/void/pilot = 1,
|
|
/obj/item/clothing/mask/breath = 1,
|
|
/obj/item/clothing/shoes/magboots = 1,
|
|
/obj/item/weapon/tank/oxygen = 1
|
|
)
|
|
cost = 20
|
|
containertype = "/obj/structure/closet/crate/secure"
|
|
containername = "Pilot voidsuit crate"
|
|
access = access_pilot |