48 lines
1.4 KiB
TypeScript
48 lines
1.4 KiB
TypeScript
/*
|
|
* @Author: dgflash
|
|
* @Date: 2021-11-23 15:28:39
|
|
* @LastEditors: dgflash
|
|
* @LastEditTime: 2022-01-26 16:42:00
|
|
*/
|
|
export const CardType = {
|
|
1: "前排",
|
|
2: "后排",
|
|
}
|
|
export const CardList={
|
|
1:[1001,1002,1003,1102],
|
|
2:[1001,1002,1003,1004,1102,1201],
|
|
3:[1001,1002,1003,1004,1102,1201],
|
|
4:[1001,1002,1003,1004,1102,1201],
|
|
5:[1001,1002,1003,1004,1102,1201],
|
|
6:[1001,1002,1003,1004,1102,1201],
|
|
}
|
|
|
|
|
|
export const CardSet = {
|
|
1001:{
|
|
uuid:1001, name:'护盾战士', type:1, level:1,prefab_path:1001,atk:1,atk_cd:1.5, hp:20, power:50, speed:50,
|
|
skill:{ }
|
|
},
|
|
1002:{
|
|
uuid:1002, name:'无名法师', type:2, level:1,prefab_path:1002,atk:3,atk_cd:1.5, hp:10, power:50, speed:50,
|
|
skill:{ }
|
|
},
|
|
1003:{
|
|
uuid:1003, name:'无名战士', type:1, level:1,prefab_path:1003,atk:2, atk_cd:1.5, hp:15, power:50, speed:50,
|
|
skill:{ }
|
|
},
|
|
1102:{
|
|
uuid:1102, name:'骷髅士兵', type:1, level:1,prefab_path:1102,atk:2,atk_cd:1.5, hp:10, power:50, speed:50,
|
|
skill:{ }
|
|
},
|
|
1004:{
|
|
uuid:1004, name:'火焰法师', type:2, level:2,prefab_path:1004,atk:4,atk_cd:1.5, hp:15, power:50, speed:50,
|
|
skill:{ }
|
|
},
|
|
1201:{
|
|
uuid:1201, name:'猎寻狼', type:1, level:2,prefab_path:1201,atk:5,atk_cd:1.5, hp:20, power:100, speed:100,
|
|
skill:{ }
|
|
},
|
|
|
|
|
|
} |