完成 技能选择和英雄选择

This commit is contained in:
panw
2025-06-06 10:44:45 +08:00
parent 6883916de1
commit 76c6fca2a5
6 changed files with 639 additions and 66 deletions

View File

@@ -5,6 +5,7 @@ export const MonsetList = {
}
}
export const BossList = {
1:{
1:[5001],
@@ -22,8 +23,6 @@ export const Missions = [
[5213,5214,5215,5216,5217,5218],
[5225,5226,5227],
]
export const MissionReward = {
1:[1001,1002,1003,1004,1005,1006,1021,1022,1023,1024,1025,1026,1027,1028],
2:[1001,1002,1003,1004,1005,1006,1021,1022,1023,1024,1025,1026,1027,1028],
@@ -45,11 +44,11 @@ export const MBSet = {
crit_cost:2,
dodge_cost:2,
}
export const MissStatus = {
export const MissionStatus = {
ready:0,
playing:1,
pause:2,
choose:3,
ready_skill_select:1,
ready_hero_select:2,
playing:3,
end:4,
}
export enum FightSet {
@@ -66,3 +65,18 @@ export enum FightSet {
AP_UPDATE_RATE=100,
AP_CHANGE_RATE=0,
}
export const MissionData = {
gold:10,//金币
refresh_gold:1,//刷新金币
refrsh_time:1, //刷新时间
call_gold:3,//召唤金币
add_gold:1,//金币增加
change_gold:1,//金币变化
exp:0,//经验
skp:0,//技能点
box:0,//宝箱
energy:0,//能量
hp:0,//血量
ap:0,//攻击
lv:0,
}