diff --git a/2024-02-11 19 b/2024-02-11 19 new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/code/modules/cargo/packs/ammo.dm b/code/modules/cargo/packs/ammo.dm index 4095c31841b3..6da9cd787e51 100644 --- a/code/modules/cargo/packs/ammo.dm +++ b/code/modules/cargo/packs/ammo.dm @@ -276,8 +276,45 @@ cost = 1000 /datum/supply_pack/ammo/c556mmhitphp_ammo_box - name = "5.56 caseless Ammo Box Crate" + name = "5.56 Caseless HP Ammo Box Crate" desc = "Contains two fifty-round 5.56mm caseless boxes loaded with hollow point ammo, great against unarmored targets, for a total of 100 rounds." contains = list(/obj/item/ammo_box/c556mmHITP/hp, /obj/item/ammo_box/c556mmHITP/hp) cost = 1000 + +/datum/supply_pack/ammo/c9mmrubber_ammo_box + name = "9mm Rubber Ammo Box Crate" + desc = "Contains two fifty-round 9mm boxes loaded with less-than-lethal rubber rounds for a total of 100 rounds." + contains = list(/obj/item/ammo_box/c9mm/rubbershot, + /obj/item/ammo_box/c9mm/rubbershot) + cost = 500 + +/datum/supply_pack/ammo/c10mmrubber_ammo_box + name = "10mm Rubber Ammo Box Crate" + desc = "Contains two fifty-round 10mm boxes loaded with less-than-lethal rubber rounds for a total of 100 rounds." + contains = list(/obj/item/ammo_box/c10mm/rubbershot, + /obj/item/ammo_box/c10mm/rubbershot) + cost = 500 + +/datum/supply_pack/ammo/c45mmrubber_ammo_box + name = ".45 Rubber Ammo Box Crate" + desc = "Contains two fifty-round .45 boxes loaded with less-than-lethal rubber rounds for a total of 100 rounds." + contains = list(/obj/item/ammo_box/c45/rubbershot, + /obj/item/ammo_box/c45/rubbershot) + cost = 500 + + +/datum/supply_pack/ammo/c556HITPrubber_ammo_box + name = "5.56 Caseless Rubber Ammo Box Crate" + desc = "Contains two fifty-round 5.56 caseless boxes loaded with less-than-lethal rubber rounds for a total of 100 rounds." + contains = list(/obj/item/ammo_box/c556mmHITP/rubbershot, + /obj/item/ammo_box/c556mmHITP/rubbershot) + cost = 500 + +/datum/supply_pack/ammo/guncell + name = "Weapon Cell Crate" + desc = "Contains three weapon cells, compatible with laser guns." + contains = list(/obj/item/stock_parts/cell/gun, + /obj/item/stock_parts/cell/gun, + /obj/item/stock_parts/cell/gun) + cost = 1500