64 lines
886 B
Java
64 lines
886 B
Java
package config;
|
|
|
|
import manager.STableManager;
|
|
import manager.Table;
|
|
|
|
import java.util.Map;
|
|
|
|
@Table(name ="QijieHolyConfig")
|
|
public class SQijieHolyConfig implements BaseConfig {
|
|
|
|
private int id;
|
|
|
|
private int quality;
|
|
|
|
private int type;
|
|
|
|
private int[][] attri;
|
|
|
|
private int[] cost;
|
|
|
|
private int addition;
|
|
|
|
private int[] position;
|
|
|
|
private int[] buff;
|
|
|
|
@Override
|
|
public void init() throws Exception {
|
|
|
|
}
|
|
|
|
|
|
public int getId() {
|
|
return id;
|
|
}
|
|
|
|
public int getQuality() {
|
|
return quality;
|
|
}
|
|
|
|
public int[][] getAttri() {
|
|
return attri;
|
|
}
|
|
|
|
public int[] getCost() {
|
|
return cost;
|
|
}
|
|
|
|
public int getAddition() {
|
|
return addition;
|
|
}
|
|
|
|
public int[] getPosition() {
|
|
return position;
|
|
}
|
|
|
|
public int[] getBuff() {
|
|
return buff;
|
|
}
|
|
|
|
public int getType() {
|
|
return type;
|
|
}
|
|
} |