活动:大富翁

This commit is contained in:
qiaoxin
2021-06-18 19:45:55 +08:00
parent 15ff0938bc
commit b4578f053a
13 changed files with 593 additions and 4 deletions
@@ -124,6 +124,26 @@ export enum DAILY_MEAL_TYPE {
}
/**
* 土地类型
*/
export enum LAND_TYPE {
BANK_NORMAL = 1, // 普通土地,银行
BANK_COIN = 2, // 铜币银行
BANK_GOLD = 3, // 元宝银行
SHOP = 4, // 商店
}
/**
* 银行操作
*/
export enum BANK_TYPE {
IN = 1, // 进
OUT = 2, // 出
}
//服务器开服时间
export const SERVER_OPEN_TIME = '2021-06-06T20:03:16.637+08:00';
//玩家等级大于等于15级才能开启vip签到
+4
View File
@@ -363,6 +363,10 @@ export const STATUS = {
ACTIVITY_NEW_PLAYER_GIFT_END: { code: 50026, simStr: '新手活动结束' },
ACTIVITY_POP_UP_SHOP_CLOSED: { code: 50027, simStr: '商店已经关闭' },
ACTIVITY_PRE_UNCOMPLETE: { code: 50028, simStr: '上一个任务还未领取' },
MONOPOLY_LAND_TYPE_ERROR: { code: 50029, simStr: '土地类型错误' },
MONOPOLY_BANK: { code: 50030, simStr: '已经存过' },
MONOPOLY_BANK_COUNT_ERROR: { code: 50031, simStr: '数量错误' },
MONOPOLY_BANK_SAVE_MAX: { code: 50032, simStr: '超过最大限制数量' },
// GM后台相关状态 60000 - 69999
GM_ERR_PASSWORD: { code: 60001, simStr: '账号或密码错误' },
GM_MISS_API: { code: 60002, simStr: '未找到该接口' },