Skip to content

Commit

Permalink
Adds One Shot RPG to Black Market (shiptest-ss13#3468)
Browse files Browse the repository at this point in the history
<!-- Write **BELOW** The Headers and **ABOVE** The comments else it may
not be viewable. -->
<!-- You can view Contributing.MD for a detailed description of the pull
request process. -->

## About The Pull Request
as title
<!-- Describe The Pull Request. Please be sure every change is
documented or this can delay review and even discourage maintainers from
merging your PR! -->

## Why It's Good For The Game
Purchasable Anti-Armor for crews that might not otherwise have access to
it.
<!-- Please add a short description of why you think these changes would
benefit the game. If you can't justify it in words, it might not be
worth adding. -->

## Changelog

:cl:
add: A cargo ship happened to lose an entire crate of Hammer Rocket
Launchers while travelling through the system. We have reason to believe
they're probably on sale now.
del: you can no longer purchase PML-9s on the black market.
/:cl:

<!-- Both :cl:'s are required for the changelog to work! You can put
your name to the right of the first :cl: if you want to overwrite your
GitHub username as author ingame. -->
<!-- You can use multiple of the same prefix (they're only used for the
icon ingame) and delete the unneeded ones. Despite some of the tags,
changelogs should generally represent how a player might be affected by
the changes rather than a summary of the PR's contents. -->
  • Loading branch information
Erikafox authored and MysticalFaceLesS committed Oct 6, 2024
1 parent 550ef8c commit e5c9788
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 12 deletions.
12 changes: 0 additions & 12 deletions code/modules/cargo/blackmarket/blackmarket_items/explosives.dm
Original file line number Diff line number Diff line change
Expand Up @@ -97,18 +97,6 @@
stock_max = 7
availability_prob = 50

/datum/blackmarket_item/explosive/rpg
name = "PML-9 RPG"
desc = "Offically, it's an anti-armor RPG launcher. Technically, it's anti-everything. Most things don't enjoy being hit in the face with high explosives."
item = /obj/item/gun/ballistic/rocketlauncher

price_min = 3500
price_max = 6500
stock_min = 2
stock_max = 5
availability_prob = 10
spawn_weighting = FALSE

/datum/blackmarket_item/explosive/live_bomb
name = "Active ICW Era Ordinance"
desc = "Look, I won't mince words. This thing is counting down and I don't want to be the next causualty of ICW after it's already ended. I'll sell it to you real cheap."
Expand Down
11 changes: 11 additions & 0 deletions code/modules/cargo/blackmarket/blackmarket_items/weapons.dm
Original file line number Diff line number Diff line change
Expand Up @@ -359,3 +359,14 @@
price_max = 3500
stock = 2
availability_prob = 40

/datum/blackmarket_item/weapon/oneshot
name = "Hammer Launcher"
desc = "A one-shot solution to a myriad amount of problems, ranging from Exosuits to obnoxious neighbors. Contains one ready-to-fire 84mm HEDP rocket. "
item = /obj/item/gun/ballistic/rocketlauncher/oneshot

price_min = 3000
price_max = 4500
stock_min = 1
stock_max = 5
availability_prob = 25

0 comments on commit e5c9788

Please sign in to comment.