Populating Values and Naming Accord

- Removes unused damage value from Twister
- Populates ChiProperties BlockChiChance and BlockChiDuration.
This commit is contained in:
Vahagn Tovmasian 2019-08-28 12:55:52 -07:00
parent c6e208cdfe
commit 86e0404728
2 changed files with 3 additions and 5 deletions

View file

@ -27,8 +27,6 @@ public class Twister extends AirAbility<TwisterConfig> implements ComboAbility {
@Attribute(Attribute.COOLDOWN)
private long cooldown;
private long time;
@Attribute(Attribute.DAMAGE)
private double damage;
@Attribute(Attribute.SPEED)
private double speed;
@Attribute(Attribute.RANGE)
@ -71,7 +69,7 @@ public class Twister extends AirAbility<TwisterConfig> implements ComboAbility {
if (this.bPlayer.isAvatarState()) {
this.cooldown = 0;
this.damage = config.AvatarState_Height;
this.twisterHeight = config.AvatarState_Height;
this.range = config.AvatarState_Range;
}

View file

@ -6,8 +6,8 @@ public class ChiPropertiesConfig implements Config {
public final String Description = "";
public final double BlockChiChance = 0;
public final long BlockChiDuration = 0;
public final double BlockChiChance = 25;
public final long BlockChiDuration = 1000;
@Override
public String getName() {