| package com.legacy.aether.entities.particles; | |
| import net.minecraft.client.particle.EntityPortalFX; | |
| import net.minecraft.world.World; | |
| public class ParticleCrystalLeaves extends EntityPortalFX { | |
| public ParticleCrystalLeaves(World world, double xCoord, double yCoord, double zCoord, double xSpeed, double ySpeed, double zSpeed) { | |
| super(world, xCoord, yCoord, zCoord, xSpeed, ySpeed, zSpeed); | |
| this.particleBlue = 0.7450980392156863F; | |
| this.particleRed = 0.0F; | |
| this.particleGreen = 0.6450980392156863F; | |
| } | |
| } |