Skip to content

Commit

Permalink
.45-70 boxes hold 18 instead of 12, .45-70 specialty ammo black market (
Browse files Browse the repository at this point in the history
shiptest-ss13#3333)

## About The Pull Request

Doubles the amount of rounds in .45-70

## Why It's Good For The Game

Beacon takes the cake for The Worst Ammo Efficiency In The Game By Far
(500 credits for 12 bullets, you are Shooting 40 Credits Each Shot, the
equivalent of shooting half a Plasteel Sheet each shot)

## Changelog

:cl:
balance: .45-70 boxes increased from 12 to 18
add: .45-70 hollow point boxes and A Singular .45-70 Explosive Round is
now available in the black market
/:cl:

---------

Signed-off-by: generalthrax <[email protected]>
  • Loading branch information
generalthrax authored and MysticalFaceLesS committed Sep 22, 2024
1 parent 089dc00 commit a1449be
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 4 deletions.
21 changes: 21 additions & 0 deletions code/modules/cargo/blackmarket/blackmarket_items/ammo.dm
Original file line number Diff line number Diff line change
Expand Up @@ -250,3 +250,24 @@
stock = 2
availability_prob = 0

/datum/blackmarket_item/ammo/a4570hp
name = ".45-70 Hollow Point Ammo Box"
desc = "Put the hollow in hollow point by blowing a crater in some random sod with this devastating .45-70 cartridge."
item = /obj/item/ammo_box/a4570/hp

price_min = 600
price_max = 1000
stock_min = 3
stock_max = 5
availability_prob = 20

/datum/blackmarket_item/ammo/a4570explo
name = "Single .45-70 Explosive Round"
desc = "If you need to fuck someone, hard, we got just the thing. Only one round, though, hope you got good aim."
item = /obj/item/ammo_casing/a4570/explosive

price_min = 400
price_max = 800 //still an exorbitantly high price for one round that you might not even hit
stock_min = 2
stock_max = 10
availability_prob = 10
8 changes: 4 additions & 4 deletions code/modules/projectiles/boxes_magazines/ammo_boxes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -55,24 +55,24 @@
desc = "A box of top grade .45-70 ammo. These rounds do significant damage with average performance against armor."
icon_state = "4570"
ammo_type = /obj/item/ammo_casing/a4570
max_ammo = 12
max_ammo = 18

/obj/item/ammo_box/a4570/match
name = "ammo box (.45-70 match)"
desc = "A 12-round ammo box for .45-70 revolvers. These match rounds travel faster, perform better against armor, and can ricochet off targets."
desc = "A 18-round ammo box for .45-70 revolvers. These match rounds travel faster, perform better against armor, and can ricochet off targets."
icon_state = "4570-match"
ammo_type = /obj/item/ammo_casing/a4570/match


/obj/item/ammo_box/a4570/hp
name = "ammo box (.45-70 hollow point)"
desc = "A 12-round ammo box for .45-70 revolvers. These hollow point rounds do legendary damage against soft targets, but are nearly ineffective against armored ones."
desc = "A 18-round ammo box for .45-70 revolvers. These hollow point rounds do legendary damage against soft targets, but are nearly ineffective against armored ones."
icon_state = "4570-hp"
ammo_type = /obj/item/ammo_casing/a4570/hp

/obj/item/ammo_box/a4570/explosive
name = "ammo box (.45-70 explosive)"
desc = "A 12-round ammo box for .45-70 revolvers. These explosive rounds contain a small explosive charge that detonates on impact, creating large wounds and potentially removing limbs."
desc = "A 18-round ammo box for .45-70 revolvers. These explosive rounds contain a small explosive charge that detonates on impact, creating large wounds and potentially removing limbs."
icon_state = "4570-explosive"
ammo_type = /obj/item/ammo_casing/a4570/explosive

Expand Down

0 comments on commit a1449be

Please sign in to comment.