Comment stuff

This commit is contained in:
MEEP of Faith 2020-10-22 15:18:12 -07:00
parent da3c11a201
commit 5203d17910

View File

@ -13,17 +13,16 @@ public class MovementLightningAbility extends Ability{
public float damage = 35f;
//Ticks between firing
public float reload = 15f;
//Length of lightning
//Length of the lightning
public int length = 12;
//Speeds for when to start lightninging and when to stop getting faster
public float minSpeed = 0.8f, maxSpeed = 1.2f;
//Shoot effect
public Effect shootEffect = Fx.sparkShoot;
//Shoot sound
public Sound shootSound = Sounds.spark;
//Lightning Color
public Color color = Color.valueOf("a9d8ff");
public Effect shootEffect = Fx.sparkShoot;
public Sound shootSound = Sounds.spark;
MovementLightningAbility(){}
public MovementLightningAbility(float damage, int length, float reload, float minSpeed, float maxSpeed, Color color){