Custom items for mangled, vinceluk, sparklysheep, silentthunder.

This commit is contained in:
Erthilo
2012-05-06 05:00:56 +01:00
parent d9a64a7d0a
commit a98327e267
6 changed files with 38 additions and 3 deletions
@@ -405,16 +405,16 @@ ZIPPO
src.item_state = icon_on
if( istype(src,/obj/item/weapon/lighter/zippo) )
for(var/mob/O in viewers(user, null))
O.show_message(text("\red Without even breaking stride, [] flips open and lights the [] in one smooth movement.", user, src), 1)
O.show_message(text("\red Without even breaking stride, [] flips open and lights [] in one smooth movement.", user, src), 1)
else
if(prob(75))
for(var/mob/O in viewers(user, null))
O.show_message("\red After a few attempts, [user] manages to light the [src].", 1)
O.show_message("\red After a few attempts, [user] manages to light [src].", 1)
else
user << "\red <b>You burn yourself while lighting the lighter.</b>"
user.adjustFireLoss(5)
for(var/mob/O in viewers(user, null))
O.show_message("\red After a few attempts, [user] manages to light the [src], they however burn their finger in the process.", 1)
O.show_message("\red After a few attempts, [user] manages to light [src], they however burn their finger in the process.", 1)
user.total_luminosity += 2
processing_objects.Add(src)