diff --git a/core/src/com/dungeoncrawler/model/entities/Archer.java b/core/src/com/dungeoncrawler/model/entities/Archer.java index b169d3a..8c0b24d 100644 --- a/core/src/com/dungeoncrawler/model/entities/Archer.java +++ b/core/src/com/dungeoncrawler/model/entities/Archer.java @@ -16,12 +16,12 @@ public class Archer extends Entity{ this.maxhp = 75*lvl; this.hp = this.maxhp; this.direction = 1; - this.dmg = 7*lvl; + this.dmg = 6*lvl; this.id = 0; this.type = 1; minRange = 64; maxRange = 184; - attackSpeed = 30; + attackSpeed = 20; counter = 0; // TODO: Sinnvolle Werte finden diff --git a/core/src/com/dungeoncrawler/model/entities/Earthwizard.java b/core/src/com/dungeoncrawler/model/entities/Earthwizard.java index 29c5e3f..d9b7602 100644 --- a/core/src/com/dungeoncrawler/model/entities/Earthwizard.java +++ b/core/src/com/dungeoncrawler/model/entities/Earthwizard.java @@ -22,15 +22,15 @@ public class Earthwizard extends Entity{ public Earthwizard(float xPos, float yPos, int lvl) { super(xPos, yPos, lvl); - this.maxhp = 80*lvl; + this.maxhp = 75*lvl; this.hp = this.maxhp; this.direction = 1; - this.dmg = 12*lvl; + this.dmg = 10*lvl; this.id = 8; this.type = 1; minRange = 84; maxRange = 144; - attackSpeed = 50; + attackSpeed = 45; counter = 0; // TODO: Sinnvolle Werte finden diff --git a/core/src/com/dungeoncrawler/model/entities/Firearcher.java b/core/src/com/dungeoncrawler/model/entities/Firearcher.java index d6ac9a8..125deae 100644 --- a/core/src/com/dungeoncrawler/model/entities/Firearcher.java +++ b/core/src/com/dungeoncrawler/model/entities/Firearcher.java @@ -13,15 +13,15 @@ public class Firearcher extends Entity{ public Firearcher(float xPos, float yPos, int lvl) { super(xPos, yPos, lvl); - this.maxhp = 85*lvl; + this.maxhp = 80*lvl; this.hp = this.maxhp; this.direction = 1; - this.dmg = 9*lvl; + this.dmg = 8*lvl; this.id = 13; this.type = 1; minRange = 84; maxRange = 184; - attackSpeed = 40; + attackSpeed = 30; counter = 0; // TODO: Sinnvolle Werte finden diff --git a/core/src/com/dungeoncrawler/model/entities/Fireswordsman.java b/core/src/com/dungeoncrawler/model/entities/Fireswordsman.java index 14b6b36..23273bd 100644 --- a/core/src/com/dungeoncrawler/model/entities/Fireswordsman.java +++ b/core/src/com/dungeoncrawler/model/entities/Fireswordsman.java @@ -8,10 +8,10 @@ public class Fireswordsman extends Entity { public Fireswordsman(float xPos, float yPos, int lvl) { super(xPos, yPos, lvl); - this.maxhp = 130*lvl; + this.maxhp = 120*lvl; this.hp = this.maxhp; this.direction = 1; - this.dmg = 20*lvl; + this.dmg = 18*lvl; this.id = 10; this.type = 0; diff --git a/core/src/com/dungeoncrawler/model/entities/Firewizard.java b/core/src/com/dungeoncrawler/model/entities/Firewizard.java index 8b433c6..793d637 100644 --- a/core/src/com/dungeoncrawler/model/entities/Firewizard.java +++ b/core/src/com/dungeoncrawler/model/entities/Firewizard.java @@ -22,10 +22,10 @@ public class Firewizard extends Entity{ public Firewizard(float xPos, float yPos, int lvl) { super(xPos, yPos, lvl); - this.maxhp = 80*lvl; + this.maxhp = 75*lvl; this.hp = this.maxhp; this.direction = 1; - this.dmg = 12*lvl; + this.dmg = 10*lvl; this.id = 6; this.type = 1; minRange = 64; diff --git a/core/src/com/dungeoncrawler/model/entities/Icearcher.java b/core/src/com/dungeoncrawler/model/entities/Icearcher.java index af5461f..64c8165 100644 --- a/core/src/com/dungeoncrawler/model/entities/Icearcher.java +++ b/core/src/com/dungeoncrawler/model/entities/Icearcher.java @@ -16,12 +16,12 @@ public class Icearcher extends Entity{ this.maxhp = 100*lvl; this.hp = this.maxhp; this.direction = 1; - this.dmg = 12*lvl; + this.dmg = 10*lvl; this.id = 11; this.type = 1; minRange = 64; maxRange = 184; - attackSpeed = 50; + attackSpeed = 40; counter = 0; // TODO: Sinnvolle Werte finden diff --git a/core/src/com/dungeoncrawler/model/entities/Iceswordsman.java b/core/src/com/dungeoncrawler/model/entities/Iceswordsman.java index 28bfad3..c77a63b 100644 --- a/core/src/com/dungeoncrawler/model/entities/Iceswordsman.java +++ b/core/src/com/dungeoncrawler/model/entities/Iceswordsman.java @@ -8,10 +8,10 @@ public class Iceswordsman extends Entity { public Iceswordsman(float xPos, float yPos, int lvl) { super(xPos, yPos, lvl); - this.maxhp = 130*lvl; + this.maxhp = 120*lvl; this.hp = this.maxhp; this.direction = 1; - this.dmg = 20*lvl; + this.dmg = 18*lvl; this.id = 15; this.type = 0; diff --git a/core/src/com/dungeoncrawler/model/entities/Icewizard.java b/core/src/com/dungeoncrawler/model/entities/Icewizard.java index 4caed07..45c3f8f 100644 --- a/core/src/com/dungeoncrawler/model/entities/Icewizard.java +++ b/core/src/com/dungeoncrawler/model/entities/Icewizard.java @@ -25,7 +25,7 @@ public class Icewizard extends Entity{ this.maxhp = 80*lvl; this.hp = this.maxhp; this.direction = 1; - this.dmg = 12*lvl; + this.dmg = 10*lvl; this.id = 16; this.type = 1; minRange = 64; diff --git a/core/src/com/dungeoncrawler/model/entities/Swordsman.java b/core/src/com/dungeoncrawler/model/entities/Swordsman.java index 52f738d..6453c66 100644 --- a/core/src/com/dungeoncrawler/model/entities/Swordsman.java +++ b/core/src/com/dungeoncrawler/model/entities/Swordsman.java @@ -11,7 +11,7 @@ public class Swordsman extends Entity { this.maxhp = 100*lvl; this.hp = this.maxhp; this.direction = 1; - this.dmg = 17*lvl; + this.dmg = 16*lvl; this.id = 1; this.type = 0;