2020-02-09 19:48:55 +08:00
|
|
|
package config;
|
|
|
|
|
|
|
|
import manager.STableManager;
|
|
|
|
import manager.Table;
|
|
|
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
@Table(name ="ExpeditionFloorConfig")
|
|
|
|
public class SExpeditionFloorConfig implements BaseConfig {
|
|
|
|
|
|
|
|
private int id;
|
|
|
|
|
|
|
|
private int node;
|
|
|
|
|
|
|
|
private int[][] nodeType;
|
|
|
|
|
2020-02-26 16:54:12 +08:00
|
|
|
private int[][] randomNode;
|
2020-02-09 19:48:55 +08:00
|
|
|
|
|
|
|
private int[][] holyProbability;
|
|
|
|
|
2020-02-26 16:54:12 +08:00
|
|
|
private int[] reward;
|
2020-02-09 19:48:55 +08:00
|
|
|
|
|
|
|
private int[][] treasureBox;
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void init() throws Exception {
|
2020-02-26 16:54:12 +08:00
|
|
|
|
2020-02-09 19:48:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public int getId() {
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getNode() {
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int[][] getNodeType() {
|
|
|
|
return nodeType;
|
|
|
|
}
|
|
|
|
|
2020-02-26 16:54:12 +08:00
|
|
|
public int[][] getRandomNode() {
|
|
|
|
return randomNode;
|
|
|
|
}
|
|
|
|
|
2020-02-09 19:48:55 +08:00
|
|
|
public int[][] getHolyProbability() {
|
|
|
|
return holyProbability;
|
|
|
|
}
|
|
|
|
|
2020-02-26 16:54:12 +08:00
|
|
|
public int[] getReward() {
|
2020-02-09 19:48:55 +08:00
|
|
|
return reward;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int[][] getTreasureBox() {
|
|
|
|
return treasureBox;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|