전투 구현 반영

This commit is contained in:
2018-08-19 02:57:25 +09:00
parent 5a8ab2d29c
commit 79d2b04721
4 changed files with 106 additions and 36 deletions
+5 -1
View File
@@ -260,7 +260,11 @@ class WarUnit{
return GameConst::$maxAtmosByCommand;
}
function getComputedAvoidRatio(){
function getComputedCriticalRatio():float{
return $this->getCrewType()->getCriticalRatio($this->getRaw());
}
function getComputedAvoidRatio():float{
return $this->getCrewType()->avoid / 100;
}