mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-23 13:37:42 +00:00
Fix weapon curve excels and camel case relic affix ecels
This commit is contained in:
parent
310ac82fa2
commit
9e19a5c160
@ -230,20 +230,20 @@ public class ItemData extends GameResource {
|
||||
|
||||
public static class WeaponProperty {
|
||||
private FightProperty fightProp;
|
||||
private String PropType;
|
||||
private float InitValue;
|
||||
private String Type;
|
||||
private String propType;
|
||||
private float initValue;
|
||||
private String type;
|
||||
|
||||
public String getPropType(){
|
||||
return this.PropType;
|
||||
return this.propType;
|
||||
}
|
||||
|
||||
public float getInitValue(){
|
||||
return this.InitValue;
|
||||
return this.initValue;
|
||||
}
|
||||
|
||||
public String getType(){
|
||||
return this.Type;
|
||||
return this.type;
|
||||
}
|
||||
|
||||
public FightProperty getFightProp() {
|
||||
@ -251,7 +251,7 @@ public class ItemData extends GameResource {
|
||||
}
|
||||
|
||||
public void onLoad() {
|
||||
this.fightProp = FightProperty.getPropByName(PropType);
|
||||
this.fightProp = FightProperty.getPropByName(propType);
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -6,41 +6,41 @@ import emu.grasscutter.game.props.FightProperty;
|
||||
|
||||
@ResourceType(name = "ReliquaryAffixExcelConfigData.json")
|
||||
public class ReliquaryAffixData extends GameResource {
|
||||
private int Id;
|
||||
private int id;
|
||||
|
||||
private int DepotId;
|
||||
private int GroupId;
|
||||
private FightProperty PropType;
|
||||
private float PropValue;
|
||||
private int Weight;
|
||||
private int UpgradeWeight;
|
||||
private int depotId;
|
||||
private int groupId;
|
||||
private FightProperty propType;
|
||||
private float propValue;
|
||||
private int weight;
|
||||
private int upgradeWeight;
|
||||
|
||||
@Override
|
||||
public int getId() {
|
||||
return Id;
|
||||
return id;
|
||||
}
|
||||
|
||||
public int getDepotId() {
|
||||
return DepotId;
|
||||
return depotId;
|
||||
}
|
||||
|
||||
public int getGroupId() {
|
||||
return GroupId;
|
||||
return groupId;
|
||||
}
|
||||
|
||||
public float getPropValue() {
|
||||
return PropValue;
|
||||
return propValue;
|
||||
}
|
||||
|
||||
public int getWeight() {
|
||||
return Weight;
|
||||
return weight;
|
||||
}
|
||||
|
||||
public int getUpgradeWeight() {
|
||||
return UpgradeWeight;
|
||||
return upgradeWeight;
|
||||
}
|
||||
|
||||
public FightProperty getFightProp() {
|
||||
return PropType;
|
||||
return propType;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user