mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2026-01-02 21:43:22 +00:00
- Added, weapons crate for explorers that has bolt action rifles, weapon powercell crate (security access only). - Touchy of all the munition and security supply pack names so it's easier to tell what crate contains weapons, armor, and or gear. - Slight adjustment of certain security and weapon crates. Moving some guns out of some crates, splitting some crates up (automatic weapons crate is two crates now) and changing the type of crate stuff comes in. - Holoplant fix, now properly comes in a crate instead of being shipped without a protective box.
80 lines
2.3 KiB
Plaintext
80 lines
2.3 KiB
Plaintext
/*
|
|
* Here is where any supply packs
|
|
* that don't belong elsewhere live.
|
|
*/
|
|
|
|
|
|
/datum/supply_packs/misc
|
|
group = "Miscellaneous"
|
|
|
|
/datum/supply_packs/randomised/misc
|
|
group = "Miscellaneous"
|
|
|
|
|
|
/datum/supply_packs/randomised/misc/card_packs
|
|
num_contained = 5
|
|
contains = list(
|
|
/obj/item/weapon/pack/cardemon,
|
|
/obj/item/weapon/pack/spaceball,
|
|
/obj/item/weapon/deck/holder
|
|
)
|
|
name = "Trading Card Crate"
|
|
cost = 10
|
|
containertype = /obj/structure/closet/crate
|
|
containername = "cards crate"
|
|
|
|
/datum/supply_packs/misc/eftpos
|
|
contains = list(/obj/item/device/eftpos)
|
|
name = "EFTPOS scanner"
|
|
cost = 10
|
|
containertype = /obj/structure/closet/crate
|
|
containername = "EFTPOS crate"
|
|
|
|
/datum/supply_packs/misc/chaplaingear
|
|
name = "Chaplain equipment"
|
|
contains = list(
|
|
/obj/item/clothing/under/rank/chaplain,
|
|
/obj/item/clothing/shoes/black,
|
|
/obj/item/clothing/suit/nun,
|
|
/obj/item/clothing/head/nun_hood,
|
|
/obj/item/clothing/suit/storage/hooded/chaplain_hoodie,
|
|
/obj/item/clothing/suit/storage/hooded/chaplain_hoodie/whiteout,
|
|
/obj/item/clothing/suit/holidaypriest,
|
|
/obj/item/clothing/under/wedding/bride_white,
|
|
/obj/item/weapon/storage/backpack/cultpack,
|
|
/obj/item/weapon/storage/fancy/candle_box = 3
|
|
)
|
|
cost = 10
|
|
containertype = "/obj/structure/closet/crate"
|
|
containername = "Chaplain equipment crate"
|
|
|
|
/datum/supply_packs/misc/hoverpod
|
|
name = "Hoverpod Shipment"
|
|
contains = list()
|
|
cost = 80
|
|
containertype = /obj/structure/largecrate/hoverpod
|
|
containername = "Hoverpod Crate"
|
|
|
|
/datum/supply_packs/randomised/misc/webbing
|
|
name = "Webbing crate"
|
|
num_contained = 4
|
|
contains = list(
|
|
/obj/item/clothing/accessory/storage/black_vest,
|
|
/obj/item/clothing/accessory/storage/brown_vest,
|
|
/obj/item/clothing/accessory/storage/white_vest,
|
|
/obj/item/clothing/accessory/storage/black_drop_pouches,
|
|
/obj/item/clothing/accessory/storage/brown_drop_pouches,
|
|
/obj/item/clothing/accessory/storage/white_drop_pouches,
|
|
/obj/item/clothing/accessory/storage/webbing
|
|
)
|
|
cost = 10
|
|
containertype = "/obj/structure/closet/crate"
|
|
containername = "Webbing crate"
|
|
|
|
/datum/supply_packs/misc/holoplant
|
|
name = "Holoplant Pot"
|
|
contains = list(/obj/machinery/holoplant/shipped)
|
|
cost = 15
|
|
containertype = /obj/structure/closet/crate
|
|
containername = "Holoplant crate"
|