91 lines
1.2 KiB
Java
91 lines
1.2 KiB
Java
package config;
|
|
|
|
import manager.STableManager;
|
|
import manager.Table;
|
|
|
|
import java.util.Map;
|
|
|
|
@Table(name ="HeroRankupConfig")
|
|
public class SHeroRankupConfig implements BaseConfig {
|
|
|
|
private int id;
|
|
|
|
private int type;
|
|
|
|
private int[][] rankupPara;
|
|
|
|
private int limitLevel;
|
|
|
|
private int openLevel;
|
|
|
|
private int limitStar;
|
|
|
|
private int openStar;
|
|
|
|
private int[][] consumeMaterial;
|
|
|
|
private int star;
|
|
|
|
private int show;
|
|
|
|
private int[][] sumConsume;
|
|
|
|
private int[] phase;
|
|
|
|
|
|
@Override
|
|
public void init() throws Exception {
|
|
|
|
}
|
|
|
|
|
|
public int getId() {
|
|
return id;
|
|
}
|
|
|
|
public int getType() {
|
|
return type;
|
|
}
|
|
|
|
public int[][] getRankupPara() {
|
|
return rankupPara;
|
|
}
|
|
|
|
public int getLimitLevel() {
|
|
return limitLevel;
|
|
}
|
|
|
|
public int getOpenLevel() {
|
|
return openLevel;
|
|
}
|
|
|
|
public int getLimitStar() {
|
|
return limitStar;
|
|
}
|
|
|
|
public int getOpenStar() {
|
|
return openStar;
|
|
}
|
|
|
|
public int[][] getConsumeMaterial() {
|
|
return consumeMaterial;
|
|
}
|
|
|
|
public int getStar() {
|
|
return star;
|
|
}
|
|
|
|
public int getShow() {
|
|
return show;
|
|
}
|
|
|
|
public int[][] getSumConsume() {
|
|
return sumConsume;
|
|
}
|
|
|
|
public int[] getPhase() {
|
|
return phase;
|
|
}
|
|
|
|
|
|
} |