57 lines
1.8 KiB
TypeScript
57 lines
1.8 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,1004,1005,1006],
|
|
2:[1011,1021,1031,1041,2021,2022,2031,2032],
|
|
3:[1011,1021,1031,1041,2021,2022,2031,2032],
|
|
4:[1011,1021,1031,1041,2021,2022,2031,2032],
|
|
5:[1011,1021,1031,1041,2021,2022,2031,2032],
|
|
6:[1011,1021,1031,1041,2021,2022,2031,2032],
|
|
}
|
|
|
|
|
|
export const CardSet = {
|
|
1001:{
|
|
uuid:1001, name:'叽叽', type:1, level:1,prefab_path:1001,atk:1,atk_cd:0.5, hp:15, power:45, speed:80,
|
|
skill:{ }
|
|
},
|
|
1002:{
|
|
uuid:1002, name:'汪汪', type:1, level:1,prefab_path:1002,atk:2,atk_cd:1, hp:15, power:50, speed:50,
|
|
skill:{ }
|
|
},
|
|
1003:{
|
|
uuid:1003, name:'喵喵', type:1, level:1,prefab_path:1003,atk:1, atk_cd:0.5, hp:20, power:50, speed:50,
|
|
skill:{ }
|
|
},
|
|
1004:{
|
|
uuid:1004, name:'胖大', type:2, level:1,prefab_path:1004,atk:4,atk_cd:1.5, hp:15, power:50, speed:50,
|
|
skill:{ }
|
|
},
|
|
1005:{
|
|
uuid:1005, name:'汪汪[强]', type:1, level:2,prefab_path:1005,atk:6,atk_cd:1, hp:25, power:50, speed:50,
|
|
skill:{ }
|
|
},
|
|
1006:{
|
|
uuid:1006, name:'沃夫', type:1, level:2,prefab_path:1006,atk:6,atk_cd:1, hp:30, power:50, speed:50,
|
|
skill:{ }
|
|
},
|
|
2031:{
|
|
uuid:2031, name:'泰哥', type:1, level:2,prefab_path:2031,atk:4,atk_cd:0.5, hp:25, power:50, speed:50,
|
|
skill:{ }
|
|
},
|
|
2032:{
|
|
uuid:2032, name:'喵喵[厚]', type:1, level:2,prefab_path:2032,atk:2.5,atk_cd:0.5, hp:40, power:50, speed:50,
|
|
skill:{ }
|
|
},
|
|
|
|
|
|
|
|
} |