Skip to content
This repository was archived by the owner on May 23, 2025. It is now read-only.

Commit 5743fa7

Browse files
committed
Re-balanced kits
1 parent bc11c6a commit 5743fa7

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

src/main/java/net/foulest/kitpvp/kits/type/Archer.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,7 @@ public ItemStack getDisplayItem() {
5252

5353
@Override
5454
public PotionEffect[] getPotionEffects() {
55-
return new PotionEffect[]{
56-
new PotionEffect(PotionEffectType.SPEED, Integer.MAX_VALUE, 0, false, false)
57-
};
55+
return new PotionEffect[0];
5856
}
5957

6058
@Override

src/main/java/net/foulest/kitpvp/kits/type/Pyro.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public PotionEffect[] getPotionEffects() {
6060
@Override
6161
public List<ItemBuilder> getItems() {
6262
// Damage value: 5.0
63-
ItemBuilder sword = new ItemBuilder(Material.STONE_SWORD).enchant(Enchantment.FIRE_ASPECT, 1).unbreakable(true).hideInfo();
63+
ItemBuilder sword = new ItemBuilder(Material.STONE_SWORD).unbreakable(true).hideInfo();
6464

6565
ItemBuilder special = new ItemBuilder(Material.FIREBALL).name("&aIgnite &7(Right Click)")
6666
.lore("&7Ignites players on fire.");

src/main/resources/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ kitpvp:
120120
enabled: true
121121
cost: 250
122122
ability:
123-
cooldown: 20
123+
cooldown: 15
124124
knight:
125125
enabled: true
126126
cost: 0
@@ -142,7 +142,7 @@ kitpvp:
142142
ability:
143143
cooldown: 30
144144
duration: 5
145-
damage: 6.0
145+
damage: 5.0
146146
tank:
147147
enabled: true
148148
cost: 250

0 commit comments

Comments
 (0)