Wand of Death now deals Burn

This commit is contained in:
TullyBurnalot
2017-01-07 15:15:17 +00:00
parent 69ff538a02
commit ecaf8678ab
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -67,7 +67,7 @@
var/message ="<span class='warning'>You irradiate yourself with pure energy! "
message += pick("Do not pass go. Do not collect 200 zorkmids.</span>","You feel more confident in your spell casting skills.</span>","You Die...</span>","Do you want your possessions identified?</span>")
to_chat(user, message)
user.adjustBruteLoss(3000)
user.adjustFireLoss(3000)
charges--
..()
+1 -1
View File
@@ -21,7 +21,7 @@
/obj/item/projectile/magic/death/on_hit(var/mob/living/carbon/G)
. = ..()
if(isliving(G))
G.adjustBruteLoss(3000)
G.adjustFireLoss(3000)
visible_message("<span class='danger'>[G] topples backwards as the death bolt impacts them!</span>")
/obj/item/projectile/magic/fireball/Range()