mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 21:26:46 +01:00
Fixing styling on Woodcutting
This commit is contained in:
parent
661cf15be1
commit
6d720e6ab1
@ -115,7 +115,7 @@ public class MiningCommand extends SkillCommand {
|
|||||||
|
|
||||||
if (canSuperBreaker) {
|
if (canSuperBreaker) {
|
||||||
messages.add(getStatMessage(SubSkillType.MINING_SUPER_BREAKER, superBreakerLength)
|
messages.add(getStatMessage(SubSkillType.MINING_SUPER_BREAKER, superBreakerLength)
|
||||||
+ (isLucky ? LocaleLoader.getString("Perks.ActivationTime.Bonus", superBreakerLengthEndurance) : ""));
|
+ (hasEndurance ? LocaleLoader.getString("Perks.ActivationTime.Bonus", superBreakerLengthEndurance) : ""));
|
||||||
//messages.add(LocaleLoader.getString("Mining.Ability.Length", superBreakerLength) + (hasEndurance ? LocaleLoader.getString("Perks.ActivationTime.Bonus", superBreakerLengthEndurance) : ""));
|
//messages.add(LocaleLoader.getString("Mining.Ability.Length", superBreakerLength) + (hasEndurance ? LocaleLoader.getString("Perks.ActivationTime.Bonus", superBreakerLengthEndurance) : ""));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -136,7 +136,7 @@ public class UnarmedCommand extends SkillCommand {
|
|||||||
|
|
||||||
if (canBerserk) {
|
if (canBerserk) {
|
||||||
messages.add(getStatMessage(SubSkillType.UNARMED_BERSERK, berserkLength)
|
messages.add(getStatMessage(SubSkillType.UNARMED_BERSERK, berserkLength)
|
||||||
+ (isLucky ? LocaleLoader.getString("Perks.ActivationTime.Bonus", berserkLengthEndurance) : ""));
|
+ (hasEndurance ? LocaleLoader.getString("Perks.ActivationTime.Bonus", berserkLengthEndurance) : ""));
|
||||||
//messages.add(LocaleLoader.getString("Unarmed.Ability.Berserk.Length", berserkLength) + (hasEndurance ? LocaleLoader.getString("Perks.ActivationTime.Bonus", berserkLengthEndurance) : ""));
|
//messages.add(LocaleLoader.getString("Unarmed.Ability.Berserk.Length", berserkLength) + (hasEndurance ? LocaleLoader.getString("Perks.ActivationTime.Bonus", berserkLengthEndurance) : ""));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -102,11 +102,13 @@ public class WoodcuttingCommand extends SkillCommand {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (canDoubleDrop) {
|
if (canDoubleDrop) {
|
||||||
messages.add(LocaleLoader.getString("Woodcutting.Ability.Chance.DDrop", doubleDropChance) + (isLucky ? LocaleLoader.getString("Perks.Lucky.Bonus", doubleDropChanceLucky) : ""));
|
messages.add(getStatMessage(SubSkillType.WOODCUTTING_HARVEST_LUMBER, doubleDropChance)
|
||||||
|
+ (isLucky ? LocaleLoader.getString("Perks.Lucky.Bonus", doubleDropChanceLucky) : ""));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (canTreeFell) {
|
if (canTreeFell) {
|
||||||
messages.add(LocaleLoader.getString("Woodcutting.Ability.Length", treeFellerLength) + (hasEndurance ? LocaleLoader.getString("Perks.ActivationTime.Bonus", treeFellerLengthEndurance) : ""));
|
messages.add(getStatMessage(SubSkillType.WOODCUTTING_TREE_FELLER, treeFellerLength)
|
||||||
|
+ (hasEndurance ? LocaleLoader.getString("Perks.ActivationTime.Bonus", treeFellerLengthEndurance) : ""));
|
||||||
}
|
}
|
||||||
|
|
||||||
return messages;
|
return messages;
|
||||||
|
@ -245,7 +245,6 @@ Fishing.Ability.TH.Boom=[[GRAY]]BOOM TIME!!!
|
|||||||
Fishing.Ability.TH.Poison=[[GRAY]]Something doesn't smell quite right...
|
Fishing.Ability.TH.Poison=[[GRAY]]Something doesn't smell quite right...
|
||||||
Fishing.SkillName=FISHING
|
Fishing.SkillName=FISHING
|
||||||
#HERBALISM
|
#HERBALISM
|
||||||
Herbalism.Ability.GTe.Length=Green Terra Length: [[YELLOW]]{0}s
|
|
||||||
Herbalism.Ability.GTe.NeedMore=You need more seeds to spread Green Terra.
|
Herbalism.Ability.GTe.NeedMore=You need more seeds to spread Green Terra.
|
||||||
Herbalism.Ability.GTh.Fail=**GREEN THUMB FAIL**
|
Herbalism.Ability.GTh.Fail=**GREEN THUMB FAIL**
|
||||||
Herbalism.Ability.GTh=[[GREEN]]**GREEN THUMB**
|
Herbalism.Ability.GTh=[[GREEN]]**GREEN THUMB**
|
||||||
@ -495,15 +494,15 @@ Unarmed.Skills.Berserk.Refresh=[[GREEN]]Your [[YELLOW]]Berserk [[GREEN]]ability
|
|||||||
#WOODCUTTING
|
#WOODCUTTING
|
||||||
Woodcutting.Ability.0=Leaf Blower
|
Woodcutting.Ability.0=Leaf Blower
|
||||||
Woodcutting.Ability.1=Blow away leaves
|
Woodcutting.Ability.1=Blow away leaves
|
||||||
Woodcutting.Ability.Chance.DDrop=Double Drop Chance: [[YELLOW]]{0}
|
|
||||||
Woodcutting.Ability.Length=Tree Feller Length: [[YELLOW]]{0}s
|
|
||||||
Woodcutting.Ability.Locked.0=LOCKED UNTIL {0}+ SKILL (LEAF BLOWER)
|
Woodcutting.Ability.Locked.0=LOCKED UNTIL {0}+ SKILL (LEAF BLOWER)
|
||||||
Woodcutting.SubSkill.TreeFeller.Name=Tree Feller
|
Woodcutting.SubSkill.TreeFeller.Name=Tree Feller
|
||||||
Woodcutting.SubSkill.TreeFeller.Description=Make trees explode
|
Woodcutting.SubSkill.TreeFeller.Description=Make trees explode
|
||||||
|
Woodcutting.SubSkill.TreeFeller.Stat=Tree Feller Length
|
||||||
Woodcutting.SubSkill.LeafBlower.Name=Leaf Blower
|
Woodcutting.SubSkill.LeafBlower.Name=Leaf Blower
|
||||||
Woodcutting.SubSkill.LeafBlower.Description=Blow Away Leaves
|
Woodcutting.SubSkill.LeafBlower.Description=Blow Away Leaves
|
||||||
Woodcutting.SubSkill.HarvestLumber.Name=Harvest Lumber
|
Woodcutting.SubSkill.HarvestLumber.Name=Harvest Lumber
|
||||||
Woodcutting.SubSkill.HarvestLumber.Description=Skillfully extract more Lumber
|
Woodcutting.SubSkill.HarvestLumber.Description=Skillfully extract more Lumber
|
||||||
|
Woodcutting.SubSkill.HarvestLumber.Stat=Double Drop Chance
|
||||||
Woodcutting.SubSkill.Splinter.Name=Splinter
|
Woodcutting.SubSkill.Splinter.Name=Splinter
|
||||||
Woodcutting.SubSkill.Splinter.Description=Cut down trees more efficiently.
|
Woodcutting.SubSkill.Splinter.Description=Cut down trees more efficiently.
|
||||||
Woodcutting.SubSkill.BarkSurgeon.Name=Bark Surgeon
|
Woodcutting.SubSkill.BarkSurgeon.Name=Bark Surgeon
|
||||||
|
Loading…
Reference in New Issue
Block a user