Skip to content

Commit

Permalink
Update ammo.dm
Browse files Browse the repository at this point in the history
:3 nyaaa mrrp
  • Loading branch information
Martinpachu committed Jan 22, 2024
1 parent 3693e63 commit 9767f61
Showing 1 changed file with 51 additions and 6 deletions.
57 changes: 51 additions & 6 deletions code/modules/cargo/packs/ammo.dm
Original file line number Diff line number Diff line change
Expand Up @@ -75,17 +75,15 @@

/datum/supply_pack/ammo/buckshot
name = "Buckshot Crate"
desc = "Contains two boxes of buckshot for use in lethal persuasion."
desc = "Contains a box of buckshot for use in lethal persuasion,contains 25 shells."
cost = 2000
contains = list(/obj/item/storage/box/lethalshot,
/obj/item/storage/box/lethalshot)
contains = list(/obj/item/ammo_box/a12g)

/datum/supply_pack/ammo/slugs
name = "Shotgun Slug Crate"
desc = "Contains two boxes of slug shells for use in lethal persuasion."
desc = "Contains a box of slug shells for use in lethal persuasion,contains 25 shells."
cost = 2000
contains = list(/obj/item/storage/box/slugshot,
/obj/item/storage/box/slugshot)
contains = list(/obj/item/ammo_box/a12g/slug)

/*
.38 ammo
Expand Down Expand Up @@ -188,3 +186,50 @@
/obj/item/ammo_box/a762,
/obj/item/ammo_box/a762)
cost = 1000

/datum/supply_pack/ammo/a762_ammo_box
name = "7.62x39mm Ammo Box Crate"
desc = "Contains a 7.62x39mm box for rifles like the SVG-67,contains 60 rounds."
contains = list(/obj/item/ammo_box/a762_39)
cost = 1000

/datum/supply_pack/ammo/n762_ammo_box
name = "7.62x38mm Ammo Box Crate"
desc = "Contains a 7.62x39mm box for pistols like the Nagant Revolver,contains 28 rounds."
contains = list(/obj/item/ammo_box/n762)
cost = 1000

/datum/supply_pack/ammo/c556mmHITP_ammo_box
name = "5.56 Caseless Ammo Box Crate"
desc = "Contains two 5.56mm caseless boxes for SolGov sidearms like the Pistole C,contains 100 rounds total."
contains = list(/obj/item/ammo_box/c556mmHITP,
/obj/item/ammo_box/c556mmHITP)
cost = 1000

/datum/supply_pack/ammo/c45_ammo_box
name = ".45 Ammo Box Crate"
desc = "Contains two .45 boxes for pistols and SMGs like the M1911,contains 100 rounds total."
contains = list(/obj/item/ammo_box/c45,
/obj/item/ammo_box/c45)
cost = 1000

/datum/supply_pack/ammo/c10mm_ammo_box
name = "10mm Ammo Box Crate"
desc = "Contains two 10mm boxes for pistols like the Stechkin,contains 100 rounds total."
contains = list(/obj/item/ammo_casing/c10mm,
/obj/item/ammo_casing/c10mm)
cost = 1000

/datum/supply_pack/ammo/c10mm_ammo_box
name = "10mm Ammo Box Crate"
desc = "Contains two 10mm boxes for pistols like the Stechkin,contains 100 rounds total."
contains = list(/obj/item/ammo_box/c10mm,
/obj/item/ammo_box/c10mm)
cost = 1000

/datum/supply_pack/ammo/c9mm_ammo_box
name = "9mm Ammo Box Crate"
desc = "Contains two 9mm boxes for pistols like the Commander or Commisioner,contains 100 rounds total."
contains = list(/obj/item/ammo_box/c9mm,
/obj/item/ammo_box/c9mm)
cost = 1000

0 comments on commit 9767f61

Please sign in to comment.