v2.0.0: slightly improved some duelist text and placeholder visuals

This commit is contained in:
Evan Debenham
2023-01-26 15:20:15 -05:00
parent 783a8bde1d
commit 2c477d9e64
4 changed files with 7 additions and 4 deletions

View File

@@ -109,8 +109,8 @@ items.armor.classarmor.transfer_complete=Your heroic armor's properties have bee
items.armor.clotharmor.name=cloth armor
items.armor.clotharmor.desc=This lightweight armor offers basic protection.
items.armor.duelistarmor.name=TODO
items.armor.duelistarmor.desc=TODO
items.armor.duelistarmor.name=hero's breastplate
items.armor.duelistarmor.desc=While wearing this plate armor and cape, the Duelist can perform a special ability.
items.armor.huntressarmor.name=hero's cloak
items.armor.huntressarmor.no_enemies=No enemies in sight
@@ -134,8 +134,8 @@ items.armor.roguearmor.desc=When wearing this dark garb, the Rogue can perform a
items.armor.scalearmor.name=scale armor
items.armor.scalearmor.desc=The metal scales sewn onto a leather vest create a flexible, yet protective armor.
items.armor.warriorarmor.name=hero's armor
items.armor.warriorarmor.desc=While this armor looks heavy, it allows the Warrior to perform a special ability.
items.armor.warriorarmor.name=hero's platemail
items.armor.warriorarmor.desc=While wearing this heavy plated armor, the Warrior can perform a special ability.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 20 KiB

View File

@@ -290,6 +290,9 @@ public enum HeroClass {
public boolean isUnlocked(){
//always unlock on debug builds
if (DeviceCompat.isDebug()) return true;
//For Beta/Alpha testers, TODO disable for full release!
if (this == DUELIST) return true;
switch (this){
case WARRIOR: default: