From 37a2f9bebe82ea7e5b79fdef2e210605825fed9d Mon Sep 17 00:00:00 2001 From: Martinpachu <86135885+Martinpachu@users.noreply.github.com> Date: Wed, 14 Feb 2024 23:33:37 -0300 Subject: [PATCH] Adds ammo i forgot about to the outpost. (#2724) ## About The Pull Request Adds rubbershot and laser gun cells to the outpost. Because i forgot last time. Also fixes a typo. ## Why It's Good For The Game Less-than-lethal options are nice i think. Also being able to get more laser gun cells is also good!! ## Changelog :cl: add:Added pistol rubbershot and weapon power cells to the outpost. :cl: --- 2024-02-11 19 | 0 code/modules/cargo/packs/ammo.dm | 39 +++++++++++++++++++++++++++++++- 2 files changed, 38 insertions(+), 1 deletion(-) create mode 100644 2024-02-11 19 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