72 lines
1.0 KiB
Java
72 lines
1.0 KiB
Java
package config;
|
|
|
|
import manager.STableManager;
|
|
import manager.Table;
|
|
|
|
import java.util.Map;
|
|
|
|
@Table(name ="NewHeroConfig")
|
|
public class SNewHeroConfig implements BaseConfig {
|
|
|
|
private int id;
|
|
|
|
private int heroId;
|
|
|
|
private int monsterGroup;
|
|
|
|
private int[][] dropList;
|
|
|
|
private int[][] boxList;
|
|
|
|
private int[][] dropCell;
|
|
|
|
private int[][] valueDropCell;
|
|
|
|
private int dailyReward;
|
|
|
|
private int dailyNumber;
|
|
|
|
|
|
|
|
|
|
@Override
|
|
public void init() throws Exception {
|
|
|
|
}
|
|
|
|
|
|
public int getId() {
|
|
return id;
|
|
}
|
|
|
|
public int getHeroId() {
|
|
return heroId;
|
|
}
|
|
|
|
public int getMonsterGroup() {
|
|
return monsterGroup;
|
|
}
|
|
|
|
public int[][] getDropList() {
|
|
return dropList;
|
|
}
|
|
|
|
public int[][] getBoxList() {
|
|
return boxList;
|
|
}
|
|
|
|
public int[][] getDropCell() {
|
|
return dropCell;
|
|
}
|
|
public int[][] getValueDropCell() {
|
|
return valueDropCell;
|
|
}
|
|
|
|
public int getDailyReward() {
|
|
return dailyReward;
|
|
}
|
|
|
|
public int getDailyNumber() {
|
|
return dailyNumber;
|
|
}
|
|
} |