Update Archery to alphabetical order

This commit is contained in:
Oaksworth 2019-01-23 18:58:53 -02:00 committed by GitHub
parent 061a6c2a3a
commit 6241b6dfe9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,10 +28,11 @@ public class ArcheryCommand extends SkillCommand {
@Override @Override
protected void dataCalculations(Player player, float skillValue, boolean isLucky) { protected void dataCalculations(Player player, float skillValue, boolean isLucky) {
// SKILL SHOT // ARCHERY_ARROW_RETRIEVAL
if (canSkillShot) { if (canRetrieve) {
double bonus = (skillValue / Archery.skillShotIncreaseLevel) * Archery.skillShotIncreasePercentage; String[] retrieveStrings = calculateAbilityDisplayValues(skillValue, SubSkillType.ARCHERY_ARROW_RETRIEVAL, isLucky);
skillShotBonus = percent.format(Archery.getSkillShotBonusDamage(player, 0)); retrieveChance = retrieveStrings[0];
retrieveChanceLucky = retrieveStrings[1];
} }
// ARCHERY_DAZE // ARCHERY_DAZE
@ -41,11 +42,10 @@ public class ArcheryCommand extends SkillCommand {
dazeChanceLucky = dazeStrings[1]; dazeChanceLucky = dazeStrings[1];
} }
// ARCHERY_ARROW_RETRIEVAL // SKILL SHOT
if (canRetrieve) { if (canSkillShot) {
String[] retrieveStrings = calculateAbilityDisplayValues(skillValue, SubSkillType.ARCHERY_ARROW_RETRIEVAL, isLucky); double bonus = (skillValue / Archery.skillShotIncreaseLevel) * Archery.skillShotIncreasePercentage;
retrieveChance = retrieveStrings[0]; skillShotBonus = percent.format(Archery.getSkillShotBonusDamage(player, 0));
retrieveChanceLucky = retrieveStrings[1];
} }
} }