sublimate progress

This commit is contained in:
Anuken
2021-11-24 12:50:43 -05:00
parent 211c0b2e71
commit 3512190373
4 changed files with 27 additions and 7 deletions

View File

@@ -2726,7 +2726,9 @@ public class Blocks implements ContentList{
range = 170f;
//TODO unfinished, needs damage + proper mechanics
shootType = new ContinuousFlameBulletType(){{
damage = 4f;
length = range;
}};
shootLength = 7f;

View File

@@ -549,6 +549,14 @@ public class Fx{
});
}),
hitFlameBeam = new Effect(19, e -> {
color(e.color);
randLenVectors(e.id, 7, e.finpow() * 11f, (x, y) -> {
Fill.circle(e.x + x, e.y + y, e.fout() * 2 + 0.5f);
});
}),
hitMeltdown = new Effect(12, e -> {
color(Pal.meltdownHit);
stroke(e.fout() * 2f);