Skip to content

Commit

Permalink
moreammo!!!
Browse files Browse the repository at this point in the history
  • Loading branch information
Martinpachu committed Feb 11, 2024
1 parent 8342b0b commit 21ef004
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 21ef004

Please sign in to comment.