mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2026-08-31 09:08:56 +01:00
55 lines
1.5 KiB
Plaintext
55 lines
1.5 KiB
Plaintext
/*
|
|
* Here is where any supply packs that may or may not be legal
|
|
* and require modification of the supply controller live.
|
|
*/
|
|
|
|
|
|
/datum/supply_packs/randomised/contraband
|
|
num_contained = 5
|
|
contains = list(
|
|
/obj/item/seeds/bloodtomatoseed,
|
|
/obj/item/weapon/storage/pill_bottle/zoom,
|
|
/obj/item/weapon/storage/pill_bottle/happy,
|
|
/obj/item/weapon/reagent_containers/food/drinks/bottle/pwine
|
|
)
|
|
|
|
name = "Contraband crate"
|
|
cost = 25
|
|
containertype = /obj/structure/closet/crate
|
|
containername = "Unlabeled crate"
|
|
contraband = 1
|
|
group = "Supplies"
|
|
|
|
/datum/supply_packs/security/specialops
|
|
name = "Special Ops supplies"
|
|
contains = list(
|
|
/obj/item/weapon/storage/box/emps,
|
|
/obj/item/weapon/grenade/smokebomb = 4,
|
|
/obj/item/weapon/grenade/chem_grenade/incendiary
|
|
)
|
|
cost = 25
|
|
containertype = /obj/structure/closet/crate
|
|
containername = "Special Ops crate"
|
|
contraband = 1
|
|
|
|
/datum/supply_packs/supply/moghes
|
|
name = "Moghes imports"
|
|
contains = list(
|
|
/obj/item/weapon/reagent_containers/food/drinks/bottle/redeemersbrew = 2,
|
|
/obj/item/weapon/reagent_containers/food/snacks/unajerky = 4
|
|
)
|
|
cost = 25
|
|
containertype = /obj/structure/closet/crate
|
|
containername = "Moghes imports crate"
|
|
contraband = 1
|
|
|
|
/datum/supply_packs/security/bolt_rifles_mosin
|
|
name = "Surplus militia rifles"
|
|
contains = list(
|
|
/obj/item/weapon/gun/projectile/shotgun/pump/rifle/mosin = 3,
|
|
/obj/item/ammo_magazine/clip/a762 = 6
|
|
)
|
|
cost = 50
|
|
contraband = 1
|
|
containertype = /obj/structure/closet/crate/secure/weapon
|
|
containername = "Weapons crate" |