필살 조금 더 강화

This commit is contained in:
2020-07-15 02:52:14 +09:00
parent edbc2b88b6
commit f190b74a7e
2 changed files with 4 additions and 4 deletions
@@ -12,7 +12,7 @@ class event_전투특기_필살 extends \sammo\BaseItem{
protected $id = 71;
protected $rawName = '비급';
protected $name = '비급(필살)';
protected $info = '[전투] 필살 확률 +25%p, 필살 발동시 대상 회피 불가';
protected $info = '[전투] 필살 확률 +30%p, 필살 발동시 대상 회피 불가';
protected $cost = 100;
protected $buyable = true;
protected $consumable = false;
@@ -20,7 +20,7 @@ class event_전투특기_필살 extends \sammo\BaseItem{
public function onCalcStat(General $general, string $statName, $value, $aux=null){
if($statName === 'warCriticalRatio'){
return $value + 0.25;
return $value + 0.3;
}
return $value;
}
+2 -2
View File
@@ -11,7 +11,7 @@ class che_필살 extends \sammo\BaseSpecial{
protected $id = 71;
protected $name = '필살';
protected $info = '[전투] 필살 확률 +25%p, 필살 발동시 대상 회피 불가';
protected $info = '[전투] 필살 확률 +30%p, 필살 발동시 대상 회피 불가';
static $selectWeightType = SpecialityHelper::WEIGHT_NORM;
static $selectWeight = 1;
@@ -23,7 +23,7 @@ class che_필살 extends \sammo\BaseSpecial{
public function onCalcStat(General $general, string $statName, $value, $aux=null){
if($statName === 'warCriticalRatio'){
return $value + 0.25;
return $value + 0.30;
}
return $value;
}