22 lines
525 B
PHP
22 lines
525 B
PHP
<?php
|
|
namespace sammo\ActionPersonality;
|
|
use \sammo\iAction;
|
|
use \sammo\General;
|
|
|
|
class che_정복 implements iAction{
|
|
use \sammo\DefaultAction;
|
|
|
|
static $id = 4;
|
|
static $name = '정복';
|
|
static $info = '명성 -10%, 사기 +5';
|
|
|
|
public function onPreGeneralStatUpdate(General $general, string $statName, $value){
|
|
if($statName == 'experience'){
|
|
return $value * 0.9;
|
|
}
|
|
if($statName == 'bonusAtmos'){
|
|
return $value + 5;
|
|
}
|
|
return $value;
|
|
}
|
|
} |