back_recharge
parent
133e0acac7
commit
e38fb0f41d
|
@ -0,0 +1,25 @@
|
|||
package com.ljsd.jieling.config;
|
||||
|
||||
import com.ljsd.jieling.logic.STableManager;
|
||||
import com.ljsd.jieling.logic.Table;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
@Table(name ="GuildRewardConfig")
|
||||
public class SGuildRewardConfig implements BaseConfig {
|
||||
|
||||
private int id;
|
||||
|
||||
|
||||
@Override
|
||||
public void init() throws Exception {
|
||||
|
||||
}
|
||||
|
||||
|
||||
public int getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
|
||||
}
|
|
@ -0,0 +1,49 @@
|
|||
package com.ljsd.jieling.config;
|
||||
|
||||
import com.ljsd.jieling.logic.STableManager;
|
||||
import com.ljsd.jieling.logic.Table;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
@Table(name ="GuildScoreConfig")
|
||||
public class SGuildScoreConfig implements BaseConfig {
|
||||
|
||||
private int id;
|
||||
|
||||
private int scoreMin;
|
||||
|
||||
private int scoreMax;
|
||||
|
||||
private int[] resultExp;
|
||||
|
||||
private int[][] starExp;
|
||||
|
||||
|
||||
@Override
|
||||
public void init() throws Exception {
|
||||
|
||||
}
|
||||
|
||||
|
||||
public int getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public int getScoreMin() {
|
||||
return scoreMin;
|
||||
}
|
||||
|
||||
public int getScoreMax() {
|
||||
return scoreMax;
|
||||
}
|
||||
|
||||
public int[] getResultExp() {
|
||||
return resultExp;
|
||||
}
|
||||
|
||||
public int[][] getStarExp() {
|
||||
return starExp;
|
||||
}
|
||||
|
||||
|
||||
}
|
|
@ -42,6 +42,16 @@ public class SGuildSetting implements BaseConfig {
|
|||
|
||||
private int[][] buildingBuff;
|
||||
|
||||
private float defendScore;
|
||||
|
||||
private float forceScore;
|
||||
|
||||
private float winScore;
|
||||
|
||||
private float loseScore;
|
||||
|
||||
private float expansionScore;
|
||||
|
||||
public static SGuildSetting sGuildSetting;
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue