43 lines
597 B
Java
43 lines
597 B
Java
package config;
|
|
|
|
import manager.STableManager;
|
|
import manager.Table;
|
|
|
|
import java.util.Map;
|
|
|
|
@Table(name ="ExpeditionNodeConfig")
|
|
public class SExpeditionNodeConfig implements BaseConfig {
|
|
|
|
private int id;
|
|
|
|
private int type;
|
|
|
|
private int[] reward;
|
|
|
|
private int[][] holyProbability;
|
|
|
|
|
|
@Override
|
|
public void init() throws Exception {
|
|
|
|
}
|
|
|
|
|
|
public int getId() {
|
|
return id;
|
|
}
|
|
|
|
public int gettype() {
|
|
return type;
|
|
}
|
|
|
|
public int[] getreward() {
|
|
return reward;
|
|
}
|
|
|
|
public int[][] getHolyProbability() {
|
|
return holyProbability;
|
|
}
|
|
|
|
|
|
} |