Skip to content

Commit

Permalink
atomizes flamethrowers and incendiary grenades
Browse files Browse the repository at this point in the history
  • Loading branch information
zimon9 committed Oct 7, 2024
1 parent b009822 commit 3ab81cc
Showing 1 changed file with 17 additions and 11 deletions.
28 changes: 17 additions & 11 deletions code/modules/cargo/packs/sec_supply.dm
Original file line number Diff line number Diff line change
Expand Up @@ -90,19 +90,25 @@
crate_name = "combat knife crate"
*/

/datum/supply_pack/sec_supply/fire
name = "Incendiary Weapons Crate"
desc = "Burn, baby burn. Contains three incendiary grenades and three prebuilt flamethrowers."
cost = 5000
/datum/supply_pack/sec_supply/flamethrower
name = "Flamethrower Crate"
desc = "Contains one flamethrower. Point the nozzle away from anything important."
cost = 1250
contains = list(
/obj/item/flamethrower/full
)
crate_name = "flamethrower crate"
crate_type = /obj/structure/closet/crate/secure/weapon
faction = FACTION_NGR

/datum/supply_pack/sec_supply/incendiary_grenade
name = "incendiary Grenade Crate"
desc = "Contains one incendiary grenade. Better not let it go off in your hands."
cost = 500
contains = list(
/obj/item/flamethrower/full,
/obj/item/flamethrower/full,
/obj/item/flamethrower/full,
/obj/item/grenade/chem_grenade/incendiary,
/obj/item/grenade/chem_grenade/incendiary,
/obj/item/grenade/chem_grenade/incendiary,
/obj/item/grenade/chem_grenade/incendiary
)
crate_name = "incendiary weapons crate"
crate_name = "incendiary grenade crate"
crate_type = /obj/structure/closet/crate/secure/plasma
faction = FACTION_NGR

Expand Down

0 comments on commit 3ab81cc

Please sign in to comment.