game: 회피 유니크 조절

This commit is contained in:
2022-02-20 03:09:59 +09:00
parent 919c44c727
commit ac8edcee32
3 changed files with 25 additions and 3 deletions
@@ -0,0 +1,20 @@
<?php
namespace sammo\ActionItem;
use \sammo\iAction;
use \sammo\General;
class che_필살_둔갑천서 extends \sammo\BaseItem{
protected $rawName = '둔갑천서';
protected $name = '둔갑천서(필살)';
protected $info = '[전투] 필살 확률 +20%p';
protected $cost = 200;
protected $consumable = false;
public function onCalcStat(General $general, string $statName, $value, $aux=null){
if($statName === 'warCriticalRatio'){
return $value + 0.2;
}
return $value;
}
}
@@ -17,4 +17,6 @@ class che_회피_둔갑천서 extends \sammo\BaseItem{
}
return $value;
}
}
}
//NOTE: 구버전
@@ -7,13 +7,13 @@ class che_회피_태평요술 extends \sammo\BaseItem{
protected $rawName = '태평요술';
protected $name = '태평요술(회피)';
protected $info = '[전투] 회피 확률 +20%p';
protected $info = '[전투] 회피 확률 +15%p';
protected $cost = 200;
protected $consumable = false;
public function onCalcStat(General $general, string $statName, $value, $aux=null){
if($statName === 'warAvoidRatio'){
return $value + 0.2;
return $value + 0.15;
}
return $value;
}