diff --git a/code/modules/vore/fluffstuff/custom_items_vr.dm b/code/modules/vore/fluffstuff/custom_items_vr.dm index 9a702c40049..b2bd7b64fcd 100644 --- a/code/modules/vore/fluffstuff/custom_items_vr.dm +++ b/code/modules/vore/fluffstuff/custom_items_vr.dm @@ -606,7 +606,34 @@ obj/item/weapon/material/hatchet/tacknife/combatknife/fluff/katarina/handle_shie desc = "An elaborately made custom walking stick with a dark wooding core, a crimson red gemstone on its head and a steel cover around the bottom. you'd probably hear someone using this down the hall." icon = 'icons/vore/custom_items_vr.dmi' +//Stobarico - Alexis Bloise +/obj/item/weapon/cane/wand + name = "Ancient wand" + desc = "A really old looking wand with floating parts and cyan crystals, wich seem to radiate a cyan glow. The wand has a golden plaque on the side that would say Corncobble, but it is covered by a sticker saying Bloise." + icon = 'icons/vore/custom_items_vr.dmi' + icon_state = "alexiswand" + item_icons = list (slot_r_hand_str = 'icons/vore/custom_items_vr.dmi', slot_l_hand_str = 'icons/vore/custom_items_vr.dmi') + item_state_slots = list(slot_r_hand_str = "alexiswandmob_r", slot_l_hand_str = "alexiswandmob_l") + flags = CONDUCT + force = 1.0 + throwforce = 2.0 + w_class = ITEMSIZE_SMALL + matter = list(DEFAULT_WALL_MATERIAL = 50) + attack_verb = list("sparkled", "whacked", "twinkled", "radiated", "dazzled", "zapped") + hitsound = 'sound/weapons/sparkle.ogg' + var/last_use = 0 + var/cooldown = 30 +/obj/item/weapon/cane/wand/attack_self(mob/user) + if(last_use + cooldown >= world.time) + return + playsound(loc, 'sound/weapons/sparkle.ogg', 50, 1) + user.visible_message(" [user] swings their wand.") + var/datum/effect/effect/system/spark_spread/s = new + s.set_up(3, 1, src) + s.start() + last_use = world.time + qdel () /obj/item/device/fluff/id_kit_ivy name = "Holo-ID reprinter" diff --git a/icons/vore/custom_items_vr.dmi b/icons/vore/custom_items_vr.dmi index ad81f857d94..c29794bc362 100644 Binary files a/icons/vore/custom_items_vr.dmi and b/icons/vore/custom_items_vr.dmi differ diff --git a/icons/vore/custom_onmob_vr.dmi b/icons/vore/custom_onmob_vr.dmi index 8ff8c2f9d74..937f0d9a843 100644 Binary files a/icons/vore/custom_onmob_vr.dmi and b/icons/vore/custom_onmob_vr.dmi differ diff --git a/sound/weapons/sparkle.ogg b/sound/weapons/sparkle.ogg new file mode 100644 index 00000000000..ffaa59f0b37 Binary files /dev/null and b/sound/weapons/sparkle.ogg differ