Updating Clown Ruin and nerfing Staff of slipping. (#15362)

* Updating Clown Ruin and nerfing Staff of slipping.

I noticed how the staff of slipping was commonly used by antags as an infinite stun that also affected borgs. So, I replaced the one that spawns on lavaland with one that only has 5 charges.

* Updates as requested

Changed to wand of slipping to avoid confusion with staff

* Old nerfed Staff removal

Quickly removes old nerfed staff

* fixes errors

should compile in DM now

* requested changes

Changes as requested by Arc
This commit is contained in:
Dsdiy
2021-02-21 21:30:28 +00:00
committed by GitHub
parent 27047385c1
commit 7bfc68afa6
3 changed files with 18 additions and 2 deletions
+1 -1
View File
@@ -53,7 +53,7 @@
fire_sound = 'sound/magic/staff_door.ogg'
/obj/item/gun/magic/staff/slipping
name = "staff of slipping"
name = "wand of slipping"
desc = "An artefact that spits... bananas?"
ammo_type = /obj/item/ammo_casing/magic/slipping
icon_state = "staffofslipping"
@@ -163,3 +163,19 @@
explosion(user.loc, -1, 0, 2, 3, 0, flame_range = 2)
charges--
..()
/////////////////////////////////////
//WAND OF SLIPPING
/////////////////////////////////////
/obj/item/gun/magic/wand/slipping
name = "wand of slipping"
desc = "This wand shoots... banana peels?"
fire_sound = 'sound/items/bikehorn.ogg'
ammo_type = /obj/item/ammo_casing/magic/slipping
icon_state = "staffofslipping"
max_charges = 5 //5, 4, 3, 2
/obj/item/gun/magic/wand/slipping/zap_self(mob/living/user)
to_chat(user, "<span class='notice'>You feel rather silly!.</span>")
charges--
..()