mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-24 00:51:46 +00:00
108 lines
3.6 KiB
Plaintext
108 lines
3.6 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_pack/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_pack/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/weapon
|
|
containername = "Special Ops crate"
|
|
contraband = 1
|
|
|
|
/datum/supply_pack/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/unathi
|
|
containername = "Moghes imports crate"
|
|
contraband = 1
|
|
|
|
/datum/supply_pack/munitions/bolt_rifles_militia
|
|
name = "Weapon - Surplus militia rifles"
|
|
contains = list(
|
|
/obj/item/weapon/gun/projectile/shotgun/pump/rifle = 3,
|
|
/obj/item/ammo_magazine/clip/c762 = 6
|
|
)
|
|
cost = 50
|
|
contraband = 1
|
|
containertype = /obj/structure/closet/crate/hedberg
|
|
containername = "Ballistic weapons crate"
|
|
|
|
/datum/supply_pack/randomised/misc/telecrate //you get something awesome, a couple of decent things, and a few weak/filler things
|
|
name = "ERR_NULL_ENTRY" //null crate! also dream maker is hell,
|
|
num_contained = 1
|
|
contains = list(
|
|
list( //the operator,
|
|
/obj/item/weapon/gun/projectile/shotgun/pump/combat,
|
|
/obj/item/clothing/suit/storage/vest/heavy/merc,
|
|
/obj/item/clothing/glasses/night,
|
|
/obj/item/weapon/storage/box/anti_photons,
|
|
/obj/item/ammo_magazine/clip/c12g/pellet,
|
|
/obj/item/ammo_magazine/clip/c12g
|
|
),
|
|
list( //the doc,
|
|
/obj/item/weapon/storage/firstaid/combat,
|
|
/obj/item/weapon/gun/projectile/dartgun,
|
|
/obj/item/weapon/reagent_containers/hypospray,
|
|
/obj/item/weapon/reagent_containers/glass/bottle/chloralhydrate,
|
|
/obj/item/weapon/reagent_containers/glass/bottle/cyanide,
|
|
/obj/item/ammo_magazine/chemdart
|
|
),
|
|
list( //the sapper,
|
|
/obj/item/weapon/melee/energy/sword/ionic_rapier,
|
|
/obj/item/weapon/storage/box/syndie_kit/space, //doesn't matter what species you are,
|
|
/obj/item/weapon/storage/box/syndie_kit/demolitions,
|
|
/obj/item/device/multitool/ai_detector,
|
|
/obj/item/weapon/plastique,
|
|
/obj/item/weapon/storage/toolbox/syndicate/powertools
|
|
),
|
|
list( //the infiltrator,
|
|
/obj/item/weapon/gun/projectile/silenced,
|
|
/obj/item/device/chameleon,
|
|
/obj/item/weapon/storage/box/syndie_kit/chameleon,
|
|
/obj/item/device/encryptionkey/syndicate,
|
|
/obj/item/weapon/card/id/syndicate,
|
|
/obj/item/clothing/mask/gas/voice,
|
|
/obj/item/weapon/makeover
|
|
),
|
|
list( //the professional,
|
|
/obj/item/weapon/gun/projectile/silenced,
|
|
/obj/item/weapon/gun/energy/ionrifle/pistol,
|
|
/obj/item/clothing/glasses/thermal/syndi,
|
|
/obj/item/weapon/card/emag,
|
|
/obj/item/ammo_magazine/m45/ap,
|
|
/obj/item/weapon/material/knife/tacknife/combatknife,
|
|
/obj/item/clothing/mask/balaclava
|
|
)
|
|
)
|
|
cost = 250 //more than a hat crate!,
|
|
contraband = 1
|
|
containertype = /obj/structure/closet/crate/large
|
|
containername = "Suspicious crate"
|