Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Restores the Mini E-Gun as orderable, as well as the Kiboko grenade launcher. #6

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions modular_zubbers/code/modules/cargo/packs/goodies.dm
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@
access_view = ACCESS_WEAPONS
contains = list(/obj/item/gun/energy/laser/carbine)

/datum/supply_pack/goody/miniegun_single
name = "Mini E-Gun Single-Pack"
desc = "Contains one mini e-gun, for when your Bridge Officer loses theirs to the clown."
cost = PAYCHECK_COMMAND * 12
access_view = ACCESS_WEAPONS
contains = list(/obj/item/gun/energy/e_gun/mini)

/datum/supply_pack/goody/mars_single
special = FALSE

Expand Down
29 changes: 28 additions & 1 deletion modular_zubbers/code/modules/cargo/packs/security.dm
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
/datum/supply_pack/security/armory/elite
name = "Carwo 'd'Elite' Sniper Rifle Crate"
desc = "Contains one Carwo 'd'Elite' Sniper Rifle, as well as a spare magazine for it."
cost = CARGO_CRATE_VALUE * 40
cost = CARGO_CRATE_VALUE * 20
contains = list(/obj/item/gun/ballistic/automatic/sol_rifle/marksman = 1,
/obj/item/ammo_box/magazine/c40sol_rifle = 1,
)
Expand All @@ -83,3 +83,30 @@
desc = "Contains two Ion Carbines, for when you need to deal with speedy space tiders, mechs, or upstart silicons."
contains = list(/obj/item/gun/energy/ionrifle/carbine = 2)
crate_name = "Ion Carbine Crate"

/datum/supply_pack/security/miniegun
name = "Mini E-Gun Bulk Crate"
cost = CARGO_CRATE_VALUE * 4
desc = "Contains three mini e-guns, cheap and semi-effective, for when you need to arm up on a budget."
contains = list(/obj/item/gun/energy/e_gun/mini = 3)
crate_name = "Mini E-Gun Bulk Crate"

/datum/supply_pack/security/armory/kiboko
name = "Kiboko Grenade Launcher Crate"
cost = CARGO_CRATE_VALUE * 20
desc = "Contains two Kiboko 25mm grenade launchers. A small dial on the sight allows you to set the length of the grenade fuse."
contains = list(
/obj/item/gun/ballistic/automatic/sol_grenade_launcher/no_mag = 2,
/obj/item/ammo_box/magazine/c980_grenade/starts_empty = 2
)
crate_name = "Kiboko Grenade Launcher Crate"

/datum/supply_pack/security/armory/kiboko_variety
name = "Kiboko 25mm Variety Pack"
cost = CARGO_CRATE_VALUE * 8
desc = "Contains a variety of ammo types for the Kiboko 25mm Grenade Launcher. One practice box, one smoke box, and one riot box."
contains = list(
/obj/item/ammo_box/c980grenade = 1,
/obj/item/ammo_box/c980grenade/smoke = 1,
/obj/item/ammo_box/c980grenade/riot = 1,
)
Loading