Skip to content

Commit

Permalink
Adds ammo i forgot about to the outpost. (#2724)
Browse files Browse the repository at this point in the history
## 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:
  • Loading branch information
Martinpachu authored Feb 15, 2024
1 parent 4e65afd commit 37a2f9b
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
Empty file added 2024-02-11 19
Empty file.
39 changes: 38 additions & 1 deletion code/modules/cargo/packs/ammo.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 37a2f9b

Please sign in to comment.