mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-05-19 17:49:50 +08:00
25 lines
558 B
Java
25 lines
558 B
Java
package emu.grasscutter.data.excels;
|
|
|
|
import emu.grasscutter.data.*;
|
|
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;
|
|
}
|