Multiple UI changes, new logo, other misc. changes

This commit is contained in:
Anuken
2017-09-19 21:20:31 -04:00
parent 28bb82ef4b
commit 8b22ef2691
22 changed files with 179 additions and 151 deletions
@@ -41,6 +41,7 @@ public abstract class BulletType extends BaseBulletType<Bullet>{
shell = new BulletType(1.1f, 110){
{
lifetime = 110f;
hitsize = 8f;
}
public void draw(Bullet b){
float rad = 8f;
@@ -68,13 +69,13 @@ public abstract class BulletType extends BaseBulletType<Bullet>{
Effects.effect("shellsmoke", b);
Effects.effect("shellexplosion", b);
Angles.circle(20, f->{
Angles.circle(25, f->{
Angles.translation(f, 5f);
new Bullet(shellshot, b.owner, b.x + Angles.x(), b.y + Angles.y(), f).add();
});
}
},
shellshot = new BulletType(1.5f, 5){
shellshot = new BulletType(1.5f, 6){
{
lifetime = 7f;
}
@@ -50,7 +50,7 @@ public class Player extends DestructibleEntity{
float speed = this.speed;
if(Vars.debug)
speed = 3f;
speed = 2f;
if(health < maxhealth && Timers.get(this, 50))
health ++;