Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
uujuju1 committed May 6, 2022
2 parents a7ec0fd + fbb8642 commit 3955bcf
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/oblivion/content/OblivionUnits.java
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ public void load() {
}};
taleni = new UnitType("taleni") {{
health = 7500;
armor = 11f;
speed = 1f;
armor = 10f;
speed = 0.6f;
flying = true;
constructor = UnitEntity::create;
hitSize = 30f;
Expand Down Expand Up @@ -181,7 +181,7 @@ public void load() {
}};
kolete = new UnitType("kolete") {{
health = 22000;
armor = 15f;
armor = 14f;
speed = 0.7f;
flying = true;
constructor = UnitEntity::create;
Expand Down Expand Up @@ -345,7 +345,7 @@ public void load() {
}};
dopretile = new UnitType("dopretile") {{
health = 13000;
speed = 1.2f;
speed = 1.0f;
armor = 8f;
flying = true;
constructor = UnitEntity::create;
Expand Down Expand Up @@ -399,7 +399,7 @@ public void load() {
}};
niboletra = new OblivionUnitType("niboletra") {{
health = 20000;
armor = 12f;
armor = 11f;
speed = 0.7f;
flying = true;
constructor = UnitEntity::create;
Expand Down Expand Up @@ -456,7 +456,7 @@ public void load() {
Fill.circle(unit.x + Angles.trnsx(unit.rotation - 90, 0, -20), unit.y + Angles.trnsy(unit.rotation - 90, 0, -20), (6 + Mathf.absin(Time.time, 2, 10 / 4)) / 2 * unit.elevation);
Drawf.tri(unit.x + Angles.trnsx(unit.rotation - 90, 0, -20 - unit.elevation), unit.y + Angles.trnsy(unit.rotation - 90, 0, -20 - unit.elevation), (14 + Mathf.absin(Time.time, 2, 13 / 2)) / 2 * unit.elevation, (15 + Mathf.absin(Time.time, 2, 10 / 2)) / 2 * unit.elevation, unit.rotation - 180);
};
rotateSpeed = 0.7f;
rotateSpeed = 1.4f;
armor = 20f;
mechStepParticles = true;
mechStepShake = 0.75f;
Expand Down Expand Up @@ -603,7 +603,7 @@ public void load() {
}};
archaranid = new UnitType("archaranid") {{
health = 63500;
armor = 17f;
armor = 18f;
speed = 0.3f;
legCount = 8;
legMoveSpace = 1.2f;
Expand Down

0 comments on commit 3955bcf

Please sign in to comment.