Added new crafters, pumps and conduits

This commit is contained in:
Anuken
2017-11-19 00:22:26 -05:00
parent 858791de3b
commit 8e602a8b5b
19 changed files with 198 additions and 101 deletions

View File

@@ -236,7 +236,7 @@ public abstract class BulletType extends BaseBulletType<Bullet>{
lifetime = 65f;
}
public void draw(Bullet b){
Draw.color(Color.valueOf("c2efd7"), Color.valueOf("72deaf"), b.time/lifetime);
Draw.color(Color.valueOf("efa66c"), Color.valueOf("72deaf"), b.time/lifetime);
float size = 7f-b.time/lifetime*6f;
Draw.rect("circle", b.x, b.y, size, size);
Draw.reset();

View File

@@ -82,7 +82,7 @@ public class EMP extends TimedEntity{
}
Draw.thick(fract()*2f);
Draw.circle(x, y, radius * Vars.tilesize);
Draw.polygon(34, x, y, radius * Vars.tilesize);
Draw.reset();
}