mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-14 08:34:16 +01:00
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:
@@ -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--
|
||||
..()
|
||||
|
||||
Reference in New Issue
Block a user