diff --git a/code/modules/projectiles/guns/energy/magic.dm b/code/modules/projectiles/guns/energy/magic.dm index ea720e7b480..6cf02be9b2f 100644 --- a/code/modules/projectiles/guns/energy/magic.dm +++ b/code/modules/projectiles/guns/energy/magic.dm @@ -3,6 +3,7 @@ /obj/item/gun/energy/wand name = "wand of nothing" desc = "A magic stick, this one don't do much however." + desc_info = null icon = 'icons/obj/wands.dmi' icon_state = "nothingwand" item_state = "wand" @@ -10,15 +11,13 @@ fire_sound = 'sound/magic/wand.ogg' slot_flags = SLOT_BELT w_class = ITEMSIZE_NORMAL - max_shots = 20 + max_shots = 10 + charge_cost = 100 projectile_type = /obj/item/projectile/magic origin_tech = list(TECH_COMBAT = 6, TECH_MAGNET = 5, TECH_BLUESPACE = 6) charge_meter = 0 - charge_failure_message = null has_safety = FALSE - -/obj/item/gun/energy/wand/get_cell() - return DEVICE_NO_CELL + needspin = FALSE /obj/item/gun/energy/wand/handle_click_empty(mob/user = null) if (user) @@ -34,4 +33,4 @@ return 1 /obj/item/gun/energy/wand/toy - origin_tech = null + origin_tech = null \ No newline at end of file diff --git a/html/changelogs/Afya-Wands.yml b/html/changelogs/Afya-Wands.yml new file mode 100644 index 00000000000..f46b5f9f157 --- /dev/null +++ b/html/changelogs/Afya-Wands.yml @@ -0,0 +1,8 @@ +author: Afya + +delete-after: True + +changes: + - rscadd: "Wands of nothing can now be recharged." + - tweak: "Wands of nothing have 10 shots instead of 20." + - tweak: "Wands no longer use firing pins." \ No newline at end of file