forked from devsam/core
Trigger, Action 역할 재정의
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
namespace sammo\ActionPersonality;
|
||||
use \sammo\iAction;
|
||||
use \sammo\General;
|
||||
|
||||
class che_은둔 implements iAction{
|
||||
use \sammo\DefaultAction;
|
||||
|
||||
static $id = 10;
|
||||
static $name = '은둔';
|
||||
static $info = '명성 -10%, 계급 -10%, 사기 -5, 훈련 -5, 단련 성공률 +10%';
|
||||
|
||||
public function onCalcDomestic(string $turnType, string $varType, float $value):float{
|
||||
if($turnType == '단련'){
|
||||
if($varType == 'success'){
|
||||
return $value + 0.1;
|
||||
}
|
||||
}
|
||||
|
||||
return $value;
|
||||
}
|
||||
|
||||
public function onPreGeneralStatUpdate(General $general, string $statName, $value){
|
||||
if($statName == 'bonusAtmos'){
|
||||
return $value - 5;
|
||||
}
|
||||
if($statName == 'bonusTrain'){
|
||||
return $value - 5;
|
||||
}
|
||||
if($statName == 'experience'){
|
||||
return $value * 0.9;
|
||||
}
|
||||
if($statName == 'dedication'){
|
||||
return $value * 0.9;
|
||||
}
|
||||
return $value;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user