Skip to content

Commit

Permalink
frontie weapons
Browse files Browse the repository at this point in the history
  • Loading branch information
Gristlebee committed Sep 6, 2024
1 parent 5bd9ed5 commit d92be5b
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 0 deletions.
31 changes: 31 additions & 0 deletions code/modules/cargo/blackmarket/blackmarket_items/ammo.dm
Original file line number Diff line number Diff line change
Expand Up @@ -230,3 +230,34 @@
stock_max = 5
availability_prob = 0

/datum/blackmarket_item/ammo/mauler_mag
name = "Mauler Magazine"
desc = "A 12 round 9mm magazine for the Mauler Machine Pistol."
item = /obj/item/ammo_box/magazine/m9mm_mauler
price_min = 250
price_max = 750
stock_min = 3
stock_max = 5
availability_prob = 0

/datum/blackmarket_item/ammo/spitter_mag
name = "Spitter Magazine"
desc = "A 30 round 9mm magazine for the Spitter Machine Pistol."
item = /obj/item/ammo_box/magazine/spitter_9mm

price_min = 250
price_max = 750
stock_min = 2
stock_max = 5
availability_prob = 0

/datum/blackmarket_item/ammo/pounder_mag
name = "Pounder Pan Magazine"
desc = "A 50 round pan magazine for the Pounder submachine gun. Heavy enough to double as an emergency melee weapon to beat off your enemies in a pinch."
item = /obj/item/ammo_box/magazine/c22lr_pounder_pan

price_min = 400
price_max = 750
stock = 2
availability_prob = 0

33 changes: 33 additions & 0 deletions code/modules/cargo/blackmarket/blackmarket_items/weapons.dm
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,39 @@
stock = 2
availability_prob = 30

/datum/blackmarket_item/weapon/mauler
name = "Mauler Machine Pistol"
desc = "This gun's got teeth! A Shoal classic, the Mauler 9mm machine pistol is suited to close quarter combat with an insane fire rate beating out even dedicated assault rifles."
item = /obj/item/gun/ballistic/automatic/pistol/mauler
pair_item = list(/datum/blackmarket_item/ammo/mauler_mag)

price_min = 1000
price_max = 2000
stock = 2
availability_prob = 50

/datum/blackmarket_item/weapon/spitter
name = "Spitter Machine Pistol"
desc = "The aptly named Spitter won't be hitting anything outside of spitting distance. Anything in that range on the otherhand? Let's just say the bereaved will be wanting a closed casket funeral. Chambered in 9mm."
item = /obj/item/gun/ballistic/automatic/pistol/spitter
pair_item = list(/datum/blackmarket_item/ammo/spitter_mag)

price_min = 1500
price_max = 2250
stock = 2
availability_prob = 30

/datum/blackmarket_item/weapon/pounder
name = "Pounder Submachine Gun"
desc = "Give your enemies the pounding of their life with this 50 round .22lr Submachine Gun! This baby can blast it's whole load in mere moments!"
item = /obj/item/gun/ballistic/automatic/smg/pounder
pair_item = list(/datum/blackmarket_item/ammo/pounder_mag)

price_min = 1500
price_max = 2000
stock = 2
availability_prob = 35

/datum/blackmarket_item/weapon/polymer
name = "Polymer Survivor Rifle"
desc = "A slapdash rifle held together by spite, dreams and a good helping of duct tape. Chambered in 7.62x40mm CLIP."
Expand Down

0 comments on commit d92be5b

Please sign in to comment.