mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-06-06 07:29:40 +08:00
Fix javadoc & suppress no comments warning Fix terminal interaction in IDEA Update lombok onMethod to JDK8 version Some code reformat
26 lines
611 B
Java
26 lines
611 B
Java
package emu.grasscutter.data.excels;
|
|
|
|
import emu.grasscutter.data.GameResource;
|
|
import emu.grasscutter.data.ResourceType;
|
|
import lombok.Getter;
|
|
|
|
@ResourceType(name = "NpcExcelConfigData.json")
|
|
@Getter
|
|
public class NpcData extends GameResource {
|
|
@Getter(onMethod_ = @Override)
|
|
private int id;
|
|
|
|
private String jsonName;
|
|
private String alias;
|
|
private String scriptDataPath;
|
|
private String luaDataPath;
|
|
|
|
private boolean isInteractive;
|
|
private boolean hasMove;
|
|
private String dyePart;
|
|
private String billboardIcon;
|
|
|
|
private long nameTextMapHash;
|
|
private int campID;
|
|
}
|