감축 조건 변경, 증/감축시 변화량을 지정가능하도록 변경

This commit is contained in:
2019-10-03 15:12:25 +09:00
parent de1fa34922
commit 78ff016def
3 changed files with 44 additions and 15 deletions
+9
View File
@@ -74,6 +74,15 @@ class GameConstBase
/** @var int 최대 기술 레벨 */
public static $maxTechLevel = 12;
/** @var int 최소 인구 증가량 */
public static $basePopIncreaseAmount = 5000;
/** @var int 증축시 인구 증가량 */
public static $expandCityPopIncreaseAmount = 10000;
/** @var int 증축시 내정 증가량 */
public static $expandCityDevelIncreaseAmount = 2000;
/** @var int 증축시 성벽 증가량 */
public static $expandCityWallIncreaseAmount = 2000;
/** @var int 초기 제한시 장수 제한 */
public static $initialNationGenLimitForRandInit = 3;