v0.2.2b: updated boomerang text to include weightstone properties

This commit is contained in:
Evan Debenham 2014-11-14 17:35:14 -05:00
parent 22a639dd4f
commit c4b55ae70b

View File

@ -116,7 +116,17 @@ public class Boomerang extends MissileWeapon {
@Override
public String desc() {
return
String info =
"Thrown to the enemy this flat curved wooden missile will return to the hands of its thrower.";
switch (imbue) {
case LIGHT:
info += "\n\nIt was balanced to be lighter. ";
break;
case HEAVY:
info += "\n\nIt was balanced to be heavier. ";
break;
case NONE:
}
return info;
}
}