diff --git a/code/modules/projectiles/magazines/misc.dm b/code/modules/projectiles/magazines/misc.dm index 680443c5fdf..35c9218884d 100644 --- a/code/modules/projectiles/magazines/misc.dm +++ b/code/modules/projectiles/magazines/misc.dm @@ -124,6 +124,18 @@ current_rounds = 150 max_rounds = 150 +/obj/item/ammo_magazine/packet/scout_rifle/impact + name = "Box of A19 high velocity impact bullets" + desc = "A box containing 150 rounds of A19 impact high velocity." + icon_state = "box_tx8_impact" + default_ammo = /datum/ammo/bullet/rifle/tx8/impact + +/obj/item/ammo_magazine/packet/scout_rifle/incendiary + name = "Box of A19 high velocity incendiary bullets" + desc = "A box containing 150 rounds of A19 incendiary high velocity." + icon_state = "box_tx8_incendiary" + default_ammo = /datum/ammo/bullet/rifle/tx8/incendiary + /obj/item/ammo_magazine/packet/sr81 name = "box of low-pressure 8.6x70mm" desc = "A box containing 120 rounds of 8.6x70mm low velocity." diff --git a/code/modules/reqs/weapons.dm b/code/modules/reqs/weapons.dm index 4d271e53912..234a4b13e08 100644 --- a/code/modules/reqs/weapons.dm +++ b/code/modules/reqs/weapons.dm @@ -57,11 +57,21 @@ contains = list(/obj/item/ammo_magazine/rifle/tx8/impact) cost = 40 +/datum/supply_packs/weapons/scout_impact_box + name = "BR-8 scout rifle impact ammo box" + contains = list(/obj/item/ammo_magazine/packet/scout_rifle/impact) + cost = 100 + /datum/supply_packs/weapons/scout_incendiary name = "Br-8 scout rifle incendiary magazine" contains = list(/obj/item/ammo_magazine/rifle/tx8/incendiary) cost = 40 +/datum/supply_packs/weapons/scout_incendiary_box + name = "BR-8 scout rifle incendiary ammo box" + contains = list(/obj/item/ammo_magazine/packet/scout_rifle/incendiary) + cost = 100 + /datum/supply_packs/weapons/zx76 name = "ZX-76 Twin-Barrled Burst Shotgun" contains = list(/obj/item/weapon/gun/shotgun/zx76)