2020-10-16 14:19:16 +08:00
|
|
|
package config;
|
|
|
|
|
|
|
|
import manager.STableManager;
|
|
|
|
import manager.Table;
|
|
|
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
@Table(name ="SpiritAnimalBook")
|
|
|
|
public class SSpiritAnimalBook implements BaseConfig {
|
|
|
|
|
|
|
|
private int id;
|
|
|
|
|
2021-10-14 13:47:14 +08:00
|
|
|
private int[][] teamers;
|
2020-10-16 14:19:16 +08:00
|
|
|
|
|
|
|
private int[][] activePara;
|
|
|
|
|
|
|
|
private int activeForce;
|
|
|
|
|
2021-03-19 18:41:28 +08:00
|
|
|
private int fetterType;
|
|
|
|
|
|
|
|
private int[][] reward;
|
|
|
|
|
|
|
|
private int openLevel;
|
|
|
|
|
2020-10-16 14:19:16 +08:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void init() throws Exception {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public int getId() {
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
2021-10-14 13:47:14 +08:00
|
|
|
public int[][] getTeamers() {
|
2020-10-16 14:19:16 +08:00
|
|
|
return teamers;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int[][] getActivePara() {
|
|
|
|
return activePara;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getActiveForce() {
|
|
|
|
return activeForce;
|
|
|
|
}
|
|
|
|
|
2021-03-19 18:41:28 +08:00
|
|
|
public int getFetterType() {
|
|
|
|
return fetterType;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int[][] getReward() {
|
|
|
|
return reward;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getOpenLevel() {
|
|
|
|
return openLevel;
|
|
|
|
}
|
|
|
|
|
2020-10-16 14:19:16 +08:00
|
|
|
|
|
|
|
}
|