Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Buffs the detomax pda bomb by removing its RANDOM EXPLOSION MECHANIC. #11738

Merged
merged 6 commits into from Sep 14, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion code/datums/uplink_item.dm
Expand Up @@ -391,7 +391,7 @@ var/list/uplink_items = list()

/datum/uplink_item/stealthy_weapons/detomatix
name = "Detomatix PDA Cartridge"
desc = "When inserted into a personal digital assistant, this cartridge gives you five opportunities to detonate PDAs of crewmembers who have their message feature enabled. \
desc = "When inserted into a personal digital assistant, this cartridge gives you four opportunities to detonate PDAs of crewmembers who have their message feature enabled. \
The concussive effect from the explosion will knock the recipient out for a short period, and deafen them for longer. It has a chance to detonate your PDA."
item = /obj/item/weapon/cartridge/syndicate
cost = 6
Expand Down
6 changes: 1 addition & 5 deletions code/game/objects/items/devices/PDA/PDA.dm
Expand Up @@ -703,12 +703,8 @@ var/global/list/obj/item/device/pda/PDAs = list()
else
difficulty += 2

if(prob(difficulty * 12) || (P.hidden_uplink))
if(prob(difficulty * 15) || (P.hidden_uplink))
U.show_message("<span class='danger'>An error flashes on your [src].</span>", 1)
else if (prob(difficulty * 3))
U.show_message("<span class='danger'>Energy feeds back into your [src]!</span>", 1)
U << browse(null, "window=pda")
explode()
else
U.show_message("<span class='notice'>Success!</span>", 1)
P.explode()
Expand Down
6 changes: 6 additions & 0 deletions html/changelogs/Supermichael777-pr-#11738.yml
@@ -0,0 +1,6 @@
author: Supermichael777

delete-after: True

changes:
- tweak: "The detomax pda cartridge no longer blows its user up."