44 lines
677 B
Java
44 lines
677 B
Java
|
package config;
|
||
|
|
||
|
import manager.Table;
|
||
|
|
||
|
@Table(name = "EquipTalismanaLottery")
|
||
|
public class SEquipTalismanaLottery implements BaseConfig {
|
||
|
|
||
|
private int id;
|
||
|
|
||
|
private int[][] drop;
|
||
|
|
||
|
private int[][] probability;
|
||
|
|
||
|
private int[] costItem;
|
||
|
|
||
|
private int[] repeatedlyCost;
|
||
|
|
||
|
|
||
|
@Override
|
||
|
public void init() throws Exception {
|
||
|
}
|
||
|
|
||
|
|
||
|
public int getId() {
|
||
|
return id;
|
||
|
}
|
||
|
|
||
|
public int[][] getDrop() {
|
||
|
return drop;
|
||
|
}
|
||
|
|
||
|
public int[][] getProbability() {
|
||
|
return probability;
|
||
|
}
|
||
|
|
||
|
public int[] getCostItem() {
|
||
|
return costItem;
|
||
|
}
|
||
|
|
||
|
public int[] getRepeatedlyCost() {
|
||
|
return repeatedlyCost;
|
||
|
}
|
||
|
|
||
|
}
|