Skip to content

Commit

Permalink
Fix: VAL-HAL-A halberd nerf (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
goose4429 authored and Bizzonium committed Dec 23, 2022
1 parent 4ef368c commit 17fc694
Showing 1 changed file with 3 additions and 13 deletions.
16 changes: 3 additions & 13 deletions ss220/code/RU_items.dm
Original file line number Diff line number Diff line change
Expand Up @@ -152,10 +152,10 @@ SUBSYSTEM_DEF(ru_items)
desc = "TerraGov Marine Corps' cutting-edge 'Harvester' halberd, with experimental plasma regulator. An advanced weapon that combines sheer force with the ability to apply a variety of debilitating effects when loaded with certain reagents, but should be used with both hands. Activate after loading to prime a single use of an effect. It also harvests substances from alien lifeforms it strikes when connected to the Vali system."
icon_state = "VAL-HAL-A"
item_state = "VAL-HAL-A"
force = 60
force_wielded = 135 //Reminder: putting trama inside deals 60% additional damage
force = 50
force_wielded = 100 //Reminder: putting trama inside deals 60% additional damage
flags_item = DRAINS_XENO | TWOHANDED
attack_speed = 12 //Default is 7, this has slow attack
attack_speed = 10 //Default is 7, this has slow attack
reach = 2 //like spear

/obj/item/weapon/twohanded/glaive/harvester/Initialize()
Expand All @@ -166,13 +166,3 @@ SUBSYSTEM_DEF(ru_items)
name = "VAL-HAL-A"
contains = list(/obj/item/weapon/twohanded/glaive/harvester)
cost = 20

/obj/item/weapon/twohanded/glaive/harvester/wield(mob/user)
. = ..()
if (!.)
return
toggle_item_bump_attack(user, TRUE)

/obj/item/weapon/twohanded/glaive/harvester/unwield(mob/user)
. = ..()
toggle_item_bump_attack(user, FALSE)

0 comments on commit 17fc694

Please sign in to comment.