Commit first set of alternate win achievements

This commit is contained in:
drdev
2014-09-21 15:22:59 +00:00
parent d6fa02582b
commit b5aa3b429e
16 changed files with 138 additions and 58 deletions

View File

@@ -398,12 +398,12 @@ public enum VSubmenuAchievements implements IVSubmenu<CSubmenuAchievements> {
}
y += PADDING;
if (sharedDesc != null) {
g2d.drawString(sharedDesc + "...", x, y);
g2d.drawString(selectedAchievement.isSpecial() ? sharedDesc : sharedDesc + "...", x, y);
y += descHeight;
}
if (mythicDesc != null) {
FSkin.setGraphicsColor(g2d, selectedAchievement.earnedMythic() ? TEXT_COLOR : NOT_EARNED_COLOR);
g2d.drawString("(Mythic) " + mythicDesc, x, y);
g2d.drawString(selectedAchievement.isSpecial() ? mythicDesc : "(Mythic) " + mythicDesc, x, y); //handle flavor text here too
y += descHeight;
}
if (rareDesc != null) {