57 lines
1.7 KiB
TypeScript
57 lines
1.7 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:[1011,1021,1031,1041],
|
|
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 = {
|
|
1011:{
|
|
uuid:1011, name:'叽叽', type:1, level:1,prefab_path:1011,atk:1,atk_cd:0.5, hp:15, power:45, speed:80,
|
|
skill:{ }
|
|
},
|
|
1021:{
|
|
uuid:1021, name:'汪汪', type:1, level:1,prefab_path:1021,atk:2,atk_cd:1, hp:15, power:50, speed:50,
|
|
skill:{ }
|
|
},
|
|
1031:{
|
|
uuid:1031, name:'喵喵', type:1, level:1,prefab_path:1031,atk:1, atk_cd:0.5, hp:20, power:50, speed:50,
|
|
skill:{ }
|
|
},
|
|
1041:{
|
|
uuid:1041, name:'胖大', type:2, level:1,prefab_path:1041,atk:4,atk_cd:1.5, hp:15, power:50, speed:50,
|
|
skill:{ }
|
|
},
|
|
2021:{
|
|
uuid:2021, name:'汪汪[强]', type:1, level:2,prefab_path:2021,atk:6,atk_cd:1, hp:25, power:50, speed:50,
|
|
skill:{ }
|
|
},
|
|
2022:{
|
|
uuid:2022, name:'沃夫', type:1, level:2,prefab_path:2022,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:{ }
|
|
},
|
|
|
|
|
|
|
|
} |