mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-12-17 01:15:52 +01:00
86 lines
1.6 KiB
Java
86 lines
1.6 KiB
Java
package emu.grasscutter.data.excels;
|
|
|
|
import java.util.List;
|
|
|
|
import emu.grasscutter.data.GameResource;
|
|
import emu.grasscutter.data.ResourceType;
|
|
import emu.grasscutter.data.ResourceType.LoadPriority;
|
|
import emu.grasscutter.game.props.ElementType;
|
|
|
|
@ResourceType(name = "AvatarSkillExcelConfigData.json", loadPriority = LoadPriority.HIGHEST)
|
|
public class AvatarSkillData extends GameResource {
|
|
private int id;
|
|
private float cdTime;
|
|
private int costElemVal;
|
|
private int maxChargeNum;
|
|
private int triggerID;
|
|
private boolean isAttackCameraLock;
|
|
private int proudSkillGroupId;
|
|
private ElementType costElemType;
|
|
private List<Float> lockWeightParams;
|
|
|
|
private long nameTextMapHash;
|
|
|
|
private String abilityName;
|
|
private String lockShape;
|
|
private String globalValueKey;
|
|
|
|
@Override
|
|
public int getId(){
|
|
return this.id;
|
|
}
|
|
|
|
public float getCdTime() {
|
|
return cdTime;
|
|
}
|
|
|
|
public int getCostElemVal() {
|
|
return costElemVal;
|
|
}
|
|
|
|
public int getMaxChargeNum() {
|
|
return maxChargeNum;
|
|
}
|
|
|
|
public int getTriggerID() {
|
|
return triggerID;
|
|
}
|
|
|
|
public boolean isIsAttackCameraLock() {
|
|
return isAttackCameraLock;
|
|
}
|
|
|
|
public int getProudSkillGroupId() {
|
|
return proudSkillGroupId;
|
|
}
|
|
|
|
public ElementType getCostElemType() {
|
|
return costElemType;
|
|
}
|
|
|
|
public List<Float> getLockWeightParams() {
|
|
return lockWeightParams;
|
|
}
|
|
|
|
public long getNameTextMapHash() {
|
|
return nameTextMapHash;
|
|
}
|
|
|
|
public String getAbilityName() {
|
|
return abilityName;
|
|
}
|
|
|
|
public String getLockShape() {
|
|
return lockShape;
|
|
}
|
|
|
|
public String getGlobalValueKey() {
|
|
return globalValueKey;
|
|
}
|
|
|
|
@Override
|
|
public void onLoad() {
|
|
|
|
}
|
|
}
|