Added plasma drill

This commit is contained in:
Anuken
2018-03-31 14:51:24 -04:00
parent 4ff3517343
commit dd0ad495f7
10 changed files with 449 additions and 400 deletions

View File

@@ -204,6 +204,14 @@ public class Fx{
});
}),
pulverizeRedder = new Effect(40, e -> {
Angles.randLenVectors(e.id, 5, 3f + e.ifract()*9f, (x, y)->{
Draw.color(Color.valueOf("ff7b69"), stoneGray, e.ifract());
Fill.poly(e.x + x, e.y + y, 4, e.fract() * 2.5f + 0.5f, 45);
Draw.reset();
});
}),
pulverizeSmall = new Effect(30, e -> {
Angles.randLenVectors(e.id, 3, e.ifract()*5f, (x, y)->{
Draw.color(stoneGray);
@@ -400,6 +408,14 @@ public class Fx{
});
}),
mineMassive = new Effect(50, e -> {
Angles.randLenVectors(e.id, 8, 5f + e.ifract()*14f, (x, y)->{
Draw.color(e.color, Color.LIGHT_GRAY, e.ifract());
Fill.poly(e.x + x, e.y + y, 4, e.fract() * 2.5f + 0.5f, 45);
Draw.reset();
});
}),
sparkbig = new Effect(11, e -> {
Lines.stroke(1f);
Draw.color(lightRed, Color.GRAY, e.ifract());