금액 단위를 GameConst로 이동, 원조 추가

arg 목록으로 amountList 추가
This commit is contained in:
2020-03-25 02:54:33 +09:00
parent a68b9643fc
commit b739bfa01e
12 changed files with 309 additions and 94 deletions
+11
View File
@@ -111,6 +111,17 @@ class GameConstBase
/** @var int 시작시 쌀 */
public static $defaultRice = 1000;
/** @var int 원조 계수 */
public static $coefAidAmount = 10000;
/** @var int 최대 개별 자원 금액 */
public static $maxResourceActionAmount = 10000;
/** @var int[] 포상/몰수 가이드 금액 */
public static $resourceActionAmountGuide = [
100, 200, 300, 400, 500, 600, 700, 800, 900, 1000,
1200, 1500, 2000, 2500, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000
];
public static $generalMinimumGold = 0;
public static $generalMinimumRice = 500;