Made some "tactical" explosives for Noize

Use it on itself to set the timer length (defaults to 10 seconds)
  Can be applied to floors, walls, monkeys, whatever
  Whatever it is applied to suffers a max-severity ex_act()(turf turns to space, objects are destroyed, mobs gib), aside from walls, which are simply busted down to not even girder
  Minimal damage to everything else in range, as with a PDA bomb
  Fits in your pocket for convenient carry
  Replaces the piss-weak syndiebombs for anyone with a syndicate uplink, comes in 2-packs

Low-severity explosions do not have a 100% chance of knocking walls down to girders anymore.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@662 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
n3ophyt3@gmail.com
2010-12-18 23:55:20 +00:00
parent ad248c0604
commit 10d382258f
4 changed files with 21 additions and 4 deletions
+3 -2
View File
@@ -1681,7 +1681,7 @@ Code:
src.menu_message += "<A href='byond://?src=\ref[src];buy_item=sleepypen'>Sleepy Pen</A> (5)<BR>"
src.menu_message += "<A href='byond://?src=\ref[src];buy_item=cloak'>Cloaking Device</A> (4)<BR>"
src.menu_message += "<A href='byond://?src=\ref[src];buy_item=sword'>Energy Sword</A> (4)<BR>"
src.menu_message += "<A href='byond://?src=\ref[src];buy_item=bomb'>Low-Yield Bomb</A> (4)<BR>"
src.menu_message += "<A href='byond://?src=\ref[src];buy_item=bomb'>Plastic Explosives</A> (4)<BR>"
src.menu_message += "<A href='byond://?src=\ref[src];buy_item=powersink'>Power Sink</A> (5)<BR>"
src.menu_message += "<A href='byond://?src=\ref[src];buy_item=detomatix'>Detomatix Cartridge</A> (3)<BR>"
src.menu_message += "<A href='byond://?src=\ref[src];buy_item=space'>Syndicate-made Space Suit (inludes a helmet)</A> (3)<BR>"
@@ -1766,7 +1766,8 @@ Code:
if("bomb")
if (src.uses >= 4)
src.uses -= 4
new /obj/spawner/newbomb/timer/syndicate(get_turf(src.hostpda))
new /obj/item/weapon/plastique(get_turf(src.hostpda))
new /obj/item/weapon/plastique(get_turf(src.hostpda))
if("powersink")
if (src.uses >= 5)
src.uses -= 5