objects/effects, objects/structures

This commit is contained in:
GinjaNinja32
2015-05-30 14:37:40 +01:00
parent 73a746e455
commit 94e19592cf
19 changed files with 115 additions and 115 deletions
+3 -3
View File
@@ -79,16 +79,16 @@
/obj/structure/displaycase/attack_hand(mob/user as mob)
if (src.destroyed && src.occupied)
new /obj/item/weapon/gun/energy/captain( src.loc )
user << "\b You deactivate the hover field built into the case."
user << "<span class='notice'>You deactivate the hover field built into the case.</span>"
src.occupied = 0
src.add_fingerprint(user)
update_icon()
return
else
usr << text("\blue You kick the display case.")
usr << text("<span class='warning'>You kick the display case.</span>")
for(var/mob/O in oviewers())
if ((O.client && !( O.blinded )))
O << text("\red [] kicks the display case.", usr)
O << "<span class='warning'>[usr] kicks the display case.</span>"
src.health -= 2
healthcheck()
return