Skip to content

Commit

Permalink
Re-balanced kits
Browse files Browse the repository at this point in the history
  • Loading branch information
Foulest committed Oct 31, 2024
1 parent bc11c6a commit 5743fa7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
4 changes: 1 addition & 3 deletions src/main/java/net/foulest/kitpvp/kits/type/Archer.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,7 @@ public ItemStack getDisplayItem() {

@Override
public PotionEffect[] getPotionEffects() {
return new PotionEffect[]{
new PotionEffect(PotionEffectType.SPEED, Integer.MAX_VALUE, 0, false, false)
};
return new PotionEffect[0];
}

@Override
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/net/foulest/kitpvp/kits/type/Pyro.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public PotionEffect[] getPotionEffects() {
@Override
public List<ItemBuilder> getItems() {
// Damage value: 5.0
ItemBuilder sword = new ItemBuilder(Material.STONE_SWORD).enchant(Enchantment.FIRE_ASPECT, 1).unbreakable(true).hideInfo();
ItemBuilder sword = new ItemBuilder(Material.STONE_SWORD).unbreakable(true).hideInfo();

ItemBuilder special = new ItemBuilder(Material.FIREBALL).name("&aIgnite &7(Right Click)")
.lore("&7Ignites players on fire.");
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ kitpvp:
enabled: true
cost: 250
ability:
cooldown: 20
cooldown: 15
knight:
enabled: true
cost: 0
Expand All @@ -142,7 +142,7 @@ kitpvp:
ability:
cooldown: 30
duration: 5
damage: 6.0
damage: 5.0
tank:
enabled: true
cost: 250
Expand Down

0 comments on commit 5743fa7

Please sign in to comment.