Melledy c1e69ce343 Implement script support needed for dungeons
Only a few are supported right now
You will need certain script files in ./resources/Scripts
2022-04-28 22:19:14 -07:00

62 lines
1.1 KiB
Java

package emu.grasscutter.data.def;
import emu.grasscutter.data.GameResource;
import emu.grasscutter.data.ResourceType;
import emu.grasscutter.game.props.EntityType;
@ResourceType(name = "GadgetExcelConfigData.json")
public class GadgetData extends GameResource {
private int Id;
private EntityType Type;
private String JsonName;
private boolean IsInteractive;
private String[] Tags;
private String ItemJsonName;
private String InteeIconName;
private long NameTextMapHash;
private int CampID;
@Override
public int getId() {
return this.Id;
}
public EntityType getType() {
return Type;
}
public String getJsonName() {
return JsonName;
}
public boolean isInteractive() {
return IsInteractive;
}
public String[] getTags() {
return Tags;
}
public String getItemJsonName() {
return ItemJsonName;
}
public String getInteeIconName() {
return InteeIconName;
}
public long getNameTextMapHash() {
return NameTextMapHash;
}
public int getCampID() {
return CampID;
}
@Override
public void onLoad() {
}
}