game: 반계도구 제거, 도구 밸런스 조정

This commit is contained in:
2022-02-22 00:14:20 +09:00
parent eb6b7ce84a
commit ea50e53718
17 changed files with 56 additions and 38 deletions
@@ -7,13 +7,13 @@ class che_회피_태평요술 extends \sammo\BaseItem{
protected $rawName = '태평요술';
protected $name = '태평요술(회피)';
protected $info = '[전투] 회피 확률 +15%p';
protected $info = '[전투] 회피 확률 +20%p';
protected $cost = 200;
protected $consumable = false;
public function onCalcStat(General $general, string $statName, $value, $aux=null){
if($statName === 'warAvoidRatio'){
return $value + 0.15;
return $value + 0.20;
}
return $value;
}