怪物战力修改

lvxinran 2021-01-01 00:04:06 +08:00
parent 12b0160f3a
commit afdd25f829
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ public class MonsterUtil {
for(int j = 0; j<contents.length;j++){
for(int k = 0;k<contents[j].length;k++){
SMonsterConfig monster = integerSMonsterConfigMap.get(contents[j][k]);
int monsterForce = (int)(monster.getAttack()*5+(monster.getAttack()*20<monster.getHp()?monster.getAttack()*20:monster.getHp())+monster.getPhysicalDefence()*1.5+monster.getMagicDefence()*1.5);
int monsterForce = (int)(monster.getAttack()+(monster.getAttack()*20<monster.getHp()?monster.getAttack()*20*0.15:monster.getHp()*0.15)+monster.getPhysicalDefence()*3+monster.getMagicDefence()*3);
monsterCount++;
totalMonsterForce+=monsterForce;
}