83 lines
1.2 KiB
Java
83 lines
1.2 KiB
Java
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;
|
||
|
||
/**
|
||
* 是否可以重复
|
||
*/
|
||
private int canRepeat;
|
||
/**
|
||
* 专属英雄id,0表示没有
|
||
*/
|
||
private int heroId;
|
||
|
||
private int[][] skillModify;
|
||
|
||
|
||
@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;
|
||
}
|
||
|
||
public int getCanRepeat() {
|
||
return canRepeat;
|
||
}
|
||
|
||
public int getType() {
|
||
return type;
|
||
}
|
||
|
||
public int getEffect() {
|
||
return effect;
|
||
}
|
||
|
||
public int getHeroId() {
|
||
return heroId;
|
||
}
|
||
|
||
public int[][] getSkillModify() {
|
||
return skillModify;
|
||
}
|
||
} |