diff --git a/Plugin/src/main/java/com/willfp/ecoenchants/enchantments/ecoenchants/normal/Levitate.java b/Plugin/src/main/java/com/willfp/ecoenchants/enchantments/ecoenchants/normal/Levitate.java index c6e66820..77f51bb5 100644 --- a/Plugin/src/main/java/com/willfp/ecoenchants/enchantments/ecoenchants/normal/Levitate.java +++ b/Plugin/src/main/java/com/willfp/ecoenchants/enchantments/ecoenchants/normal/Levitate.java @@ -51,6 +51,6 @@ public class Levitate extends EcoEnchant { int duration = this.getConfig().getInt(EcoEnchants.CONFIG_LOCATION + "duration-per-level"); victim.setVelocity(new Vector(0, 0, 0)); - victim.addPotionEffect(new PotionEffect(PotionEffectType.LEVITATION, duration * level, level)); + victim.addPotionEffect(new PotionEffect(PotionEffectType.LEVITATION, duration * level, 0)); } } diff --git a/Plugin/src/main/resources/enchants/curse/harmlessnesscurse.yml b/Plugin/src/main/resources/enchants/curse/harmlessnesscurse.yml index 58a1ee07..44de7d02 100644 --- a/Plugin/src/main/resources/enchants/curse/harmlessnesscurse.yml +++ b/Plugin/src/main/resources/enchants/curse/harmlessnesscurse.yml @@ -19,4 +19,4 @@ general-config: conflicts: [] config: - chance: 30 \ No newline at end of file + chance: 15 \ No newline at end of file diff --git a/Plugin/src/main/resources/enchants/curse/hungercurse.yml b/Plugin/src/main/resources/enchants/curse/hungercurse.yml index f7f1f2d5..80f3f3d0 100644 --- a/Plugin/src/main/resources/enchants/curse/hungercurse.yml +++ b/Plugin/src/main/resources/enchants/curse/hungercurse.yml @@ -20,5 +20,4 @@ general-config: - sating config: - repeat-ticks: 20 # How often (in ticks) to call entities - distance: 20 # Entity Range \ No newline at end of file + # No config is available for this enchantment \ No newline at end of file diff --git a/Plugin/src/main/resources/enchants/normal/aerial.yml b/Plugin/src/main/resources/enchants/normal/aerial.yml index 053b5d40..a2320446 100644 --- a/Plugin/src/main/resources/enchants/normal/aerial.yml +++ b/Plugin/src/main/resources/enchants/normal/aerial.yml @@ -20,4 +20,4 @@ general-config: maximum-level: 3 config: - damage-multiplier-per-level: 0.1 # 1 + (Level * Multiplier) is multiplied with the damage + damage-multiplier-per-level: 0.06 # 1 + (Level * Multiplier) is multiplied with the damage diff --git a/Plugin/src/main/resources/enchants/normal/aquatic.yml b/Plugin/src/main/resources/enchants/normal/aquatic.yml index d35143df..c910bc13 100644 --- a/Plugin/src/main/resources/enchants/normal/aquatic.yml +++ b/Plugin/src/main/resources/enchants/normal/aquatic.yml @@ -20,4 +20,4 @@ general-config: maximum-level: 3 config: - percent-more-per-level: 10 # Percent more damage to do per level + percent-more-per-level: 6 # Percent more damage to do per level diff --git a/Plugin/src/main/resources/enchants/normal/atmospheric.yml b/Plugin/src/main/resources/enchants/normal/atmospheric.yml index e7f04a5d..c490488c 100644 --- a/Plugin/src/main/resources/enchants/normal/atmospheric.yml +++ b/Plugin/src/main/resources/enchants/normal/atmospheric.yml @@ -20,4 +20,4 @@ general-config: maximum-level: 3 config: - damage-multiplier-per-level: 0.1 # 1 + (Level * Multiplier) is multiplied with the damage + damage-multiplier-per-level: 0.06 # 1 + (Level * Multiplier) is multiplied with the damage diff --git a/Plugin/src/main/resources/enchants/normal/bleed.yml b/Plugin/src/main/resources/enchants/normal/bleed.yml index 33f69bda..7445cb23 100644 --- a/Plugin/src/main/resources/enchants/normal/bleed.yml +++ b/Plugin/src/main/resources/enchants/normal/bleed.yml @@ -20,7 +20,7 @@ general-config: maximum-level: 3 config: - chance-per-level: 5 #chance of bleeding per level + chance-per-level: 3 #chance of bleeding per level allow-not-fully-charged: false #dont require sword attack to be at full charge bleed-damage: 1 amount-per-level: 2 # Bleed number per level diff --git a/Plugin/src/main/resources/enchants/normal/blind.yml b/Plugin/src/main/resources/enchants/normal/blind.yml index b94e9ef9..fd4ed278 100644 --- a/Plugin/src/main/resources/enchants/normal/blind.yml +++ b/Plugin/src/main/resources/enchants/normal/blind.yml @@ -21,4 +21,4 @@ general-config: config: chance-per-level: 3 #as percentage - duration-per-level: 30 \ No newline at end of file + duration-per-level: 15 \ No newline at end of file diff --git a/Plugin/src/main/resources/enchants/normal/chopless.yml b/Plugin/src/main/resources/enchants/normal/chopless.yml index 1839e5e0..161e27dc 100644 --- a/Plugin/src/main/resources/enchants/normal/chopless.yml +++ b/Plugin/src/main/resources/enchants/normal/chopless.yml @@ -20,4 +20,4 @@ general-config: maximum-level: 5 config: - percent-less-per-level: 1.5 # Points * Percent less / 100 * damage = damage taken \ No newline at end of file + percent-less-per-level: 1 # Points * Percent less / 100 * damage = damage taken \ No newline at end of file diff --git a/Plugin/src/main/resources/enchants/normal/cleave.yml b/Plugin/src/main/resources/enchants/normal/cleave.yml index 47546eea..2f045a63 100644 --- a/Plugin/src/main/resources/enchants/normal/cleave.yml +++ b/Plugin/src/main/resources/enchants/normal/cleave.yml @@ -21,5 +21,5 @@ general-config: maximum-level: 4 config: - damage-percentage-per-level: 10 + damage-percentage-per-level: 5 radius-per-level: 1 \ No newline at end of file diff --git a/Plugin/src/main/resources/enchants/normal/criticals.yml b/Plugin/src/main/resources/enchants/normal/criticals.yml index 182881dc..fc4318e4 100644 --- a/Plugin/src/main/resources/enchants/normal/criticals.yml +++ b/Plugin/src/main/resources/enchants/normal/criticals.yml @@ -20,4 +20,4 @@ general-config: maximum-level: 3 config: - damage-multiplier-per-level: 0.15 \ No newline at end of file + damage-multiplier-per-level: 0.1 \ No newline at end of file diff --git a/Plugin/src/main/resources/enchants/normal/cubism.yml b/Plugin/src/main/resources/enchants/normal/cubism.yml index 507fa40d..98e05789 100644 --- a/Plugin/src/main/resources/enchants/normal/cubism.yml +++ b/Plugin/src/main/resources/enchants/normal/cubism.yml @@ -20,4 +20,4 @@ general-config: maximum-level: 5 config: - multiplier: 0.1 # Damage = level * multiplier + 1 \ No newline at end of file + multiplier: 0.05 # Damage = level * multiplier + 1 \ No newline at end of file diff --git a/Plugin/src/main/resources/enchants/normal/deflection.yml b/Plugin/src/main/resources/enchants/normal/deflection.yml index e8bf06a9..1953a243 100644 --- a/Plugin/src/main/resources/enchants/normal/deflection.yml +++ b/Plugin/src/main/resources/enchants/normal/deflection.yml @@ -20,4 +20,4 @@ general-config: maximum-level: 5 config: - percent-deflected-per-level: 10 # Percent of damage to deal to attacker per level (can go above 100) \ No newline at end of file + percent-deflected-per-level: 5 # Percent of damage to deal to attacker per level (can go above 100) \ No newline at end of file diff --git a/Plugin/src/main/resources/enchants/normal/disable.yml b/Plugin/src/main/resources/enchants/normal/disable.yml index 8c3c3908..3a3b3079 100644 --- a/Plugin/src/main/resources/enchants/normal/disable.yml +++ b/Plugin/src/main/resources/enchants/normal/disable.yml @@ -20,5 +20,5 @@ general-config: maximum-level: 3 config: - allow-not-fully-charged: false #require attack to be at full charge + allow-not-fully-charged: false chance-per-level: 2 #as percentage \ No newline at end of file diff --git a/Plugin/src/main/resources/enchants/normal/disappear.yml b/Plugin/src/main/resources/enchants/normal/disappear.yml index dd3f4edf..b1d597bb 100644 --- a/Plugin/src/main/resources/enchants/normal/disappear.yml +++ b/Plugin/src/main/resources/enchants/normal/disappear.yml @@ -20,5 +20,5 @@ general-config: maximum-level: 4 config: - ticks-per-level: 6 + ticks-per-level: 2 threshold: 5 # If health is below threshold after being damaged, go invisble diff --git a/Plugin/src/main/resources/enchants/normal/diurnal.yml b/Plugin/src/main/resources/enchants/normal/diurnal.yml index b73d30ba..e764428f 100644 --- a/Plugin/src/main/resources/enchants/normal/diurnal.yml +++ b/Plugin/src/main/resources/enchants/normal/diurnal.yml @@ -21,4 +21,4 @@ general-config: maximum-level: 5 config: - per-level-multiplier: 0.05 # Multiplier per level for damage. Calculated as damage * (1 + level * multiplier) + per-level-multiplier: 0.02 # Multiplier per level for damage. Calculated as damage * (1 + level * multiplier) diff --git a/Plugin/src/main/resources/enchants/normal/dullness.yml b/Plugin/src/main/resources/enchants/normal/dullness.yml index faab2f4e..7835df31 100644 --- a/Plugin/src/main/resources/enchants/normal/dullness.yml +++ b/Plugin/src/main/resources/enchants/normal/dullness.yml @@ -21,5 +21,5 @@ general-config: config: allow-not-fully-charged: false #require sword attack to be at full charge - chance-per-level: 5 - duration-per-level: 30 # 20 ticks is one second \ No newline at end of file + chance-per-level: 2 + duration-per-level: 10 # 20 ticks is one second \ No newline at end of file diff --git a/Plugin/src/main/resources/enchants/normal/enderism.yml b/Plugin/src/main/resources/enchants/normal/enderism.yml index 41c7483a..fe920836 100644 --- a/Plugin/src/main/resources/enchants/normal/enderism.yml +++ b/Plugin/src/main/resources/enchants/normal/enderism.yml @@ -21,4 +21,4 @@ general-config: maximum-level: 5 config: - per-level-multiplier: 0.05 # Multiplier per level for damage. Calculated as damage * (1 + level * multiplier) + per-level-multiplier: 0.02 # Multiplier per level for damage. Calculated as damage * (1 + level * multiplier) diff --git a/Plugin/src/main/resources/enchants/normal/endinfusion.yml b/Plugin/src/main/resources/enchants/normal/endinfusion.yml index 42608c5e..33b8d6e0 100644 --- a/Plugin/src/main/resources/enchants/normal/endinfusion.yml +++ b/Plugin/src/main/resources/enchants/normal/endinfusion.yml @@ -21,4 +21,4 @@ general-config: maximum-level: 5 config: - per-level-multiplier: 0.05 # Multiplier per level for damage. Calculated as damage * (1 + level * multiplier) + per-level-multiplier: 0.02 # Multiplier per level for damage. Calculated as damage * (1 + level * multiplier) diff --git a/Plugin/src/main/resources/enchants/normal/extract.yml b/Plugin/src/main/resources/enchants/normal/extract.yml index fe025cb3..c03bf0f1 100644 --- a/Plugin/src/main/resources/enchants/normal/extract.yml +++ b/Plugin/src/main/resources/enchants/normal/extract.yml @@ -20,4 +20,4 @@ general-config: maximum-level: 3 config: - damage-multiplier-per-level: 0.08 # Damage * Level * Multiplier is used to calculate how much health to heal + damage-multiplier-per-level: 0.04 # Damage * Level * Multiplier is used to calculate how much health to heal diff --git a/Plugin/src/main/resources/enchants/normal/famine.yml b/Plugin/src/main/resources/enchants/normal/famine.yml index 1ac45068..5a77449c 100644 --- a/Plugin/src/main/resources/enchants/normal/famine.yml +++ b/Plugin/src/main/resources/enchants/normal/famine.yml @@ -20,5 +20,5 @@ general-config: maximum-level: 3 config: - allow-not-fully-charged: false #require sword attack to be at full charge - chance-per-level: 5 #chance of slowness per level \ No newline at end of file + allow-not-fully-charged: false + chance-per-level: 4 \ No newline at end of file diff --git a/Plugin/src/main/resources/enchants/normal/fireaffinity.yml b/Plugin/src/main/resources/enchants/normal/fireaffinity.yml index 3ca3b68e..92666df7 100644 --- a/Plugin/src/main/resources/enchants/normal/fireaffinity.yml +++ b/Plugin/src/main/resources/enchants/normal/fireaffinity.yml @@ -21,4 +21,4 @@ general-config: maximum-level: 5 config: - percent-more-per-level: 5 # percent more damage to deal per level when on fire + percent-more-per-level: 3 # percent more damage to deal per level when on fire diff --git a/Plugin/src/main/resources/enchants/normal/firststrike.yml b/Plugin/src/main/resources/enchants/normal/firststrike.yml index 7606fa88..7264979c 100644 --- a/Plugin/src/main/resources/enchants/normal/firststrike.yml +++ b/Plugin/src/main/resources/enchants/normal/firststrike.yml @@ -20,4 +20,4 @@ general-config: maximum-level: 5 config: - damage-multiplier-per-level: 0.2 \ No newline at end of file + damage-multiplier-per-level: 0.05 \ No newline at end of file diff --git a/Plugin/src/main/resources/enchants/normal/flinch.yml b/Plugin/src/main/resources/enchants/normal/flinch.yml index eec24d1a..9c2486c6 100644 --- a/Plugin/src/main/resources/enchants/normal/flinch.yml +++ b/Plugin/src/main/resources/enchants/normal/flinch.yml @@ -20,5 +20,5 @@ general-config: maximum-level: 3 config: - chance-per-level: 10 + chance-per-level: 5 ticks-per-level: 10 \ No newline at end of file diff --git a/Plugin/src/main/resources/enchants/normal/frozen.yml b/Plugin/src/main/resources/enchants/normal/frozen.yml index b2722575..b482d94e 100644 --- a/Plugin/src/main/resources/enchants/normal/frozen.yml +++ b/Plugin/src/main/resources/enchants/normal/frozen.yml @@ -20,5 +20,5 @@ general-config: maximum-level: 4 config: - chance-per-point: 5 + chance-per-point: 1 points-per-level: 4 # Points of frozen required to increment slowness level by 1 diff --git a/Plugin/src/main/resources/enchants/normal/fury.yml b/Plugin/src/main/resources/enchants/normal/fury.yml index ec99fc88..770c096b 100644 --- a/Plugin/src/main/resources/enchants/normal/fury.yml +++ b/Plugin/src/main/resources/enchants/normal/fury.yml @@ -21,5 +21,5 @@ general-config: config: allow-not-fully-charged: false #require sword attack to be at full charge - chance-per-level: 5 + chance-per-level: 3 distance-per-level: 4 # Distance for mobs to check \ No newline at end of file diff --git a/Plugin/src/main/resources/enchants/normal/goliath.yml b/Plugin/src/main/resources/enchants/normal/goliath.yml index 3eecdd65..90cc5284 100644 --- a/Plugin/src/main/resources/enchants/normal/goliath.yml +++ b/Plugin/src/main/resources/enchants/normal/goliath.yml @@ -21,3 +21,4 @@ general-config: config: damage-multiplier-per-level: 0.02 # If enemy has 200 health, and you have 20 w/ goliath 5 then your damage is multiplied by: ((200/10)*5*0.02) + 1 = 3 + cap: 3 # Multiplier cap \ No newline at end of file diff --git a/Plugin/src/main/resources/enchants/normal/grapple.yml b/Plugin/src/main/resources/enchants/normal/grapple.yml index 61c91efb..bceb655b 100644 --- a/Plugin/src/main/resources/enchants/normal/grapple.yml +++ b/Plugin/src/main/resources/enchants/normal/grapple.yml @@ -23,4 +23,4 @@ general-config: maximum-level: 2 config: - velocity-multiplier: 1.5 \ No newline at end of file + velocity-multiplier: 0.75 \ No newline at end of file diff --git a/Plugin/src/main/resources/enchants/normal/hellish.yml b/Plugin/src/main/resources/enchants/normal/hellish.yml index f6111c63..0d250ddc 100644 --- a/Plugin/src/main/resources/enchants/normal/hellish.yml +++ b/Plugin/src/main/resources/enchants/normal/hellish.yml @@ -21,4 +21,4 @@ general-config: maximum-level: 5 config: - per-level-multiplier: 0.05 # Multiplier per level for damage. Calculated as damage * (1 + level * multiplier) + per-level-multiplier: 0.02 # Multiplier per level for damage. Calculated as damage * (1 + level * multiplier) diff --git a/Plugin/src/main/resources/enchants/normal/hook.yml b/Plugin/src/main/resources/enchants/normal/hook.yml index 93aec6a3..40f609dc 100644 --- a/Plugin/src/main/resources/enchants/normal/hook.yml +++ b/Plugin/src/main/resources/enchants/normal/hook.yml @@ -21,4 +21,4 @@ general-config: maximum-level: 2 config: - velocity-multiplier: 1.5 \ No newline at end of file + velocity-multiplier: 0.75 \ No newline at end of file diff --git a/Plugin/src/main/resources/enchants/normal/horde.yml b/Plugin/src/main/resources/enchants/normal/horde.yml index ebca4971..4030fcad 100644 --- a/Plugin/src/main/resources/enchants/normal/horde.yml +++ b/Plugin/src/main/resources/enchants/normal/horde.yml @@ -20,5 +20,5 @@ general-config: maximum-level: 4 config: - multiplier-per-level: 0.01 # Multiplier per mob per level (ie 10 mobs at level 4 will be 1.4x more powerful) + multiplier-per-level: 0.005 # Multiplier per mob per level (ie 10 mobs at level 4 will be 1.2x more powerful) distance-per-level: 2.5 diff --git a/Plugin/src/main/resources/enchants/normal/iceshot.yml b/Plugin/src/main/resources/enchants/normal/iceshot.yml index 3a8de456..0f0aeae4 100644 --- a/Plugin/src/main/resources/enchants/normal/iceshot.yml +++ b/Plugin/src/main/resources/enchants/normal/iceshot.yml @@ -20,4 +20,4 @@ general-config: maximum-level: 3 config: - chance-per-level: 5 #chance of slowness per level \ No newline at end of file + chance-per-level: 3 #chance of slowness per level \ No newline at end of file diff --git a/Plugin/src/main/resources/enchants/normal/illusionaspect.yml b/Plugin/src/main/resources/enchants/normal/illusionaspect.yml index 52107d59..55396e85 100644 --- a/Plugin/src/main/resources/enchants/normal/illusionaspect.yml +++ b/Plugin/src/main/resources/enchants/normal/illusionaspect.yml @@ -20,5 +20,5 @@ general-config: maximum-level: 2 config: - chance-per-level: 5 #chance of illusioning opponent per level + chance-per-level: 3 #chance of illusioning opponent per level allow-not-fully-charged: false #dont require sword attack to be at full charge \ No newline at end of file diff --git a/Plugin/src/main/resources/enchants/normal/incandescence.yml b/Plugin/src/main/resources/enchants/normal/incandescence.yml index bb8864af..f00e63c8 100644 --- a/Plugin/src/main/resources/enchants/normal/incandescence.yml +++ b/Plugin/src/main/resources/enchants/normal/incandescence.yml @@ -6,7 +6,7 @@ config-version: 4.0 # Don't edit this. name: "Incandescence" -description: Chance to light your attacker on fire. +description: Light your attacker on fire. obtaining: table: true diff --git a/Plugin/src/main/resources/enchants/normal/instantaneous.yml b/Plugin/src/main/resources/enchants/normal/instantaneous.yml index 4d0aa1fd..c3210852 100644 --- a/Plugin/src/main/resources/enchants/normal/instantaneous.yml +++ b/Plugin/src/main/resources/enchants/normal/instantaneous.yml @@ -20,4 +20,4 @@ general-config: maximum-level: 5 config: - chance-per-level: 5 \ No newline at end of file + chance-per-level: 3 \ No newline at end of file diff --git a/Plugin/src/main/resources/enchants/normal/invigoration.yml b/Plugin/src/main/resources/enchants/normal/invigoration.yml index ea25a45b..fddca397 100644 --- a/Plugin/src/main/resources/enchants/normal/invigoration.yml +++ b/Plugin/src/main/resources/enchants/normal/invigoration.yml @@ -22,5 +22,5 @@ general-config: config: # Each level of invigoration on each piece of armor counts as a point, so if a player is wearing 4 pieces of armor all with Invigoration 3, then that would be 12 points reduction-multiplier: 5 # In percent, so default is take 5% less damage per point - damage-multiplier: 5 # In percent, so default is deal 5% more damage per point + damage-multiplier: 2.5 # In percent, so default is deal 5% more damage per point below-health: 5 # Activates below specified health \ No newline at end of file diff --git a/Plugin/src/main/resources/enchants/normal/lesion.yml b/Plugin/src/main/resources/enchants/normal/lesion.yml index 554d719a..b9150f78 100644 --- a/Plugin/src/main/resources/enchants/normal/lesion.yml +++ b/Plugin/src/main/resources/enchants/normal/lesion.yml @@ -20,6 +20,6 @@ general-config: maximum-level: 3 config: - chance-per-level: 5 #chance of bleeding per level + chance-per-level: 3 #chance of bleeding per level bleed-damage: 1 amount-per-level: 2 # Bleed number per level diff --git a/Plugin/src/main/resources/enchants/normal/liquidshot.yml b/Plugin/src/main/resources/enchants/normal/liquidshot.yml index 757cd347..9a57fe31 100644 --- a/Plugin/src/main/resources/enchants/normal/liquidshot.yml +++ b/Plugin/src/main/resources/enchants/normal/liquidshot.yml @@ -20,4 +20,4 @@ general-config: maximum-level: 5 config: - multiplier: 0.2 # Damage = level * multiplier + 1. Damage on blaze/magma cube with Liquid Shot 5 = 5 * 0.2 + 1 = 2x damage \ No newline at end of file + multiplier: 0.05 # Damage = level * multiplier + 1. Damage on blaze/magma cube with Liquid Shot 5 = 5 * 0.05 + 1 = 1.25x damage \ No newline at end of file diff --git a/Plugin/src/main/resources/enchants/normal/marking.yml b/Plugin/src/main/resources/enchants/normal/marking.yml index ea6d7e72..4806b942 100644 --- a/Plugin/src/main/resources/enchants/normal/marking.yml +++ b/Plugin/src/main/resources/enchants/normal/marking.yml @@ -21,4 +21,4 @@ general-config: config: ticks-per-level: 15 # Ticks to weaken player for per level - multiplier-while-weak: 1.3 # Times more damage to deal while weakened + multiplier-while-weak: 1.25 # Times more damage to deal while weakened diff --git a/Plugin/src/main/resources/enchants/normal/marksman.yml b/Plugin/src/main/resources/enchants/normal/marksman.yml index 635166f0..f49421d5 100644 --- a/Plugin/src/main/resources/enchants/normal/marksman.yml +++ b/Plugin/src/main/resources/enchants/normal/marksman.yml @@ -19,4 +19,4 @@ general-config: conflicts: [] config: - remove-arrow-after-ticks: 80 #to prevent server lag, as arrows shot into the sky will not land. there are 20 ticks in a second. + remove-arrow-after-ticks: 120 #to prevent server lag, as arrows shot into the sky will not land. there are 20 ticks in a second. diff --git a/Plugin/src/main/resources/enchants/normal/netheric.yml b/Plugin/src/main/resources/enchants/normal/netheric.yml index 9d9fd4ac..26848d37 100644 --- a/Plugin/src/main/resources/enchants/normal/netheric.yml +++ b/Plugin/src/main/resources/enchants/normal/netheric.yml @@ -21,4 +21,4 @@ general-config: maximum-level: 5 config: - per-level-multiplier: 0.05 # Multiplier per level for damage. Calculated as damage * (1 + level * multiplier) + per-level-multiplier: 0.02 # Multiplier per level for damage. Calculated as damage * (1 + level * multiplier) diff --git a/Plugin/src/main/resources/enchants/normal/netherinfusion.yml b/Plugin/src/main/resources/enchants/normal/netherinfusion.yml index 839bfd53..14740bb9 100644 --- a/Plugin/src/main/resources/enchants/normal/netherinfusion.yml +++ b/Plugin/src/main/resources/enchants/normal/netherinfusion.yml @@ -21,4 +21,4 @@ general-config: maximum-level: 5 config: - per-level-multiplier: 0.05 # Multiplier per level for damage. Calculated as damage * (1 + level * multiplier) + per-level-multiplier: 0.02 # Multiplier per level for damage. Calculated as damage * (1 + level * multiplier) diff --git a/Plugin/src/main/resources/enchants/normal/nocturnal.yml b/Plugin/src/main/resources/enchants/normal/nocturnal.yml index f429c14f..28334545 100644 --- a/Plugin/src/main/resources/enchants/normal/nocturnal.yml +++ b/Plugin/src/main/resources/enchants/normal/nocturnal.yml @@ -21,4 +21,4 @@ general-config: maximum-level: 5 config: - per-level-multiplier: 0.05 # Multiplier per level for damage. Calculated as damage * (1 + level * multiplier) + per-level-multiplier: 0.02 # Multiplier per level for damage. Calculated as damage * (1 + level * multiplier) diff --git a/Plugin/src/main/resources/enchants/normal/paladin.yml b/Plugin/src/main/resources/enchants/normal/paladin.yml index 8a7e7891..75c8c735 100644 --- a/Plugin/src/main/resources/enchants/normal/paladin.yml +++ b/Plugin/src/main/resources/enchants/normal/paladin.yml @@ -20,4 +20,4 @@ general-config: maximum-level: 3 config: - damage-multiplier-per-level: 0.2 # This number can be relatively high as it is rare for a player to be riding a horse, therefore rewarding that. \ No newline at end of file + damage-multiplier-per-level: 0.1 # This number can be relatively high as it is rare for a player to be riding a horse, therefore rewarding that. \ No newline at end of file diff --git a/Plugin/src/main/resources/enchants/normal/parasitic.yml b/Plugin/src/main/resources/enchants/normal/parasitic.yml index ec35a96a..db0a1a09 100644 --- a/Plugin/src/main/resources/enchants/normal/parasitic.yml +++ b/Plugin/src/main/resources/enchants/normal/parasitic.yml @@ -20,4 +20,4 @@ general-config: maximum-level: 3 config: - damage-multiplier-per-level: 0.08 # Damage * Level * Multiplier is used to calculate how much health to heal + damage-multiplier-per-level: 0.04 # Damage * Level * Multiplier is used to calculate how much health to heal diff --git a/Plugin/src/main/resources/enchants/normal/proximity.yml b/Plugin/src/main/resources/enchants/normal/proximity.yml index 7170b863..53b9ff7d 100644 --- a/Plugin/src/main/resources/enchants/normal/proximity.yml +++ b/Plugin/src/main/resources/enchants/normal/proximity.yml @@ -21,4 +21,4 @@ general-config: config: when-closer-than-blocks: 1.5 - percent-more-per-level: 10 # percent more damage to deal per level when close + percent-more-per-level: 5 # percent more damage to deal per level when close diff --git a/Plugin/src/main/resources/enchants/normal/quadrilateralism.yml b/Plugin/src/main/resources/enchants/normal/quadrilateralism.yml index 7345f94d..587ee5ab 100644 --- a/Plugin/src/main/resources/enchants/normal/quadrilateralism.yml +++ b/Plugin/src/main/resources/enchants/normal/quadrilateralism.yml @@ -20,4 +20,4 @@ general-config: maximum-level: 5 config: - multiplier: 0.1 # Damage = level * multiplier + 1 \ No newline at end of file + multiplier: 0.05 # Damage = level * multiplier + 1 \ No newline at end of file diff --git a/Plugin/src/main/resources/enchants/normal/radiance.yml b/Plugin/src/main/resources/enchants/normal/radiance.yml index efbe9901..6cbee055 100644 --- a/Plugin/src/main/resources/enchants/normal/radiance.yml +++ b/Plugin/src/main/resources/enchants/normal/radiance.yml @@ -21,4 +21,4 @@ general-config: config: radius-multiplier: 3 # Radius Multiplier * level = Radius of which to damage entities - duration-per-level: 15 # Duration (in ticks) to make entity glow for \ No newline at end of file + duration-per-level: 10 # Duration (in ticks) to make entity glow for \ No newline at end of file diff --git a/Plugin/src/main/resources/enchants/normal/rage.yml b/Plugin/src/main/resources/enchants/normal/rage.yml index 0d8154ea..96555af1 100644 --- a/Plugin/src/main/resources/enchants/normal/rage.yml +++ b/Plugin/src/main/resources/enchants/normal/rage.yml @@ -20,5 +20,5 @@ general-config: maximum-level: 5 config: - chance-per-level: 5 + chance-per-level: 3 distance-per-level: 4 # Distance for mobs to check \ No newline at end of file diff --git a/Plugin/src/main/resources/enchants/normal/reel.yml b/Plugin/src/main/resources/enchants/normal/reel.yml index c25bb043..dbb1fa31 100644 --- a/Plugin/src/main/resources/enchants/normal/reel.yml +++ b/Plugin/src/main/resources/enchants/normal/reel.yml @@ -20,4 +20,4 @@ general-config: maximum-level: 2 config: - velocity-multiplier: 1.5 \ No newline at end of file + velocity-multiplier: 0.75 \ No newline at end of file diff --git a/Plugin/src/main/resources/enchants/normal/shotassist.yml b/Plugin/src/main/resources/enchants/normal/shotassist.yml index 9311a506..4293ca55 100644 --- a/Plugin/src/main/resources/enchants/normal/shotassist.yml +++ b/Plugin/src/main/resources/enchants/normal/shotassist.yml @@ -20,4 +20,4 @@ general-config: maximum-level: 3 config: - damage-multiplier-per-level: 0.03 + damage-multiplier-per-level: 0.02 diff --git a/Plugin/src/main/resources/enchants/normal/slicing.yml b/Plugin/src/main/resources/enchants/normal/slicing.yml index 4b7dde26..44576c25 100644 --- a/Plugin/src/main/resources/enchants/normal/slicing.yml +++ b/Plugin/src/main/resources/enchants/normal/slicing.yml @@ -20,6 +20,6 @@ general-config: maximum-level: 5 config: - damage-per-level: 0.8 #Damage given to opponent per level + damage-per-level: 1 #Damage given to opponent per level cooldown: 20 #Cooldown in ticks until player can attack another entity with slicing damage-elytra: true \ No newline at end of file diff --git a/Plugin/src/main/resources/enchants/normal/stamina.yml b/Plugin/src/main/resources/enchants/normal/stamina.yml index 53979273..066156b6 100644 --- a/Plugin/src/main/resources/enchants/normal/stamina.yml +++ b/Plugin/src/main/resources/enchants/normal/stamina.yml @@ -20,4 +20,4 @@ general-config: maximum-level: 4 config: - chance-per-level: 18 # Chance to "ignore" food loss (in percent) every time you lose food while sprinting \ No newline at end of file + chance-per-level: 10 # Chance to "ignore" food loss (in percent) every time you lose food while sprinting \ No newline at end of file diff --git a/Plugin/src/main/resources/enchants/normal/strayaspect.yml b/Plugin/src/main/resources/enchants/normal/strayaspect.yml index c722e281..8e7f675c 100644 --- a/Plugin/src/main/resources/enchants/normal/strayaspect.yml +++ b/Plugin/src/main/resources/enchants/normal/strayaspect.yml @@ -20,5 +20,5 @@ general-config: maximum-level: 3 config: - allow-not-fully-charged: false #require sword attack to be at full charge - chance-per-level: 5 #chance of slowness per level \ No newline at end of file + allow-not-fully-charged: false + chance-per-level: 2 #chance of slowness per level \ No newline at end of file diff --git a/Plugin/src/main/resources/enchants/normal/thor.yml b/Plugin/src/main/resources/enchants/normal/thor.yml index fa04ac34..c4558916 100644 --- a/Plugin/src/main/resources/enchants/normal/thor.yml +++ b/Plugin/src/main/resources/enchants/normal/thor.yml @@ -20,6 +20,6 @@ general-config: maximum-level: 4 config: - chance-per-level: 2.5 + chance-per-level: 2 allow-not-fully-charged: false # dont require sword attack to be at full charge lightning-damage: 2.5 \ No newline at end of file diff --git a/Plugin/src/main/resources/enchants/normal/toxic.yml b/Plugin/src/main/resources/enchants/normal/toxic.yml index 79ecc5ed..62938a1a 100644 --- a/Plugin/src/main/resources/enchants/normal/toxic.yml +++ b/Plugin/src/main/resources/enchants/normal/toxic.yml @@ -20,5 +20,5 @@ general-config: maximum-level: 2 config: - chance-per-level: 10 #chance of poisoning opponent per level - allow-not-fully-charged: false #dont require sword attack to be at full charge \ No newline at end of file + chance-per-level: 3 #chance of poisoning opponent per level + allow-not-fully-charged: false \ No newline at end of file diff --git a/Plugin/src/main/resources/enchants/normal/vampireaspect.yml b/Plugin/src/main/resources/enchants/normal/vampireaspect.yml index f44f7919..b74d2f83 100644 --- a/Plugin/src/main/resources/enchants/normal/vampireaspect.yml +++ b/Plugin/src/main/resources/enchants/normal/vampireaspect.yml @@ -20,5 +20,5 @@ general-config: maximum-level: 2 config: - chance-per-level: 10 #chance of withering opponent per level + chance-per-level: 3 #chance of withering opponent per level allow-not-fully-charged: false #dont require sword attack to be at full charge \ No newline at end of file diff --git a/Plugin/src/main/resources/enchants/normal/venom.yml b/Plugin/src/main/resources/enchants/normal/venom.yml index 6cfd0dc3..c14dae2b 100644 --- a/Plugin/src/main/resources/enchants/normal/venom.yml +++ b/Plugin/src/main/resources/enchants/normal/venom.yml @@ -20,4 +20,4 @@ general-config: maximum-level: 3 config: - chance-per-level: 5 #chance of wither per level \ No newline at end of file + chance-per-level: 2 #chance of wither per level \ No newline at end of file diff --git a/Plugin/src/main/resources/enchants/normal/voidaffinity.yml b/Plugin/src/main/resources/enchants/normal/voidaffinity.yml index 462df203..35a63f34 100644 --- a/Plugin/src/main/resources/enchants/normal/voidaffinity.yml +++ b/Plugin/src/main/resources/enchants/normal/voidaffinity.yml @@ -21,4 +21,4 @@ general-config: maximum-level: 5 config: - per-level-multiplier: 0.05 # Multiplier per level for damage. Calculated as damage * (1 + level * multiplier) + per-level-multiplier: 0.02 # Multiplier per level for damage. Calculated as damage * (1 + level * multiplier) diff --git a/Plugin/src/main/resources/enchants/normal/wateraffinity.yml b/Plugin/src/main/resources/enchants/normal/wateraffinity.yml index d7394cc8..17195183 100644 --- a/Plugin/src/main/resources/enchants/normal/wateraffinity.yml +++ b/Plugin/src/main/resources/enchants/normal/wateraffinity.yml @@ -21,4 +21,4 @@ general-config: maximum-level: 5 config: - percent-more-per-level: 5 # percent more damage to deal per level when on fire + percent-more-per-level: 4 # percent more damage to deal per level when on fire diff --git a/Plugin/src/main/resources/enchants/normal/weakening.yml b/Plugin/src/main/resources/enchants/normal/weakening.yml index dc693ac8..de62a7e6 100644 --- a/Plugin/src/main/resources/enchants/normal/weakening.yml +++ b/Plugin/src/main/resources/enchants/normal/weakening.yml @@ -20,5 +20,5 @@ general-config: maximum-level: 4 config: - ticks-per-level: 5 # Ticks to weaken player for per level - multiplier-while-weak: 1.5 # Times more damage to deal while weakened + ticks-per-level: 1.5 # Ticks to weaken player for per level + multiplier-while-weak: 1.25 # Times more damage to deal while weakened diff --git a/Plugin/src/main/resources/enchants/normal/wound.yml b/Plugin/src/main/resources/enchants/normal/wound.yml index c735f5f7..25bf1f79 100644 --- a/Plugin/src/main/resources/enchants/normal/wound.yml +++ b/Plugin/src/main/resources/enchants/normal/wound.yml @@ -20,6 +20,6 @@ general-config: maximum-level: 3 config: - chance-per-level: 5 #chance of bleeding per level + chance-per-level: 3 #chance of bleeding per level bleed-damage: 1 amount-per-level: 2 # Bleed number per level diff --git a/Plugin/src/main/resources/enchants/special/carve.yml b/Plugin/src/main/resources/enchants/special/carve.yml index dd4b5def..8c6c2616 100644 --- a/Plugin/src/main/resources/enchants/special/carve.yml +++ b/Plugin/src/main/resources/enchants/special/carve.yml @@ -21,5 +21,5 @@ general-config: maximum-level: 4 config: - damage-percentage-per-level: 25 - radius-per-level: 1.5 \ No newline at end of file + damage-percentage-per-level: 20 + radius-per-level: 1 \ No newline at end of file diff --git a/Plugin/src/main/resources/enchants/special/confusion.yml b/Plugin/src/main/resources/enchants/special/confusion.yml index c328c39c..2851d750 100644 --- a/Plugin/src/main/resources/enchants/special/confusion.yml +++ b/Plugin/src/main/resources/enchants/special/confusion.yml @@ -20,5 +20,5 @@ general-config: maximum-level: 4 config: - chance-per-level: 2.5 #chance of shuffling opponents hotbar per level + chance-per-level: 2 #chance of shuffling opponents hotbar per level allow-not-fully-charged: false #dont require sword attack to be at full charge \ No newline at end of file diff --git a/Plugin/src/main/resources/enchants/special/instability.yml b/Plugin/src/main/resources/enchants/special/instability.yml index d5662955..1c397e20 100644 --- a/Plugin/src/main/resources/enchants/special/instability.yml +++ b/Plugin/src/main/resources/enchants/special/instability.yml @@ -20,5 +20,5 @@ general-config: maximum-level: 3 config: - fire: true + fire: false break-blocks: false \ No newline at end of file diff --git a/Plugin/src/main/resources/enchants/special/razor.yml b/Plugin/src/main/resources/enchants/special/razor.yml index 377607ab..323d7574 100644 --- a/Plugin/src/main/resources/enchants/special/razor.yml +++ b/Plugin/src/main/resources/enchants/special/razor.yml @@ -27,5 +27,5 @@ general-config: config: per-level-multiplier: 1.0 # Vanilla sharpness is 0.5*level + 0.5 extra damage. Razor formula is multiplier*level + base extra damage. - base-damage: 12.5 # Vanilla Smite 5/BOA 5 extra damage is 12.5 + base-damage: 7.5 # Vanilla Smite 5/BOA 5 extra damage is 12.5 decrease-if-cooldown: true \ No newline at end of file