You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- //分析卡片的函数,Code From https://github.com/kiootic/pad-rikuu
- class Skill{
- constructor(i,data){
- let skill = this;
- skill.id = i;
- skill.name = data[0];
- skill.description = data[1];
- skill.type = data[2];
- skill.maxLevel = data[3];
- skill.initialCooldown = data[4];
- skill.unk = data[5];
- skill.params = data.slice(6);
- }
- }
- //对于Nodejs输出成模块
- if (typeof(module) != "undefined") module.exports = Skill;
|