feat, game: 초반 '배신 수치' 1 증가, 배신 패널티 증가

- 184년 1월부터 배신수치 1 증가.
- 배신 패널티 당 15%, 최대 6회
This commit is contained in:
2022-09-21 23:12:56 +09:00
parent c89bd2f63f
commit 635f1ae077
6 changed files with 39 additions and 7 deletions
+2 -2
View File
@@ -226,8 +226,8 @@ function do추방(General $general, int $myOfficerLevel):?string{
}
else{
$betrayCnt = $general->getVar('betray');
$general->addExperience(-$general->getVar('experience')*0.1*$betrayCnt);
$general->addDedication(-$general->getVar('dedication')*0.1*$betrayCnt);
$general->addExperience(-$general->getVar('experience')*0.15*$betrayCnt);
$general->addDedication(-$general->getVar('dedication')*0.15*$betrayCnt);
$general->increaseVarWithLimit('betray', 1, null, GameConst::$maxBetrayCnt);
}