So the level works. But the formula does not work? Where is the screenshot of the note tag ChargeTpByDamageFormula?
On the formula, you put exactly that?
const result = target.result()
const isTargetWeakToElement = BattleManager._action.calcElementRate(target) > 1
if(result.critical){
return 30
}else if(result.missed){
return -15
}else if(isTargetWeakToElement){
return 45
}else{
return 0
}
When you say it does not work, what is happening? And what do you want to happen?





