WarUnit의 일부 요소를 General과 ActionSpecialWar 등으로 분리

This commit is contained in:
2019-04-28 05:43:59 +09:00
parent ef40f299ef
commit 477ec440bc
28 changed files with 256 additions and 191 deletions
@@ -0,0 +1,20 @@
<?php
namespace sammo\ActionNationType;
use \sammo\iAction;
use \sammo\General;
class che_회피_둔갑천서 extends \sammo\BaseItem{
protected static $id = 26;
protected static $name = '둔갑천서(회피)';
protected static $info = '[전투] 회피 확률 +20%p';
protected static $cost = 200;
protected static $consumable = false;
public function onCalcStat(General $general, string $statName, $value, $aux=null){
if($statName === 'warAvoidRatio'){
return $value += 0.2;
}
return $value;
}
}
@@ -0,0 +1,20 @@
<?php
namespace sammo\ActionNationType;
use \sammo\iAction;
use \sammo\General;
class che_회피_태평요술 extends \sammo\BaseItem{
protected static $id = 25;
protected static $name = '둔갑천서(회피)';
protected static $info = '[전투] 회피 확률 +20%p';
protected static $cost = 200;
protected static $consumable = false;
public function onCalcStat(General $general, string $statName, $value, $aux=null){
if($statName === 'warAvoidRatio'){
return $value += 0.2;
}
return $value;
}
}