mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-23 21:18:37 +01:00
Bugfix: Adds a var to simple animals "player_controlled" to surpress behaviors in simple_animals that have players assigned.
Bugfix: Dead player mice won't be converted to items so they can still be revived. Bugfix: Players playing chicks won't die by developing into chickens anymore Bugfix: Fixes an edge case where a poor soul struck by multiple polymorphing shots at once ends up in a state where they can't move. Feature: Renames the wand of resurrection to the wand of healing to drive home the fact that it does the same things the staff of healing can do Balancing: Gives the wand of healing more shots. 10, 5, 5, 4 up from 3, 2, 2, 1
This commit is contained in:
@@ -60,11 +60,11 @@
|
||||
..()
|
||||
|
||||
/obj/item/weapon/gun/magic/wand/resurrection
|
||||
name = "wand of resurrection"
|
||||
name = "wand of healing"
|
||||
desc = "This wand uses healing magics to heal and revive. They are rarely utilized within the Wizard Federation for some reason."
|
||||
projectile_type = "/obj/item/projectile/magic/resurrection"
|
||||
icon_state = "revivewand"
|
||||
max_charges = 3 //3, 2, 2, 1
|
||||
max_charges = 10 //10, 5, 5, 4
|
||||
|
||||
/obj/item/weapon/gun/magic/wand/resurrection/zap_self(mob/living/user as mob)
|
||||
user.revive()
|
||||
|
||||
@@ -220,6 +220,8 @@ proc/wabbajack(mob/living/M)
|
||||
new_mob << "<B>Your form morphs into that of a [randomize].</B>"
|
||||
|
||||
del(M)
|
||||
if(!new_mob.canmove) //edge case of someone getting hit with two bolts at the same time
|
||||
new_mob.canmove = 1
|
||||
return new_mob
|
||||
|
||||
/obj/item/projectile/magic/animate
|
||||
|
||||
Reference in New Issue
Block a user