Files

24 lines
439 B
JavaScript
Raw Permalink Normal View History

2026-05-24 10:21:26 +08:00
"use strict";
cc._RF.push(module, 'd6b90+jmXxJr5ORu6cqVV8B', 'adventure_const');
// Scripts/mod/pve/adventure/adventure_const.js
"use strict";
var AdventureConst = {
PLAY_MODEL: {
ENDLESS: 1,
//无尽模式
WEEKLY: 2 //周回模式
},
// -- 状态(0:未开始 1:可探索 2:探索中 3:已完成)
status: {
lock: 0,
can_open: 1,
open: 2,
over: 3
}
};
module.exports = AdventureConst;
cc._RF.pop();