Skip to content

Commit

Permalink
Add config value to Ability.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Badbird5907 committed Dec 24, 2023
1 parent c1f52f5 commit f33cb5c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ public enum Ability implements AbstractAbility {
SWORD_MASTER(() -> Skills.FIGHTING, 3.0, 2.0),
FIRST_STRIKE(() -> Skills.FIGHTING, 20.0, 10.0, new String[] {"enable_message", "cooldown_ticks"}, new Object[] {true, 6000}),
BLEED(() -> Skills.FIGHTING, 3.0, 4.0, 0.5, 0.5,
new String[] {"enable_enemy_message", "enable_self_message", "enable_stop_message", "base_ticks", "added_ticks", "max_ticks", "tick_period", "show_particles"},
new Object[] {true, true, true, 3, 2, 11, 40, true}),
new String[] {"enable_self_bleed", "enable_enemy_message", "enable_self_message", "enable_stop_message", "base_ticks", "added_ticks", "max_ticks", "tick_period", "show_particles"},
new Object[] {true, true, true, true, 3, 2, 11, 40, true}),
ANTI_HUNGER(() -> Skills.ENDURANCE, 5.0, 5.0),
RUNNER(() -> Skills.ENDURANCE, 10.0, 10.0),
GOLDEN_HEAL(() -> Skills.ENDURANCE, 5.0, 6.0),
Expand Down

0 comments on commit f33cb5c

Please sign in to comment.