50 lines
1.4 KiB
TypeScript
50 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,1004,1005,1006],
|
|
2:[1001,1002,1003,1004,1005,1006],
|
|
3:[1001,1002,1003,1004,1005,1006],
|
|
4:[1001,1002,1003,1004,1005,1006],
|
|
5:[1001,1002,1003,1004,1005,1006],
|
|
6:[1001,1002,1003,1004,1005,1006],
|
|
}
|
|
|
|
|
|
export const CardSet = {
|
|
1001:{
|
|
uuid:1001, name:'叽叽', type:1, level:1,path:1001,atk:1,atk_cd:0.5, hp:15, power:45, speed:80,
|
|
skill:{ }
|
|
},
|
|
1002:{
|
|
uuid:1002, name:'汪汪', type:1, level:1,path:1002,atk:2,atk_cd:1, hp:15, power:50, speed:50,
|
|
skill:{ }
|
|
},
|
|
1003:{
|
|
uuid:1003, name:'喵喵', type:1, level:1,path:1003,atk:1, atk_cd:0.5, hp:20, power:50, speed:50,
|
|
skill:{ }
|
|
},
|
|
1004:{
|
|
uuid:1004, name:'胖大', type:2, level:1,path:1004,atk:4,atk_cd:1.5, hp:15, power:50, speed:50,
|
|
skill:{ }
|
|
},
|
|
1005:{
|
|
uuid:1005, name:'汪汪[强]', type:1, level:2,path:1005,atk:6,atk_cd:1, hp:25, power:50, speed:50,
|
|
skill:{ }
|
|
},
|
|
1006:{
|
|
uuid:1006, name:'沃夫', type:1, level:2,path:1006,atk:6,atk_cd:1, hp:30, power:50, speed:50,
|
|
skill:{ }
|
|
},
|
|
|
|
|
|
|
|
|
|
} |