mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 21:26:46 +01:00
Hover tips now show level requirements for upgrading skills
This commit is contained in:
parent
cf9117097d
commit
1c58bd392d
@ -378,7 +378,15 @@ public class TextComponentFactory {
|
|||||||
addSubSkillTypeToHoverEventJSON(abstractSubSkill, componentBuilder);
|
addSubSkillTypeToHoverEventJSON(abstractSubSkill, componentBuilder);
|
||||||
|
|
||||||
//RANK
|
//RANK
|
||||||
addRanked(ccRank, ccCurRank, ccPossessive, ccNumRanks, componentBuilder, abstractSubSkill.getNumRanks(), RankUtils.getRank(player, abstractSubSkill));
|
int curRank = RankUtils.getRank(player, abstractSubSkill);
|
||||||
|
int nextRank = 0;
|
||||||
|
|
||||||
|
if(curRank < abstractSubSkill.getNumRanks() && abstractSubSkill.getNumRanks() > 0)
|
||||||
|
{
|
||||||
|
nextRank = RankUtils.getRankUnlockLevel(abstractSubSkill, curRank+1);
|
||||||
|
}
|
||||||
|
|
||||||
|
addRanked(ccRank, ccCurRank, ccPossessive, ccNumRanks, componentBuilder, abstractSubSkill.getNumRanks(), RankUtils.getRank(player, abstractSubSkill), nextRank);
|
||||||
|
|
||||||
componentBuilder.append(LocaleLoader.getString("JSON.DescriptionHeader"));
|
componentBuilder.append(LocaleLoader.getString("JSON.DescriptionHeader"));
|
||||||
componentBuilder.append("\n").append(abstractSubSkill.getDescription()).append("\n");
|
componentBuilder.append("\n").append(abstractSubSkill.getDescription()).append("\n");
|
||||||
@ -401,15 +409,19 @@ public class TextComponentFactory {
|
|||||||
return componentBuilder;
|
return componentBuilder;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void addRanked(ChatColor ccRank, ChatColor ccCurRank, ChatColor ccPossessive, ChatColor ccNumRanks, ComponentBuilder componentBuilder, int numRanks, int rank) {
|
private static void addRanked(ChatColor ccRank, ChatColor ccCurRank, ChatColor ccPossessive, ChatColor ccNumRanks, ComponentBuilder componentBuilder, int numRanks, int rank, int nextRank) {
|
||||||
if (numRanks > 0) {
|
if (numRanks > 0) {
|
||||||
//Rank
|
//Rank: x
|
||||||
componentBuilder.append(LocaleLoader.getString("JSON.Rank") + ": ").bold(false).color(ccRank);
|
componentBuilder.append(LocaleLoader.getString("JSON.Hover.Rank", String.valueOf(rank))).append("\n")
|
||||||
|
.bold(false).italic(false).strikethrough(false).underlined(false);
|
||||||
|
|
||||||
//x of y
|
//Next Rank: x
|
||||||
componentBuilder.append(String.valueOf(rank)).color(ccCurRank);
|
if(nextRank > rank)
|
||||||
componentBuilder.append(" " + LocaleLoader.getString("JSON.RankPossesive") + " ").color(ccPossessive);
|
componentBuilder.append(LocaleLoader.getString("JSON.Hover.NextRank", String.valueOf(nextRank))).append("\n")
|
||||||
componentBuilder.append(String.valueOf(numRanks)).color(ccNumRanks);
|
.bold(false).italic(false).strikethrough(false).underlined(false);
|
||||||
|
|
||||||
|
/*componentBuilder.append(" " + LocaleLoader.getString("JSON.RankPossesive") + " ").color(ccPossessive);
|
||||||
|
componentBuilder.append(String.valueOf(numRanks)).color(ccNumRanks);*/
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -468,12 +480,19 @@ public class TextComponentFactory {
|
|||||||
//RANK
|
//RANK
|
||||||
if(subSkillType.getNumRanks() > 0)
|
if(subSkillType.getNumRanks() > 0)
|
||||||
{
|
{
|
||||||
addRanked(ccRank, ccCurRank, ccPossessive, ccNumRanks, componentBuilder, subSkillType.getNumRanks(), RankUtils.getRank(player, subSkillType));
|
int curRank = RankUtils.getRank(player, subSkillType);
|
||||||
|
int nextRank = 0;
|
||||||
|
|
||||||
|
if(curRank < subSkillType.getNumRanks() && subSkillType.getNumRanks() > 0)
|
||||||
|
{
|
||||||
|
nextRank = RankUtils.getRankUnlockLevel(subSkillType, curRank+1);
|
||||||
|
}
|
||||||
|
|
||||||
|
addRanked(ccRank, ccCurRank, ccPossessive, ccNumRanks, componentBuilder, subSkillType.getNumRanks(), RankUtils.getRank(player, subSkillType), nextRank);
|
||||||
|
|
||||||
//Empty line
|
|
||||||
componentBuilder.append("\n").bold(false);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
componentBuilder.append("\n").bold(false);
|
||||||
componentBuilder.append(LocaleLoader.getString("JSON.DescriptionHeader"));
|
componentBuilder.append(LocaleLoader.getString("JSON.DescriptionHeader"));
|
||||||
componentBuilder.color(ccDescriptionHeader);
|
componentBuilder.color(ccDescriptionHeader);
|
||||||
componentBuilder.append("\n");
|
componentBuilder.append("\n");
|
||||||
|
@ -45,6 +45,8 @@ JSON.URL.Spigot=The official mcMMO Spigot Resource Page!
|
|||||||
JSON.URL.Translation=Translate mcMMO into other languages!
|
JSON.URL.Translation=Translate mcMMO into other languages!
|
||||||
JSON.URL.Wiki=The official mcMMO wiki!
|
JSON.URL.Wiki=The official mcMMO wiki!
|
||||||
JSON.SkillUnlockMessage=[[GOLD]][ mcMMO[[YELLOW]] @[[DARK_AQUA]]{0} [[GOLD]]Rank [[DARK_AQUA]]{1}[[GOLD]] Unlocked! ]
|
JSON.SkillUnlockMessage=[[GOLD]][ mcMMO[[YELLOW]] @[[DARK_AQUA]]{0} [[GOLD]]Rank [[DARK_AQUA]]{1}[[GOLD]] Unlocked! ]
|
||||||
|
JSON.Hover.Rank=&e&lRank:&r &f{0}
|
||||||
|
JSON.Hover.NextRank=&7&oNext upgrade at level {0}
|
||||||
|
|
||||||
#This is the message sent to players when an ability is activated
|
#This is the message sent to players when an ability is activated
|
||||||
JSON.Notification.SuperAbility={0}
|
JSON.Notification.SuperAbility={0}
|
||||||
|
Loading…
Reference in New Issue
Block a user