2020-02-09 19:48:55 +08:00
|
|
|
|
package config;
|
|
|
|
|
|
|
|
|
|
import manager.STableManager;
|
|
|
|
|
import manager.Table;
|
|
|
|
|
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
|
|
@Table(name ="ExpeditionHolyConfig")
|
|
|
|
|
public class SExpeditionHolyConfig implements BaseConfig {
|
|
|
|
|
|
|
|
|
|
private int id;
|
|
|
|
|
|
|
|
|
|
private int type;
|
|
|
|
|
|
|
|
|
|
private int effect;
|
|
|
|
|
|
|
|
|
|
private int weight;
|
|
|
|
|
|
|
|
|
|
private int passiveSkillId;
|
|
|
|
|
|
|
|
|
|
private int forceType;
|
2021-03-02 17:54:24 +08:00
|
|
|
|
|
2021-03-09 15:29:49 +08:00
|
|
|
|
/**
|
|
|
|
|
* 是否可以重复
|
|
|
|
|
*/
|
|
|
|
|
private int canRepeat;
|
|
|
|
|
/**
|
|
|
|
|
* 专属英雄id,0表示没有
|
|
|
|
|
*/
|
|
|
|
|
private int heroId;
|
|
|
|
|
|
|
|
|
|
private int[][] skillModify;
|
2021-08-31 11:56:33 +08:00
|
|
|
|
|
2020-02-09 19:48:55 +08:00
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void init() throws Exception {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int getId() {
|
|
|
|
|
return id;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int gettype() {
|
|
|
|
|
return type;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int geteffect() {
|
|
|
|
|
return effect;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int getWeight() {
|
|
|
|
|
return weight;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int getPassiveSkillId() {
|
|
|
|
|
return passiveSkillId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int getForceType() {
|
|
|
|
|
return forceType;
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-25 10:34:05 +08:00
|
|
|
|
public int getCanRepeat() {
|
|
|
|
|
return canRepeat;
|
|
|
|
|
}
|
2020-02-09 19:48:55 +08:00
|
|
|
|
|
2021-03-09 15:29:49 +08:00
|
|
|
|
public int getType() {
|
|
|
|
|
return type;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int getEffect() {
|
|
|
|
|
return effect;
|
|
|
|
|
}
|
2020-02-09 19:48:55 +08:00
|
|
|
|
|
2021-02-25 10:34:05 +08:00
|
|
|
|
public int getHeroId() {
|
|
|
|
|
return heroId;
|
|
|
|
|
}
|
2021-03-02 17:54:24 +08:00
|
|
|
|
|
2021-03-08 15:12:05 +08:00
|
|
|
|
public int[][] getSkillModify() {
|
2021-03-02 17:54:24 +08:00
|
|
|
|
return skillModify;
|
|
|
|
|
}
|
2020-02-09 19:48:55 +08:00
|
|
|
|
}
|