game: 도구 유니크 밸런스 수정

This commit is contained in:
2022-07-06 22:50:54 +09:00
parent e443f92ddb
commit 8089457aa8
14 changed files with 30 additions and 25 deletions
+2 -2
View File
@@ -7,13 +7,13 @@ class che_명성_구석 extends \sammo\BaseItem{
protected $rawName = '구석';
protected $name = '구석(명성)';
protected $info = '명성 +15%';
protected $info = '명성 +20%';
protected $cost = 200;
protected $consumable = false;
public function onCalcStat(General $general, string $statName, $value, $aux=null){
if($statName == 'experience'){
return $value * 1.15;
return $value * 1.20;
}
return $value;
}