mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 02:09:41 +00:00
36 lines
1.1 KiB
Plaintext
36 lines
1.1 KiB
Plaintext
/*
|
|
* Here is where any supply packs
|
|
* related to sc weapons live.
|
|
*/
|
|
|
|
/datum/supply_pack/munitions/bolt_rifles_explorer
|
|
name = "Weapons - Surplus Hunting Rifles"
|
|
contains = list(
|
|
/obj/item/weapon/gun/projectile/shotgun/pump/rifle = 2,
|
|
/obj/item/ammo_magazine/clip/c762/hunter = 6
|
|
)
|
|
cost = 50
|
|
containertype = /obj/structure/closet/crate/secure/hedberg
|
|
containername = "Hunting Rifle crate"
|
|
access = access_explorer //CHOMP keep explo
|
|
|
|
/datum/supply_pack/munitions/phase_carbines_explorer
|
|
name = "Weapons - Surplus Phase Carbines"
|
|
contains = list(
|
|
/obj/item/weapon/gun/energy/locked/phasegun = 2,
|
|
)
|
|
cost = 25
|
|
containertype = /obj/structure/closet/crate/secure/ward
|
|
containername = "Phase Carbine crate"
|
|
access = access_explorer //CHOMP keep explo
|
|
|
|
/datum/supply_pack/munitions/phase_rifles_explorer
|
|
name = "Weapons - Phase Rifles"
|
|
contains = list(
|
|
/obj/item/weapon/gun/energy/locked/phasegun/rifle = 2,
|
|
)
|
|
cost = 50
|
|
containertype = /obj/structure/closet/crate/secure/ward
|
|
containername = "Phase Rifle crate"
|
|
access = access_explorer //CHOMP keep explo
|