55 lines
770 B
Java
55 lines
770 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 float reward;
|
|
|
|
private int poolId;
|
|
|
|
private int[][] holyProbability;
|
|
|
|
private int[][] taskScore;
|
|
|
|
|
|
@Override
|
|
public void init() throws Exception {
|
|
|
|
}
|
|
|
|
|
|
public int getId() {
|
|
return id;
|
|
}
|
|
|
|
public int gettype() {
|
|
return type;
|
|
}
|
|
|
|
public float getReward() {
|
|
return reward;
|
|
}
|
|
|
|
public int getPoolId() {
|
|
return poolId;
|
|
}
|
|
|
|
public int[][] getHolyProbability() {
|
|
return holyProbability;
|
|
}
|
|
|
|
public int[][] getTaskScore() {
|
|
return taskScore;
|
|
}
|
|
|
|
|
|
} |