Add some of the Easter Particles

This commit is contained in:
2025-03-03 09:35:42 +01:00
parent 85c0db873c
commit 0a60654a28
16 changed files with 251 additions and 36 deletions
@@ -24,6 +24,10 @@ public interface ParticleElement {
return new Particle.DustOptions(randomColor(), randomSize());
}
default Particle.DustOptions withColor(int r, int g, int b) {
return new Particle.DustOptions(Color.fromRGB(r, g, b), randomSize());
}
default void display(Location location, Player root, boolean onlySelf, boolean onlyOther, Consumer<Player> consumer) {
if (onlySelf) {
consumer.accept(root);