策划表提错分支

back_recharge
zhangshanxue 2020-03-06 23:16:13 +08:00
parent 435ed56a0f
commit 1436f647ff
1 changed files with 19 additions and 0 deletions

View File

@ -14,6 +14,9 @@ public class SRewardItem implements BaseConfig {
private float growChance; //成长概率 针对特殊处理,如果不获取,则获取概率增加
private int randomMin; //获取数量最小值
private int randomMax; //获取数量最大值
private int[] addition;
private int[] chanceAddition;
@Override
public void init() throws Exception {
@ -48,4 +51,20 @@ public class SRewardItem implements BaseConfig {
public int getRandomMax() {
return randomMax;
}
public int[] getAddition() {
return addition;
}
public void setAddition(int[] addition) {
this.addition = addition;
}
public int[] getChanceAddition() {
return chanceAddition;
}
public void setChanceAddition(int[] chanceAddition) {
this.chanceAddition = chanceAddition;
}
}