This commit is contained in:
2025-01-18 15:36:18 -06:00
parent d0efd08a84
commit 537512ed5d
3 changed files with 101 additions and 223 deletions
+2 -2
View File
@@ -500,8 +500,8 @@ public class InfoCmd extends AbstractDevCmd {
output += "Damage: " + targetMob.mobBase.getDamageMin() + " - " + targetMob.mobBase.getDamageMax() + newline;
output += "ATR: " + targetMob.mobBase.getAttackRating() + newline;
output += "DEF: " + targetMob.mobBase.getDefenseRating() + newline;
output += "RANGE: " + targetMob.mobBase.getAttackRange() + newline;
output += "DEF: " + targetMob.defenseRating + newline;
output += "RANGE: " + targetMob.getRange() + newline;
output += "Effects:" + newline;
for(MobBaseEffects mbe : targetMob.mobBase.mobbaseEffects){
EffectsBase eb = PowersManager.getEffectByToken(mbe.getToken());