MonsterDescribeData.java 512 Bytes
Newer Older
Melledy's avatar
Melledy committed
1
package emu.grasscutter.data.excels;
Melledy's avatar
Melledy committed
2

3
import emu.grasscutter.data.GameResource;
Melledy's avatar
Melledy committed
4
5
import emu.grasscutter.data.ResourceType;
import emu.grasscutter.data.ResourceType.LoadPriority;
AnimeGitB's avatar
AnimeGitB committed
6
import lombok.Getter;
Melledy's avatar
Melledy committed
7
8

@ResourceType(name = "MonsterDescribeExcelConfigData.json", loadPriority = LoadPriority.HIGH)
AnimeGitB's avatar
AnimeGitB committed
9
@Getter
10
public class MonsterDescribeData extends GameResource {
AnimeGitB's avatar
AnimeGitB committed
11
    @Getter(onMethod = @__(@Override))
github-actions's avatar
github-actions committed
12
    private int id;
Melledy's avatar
Melledy committed
13
14
15
    private long nameTextMapHash;
    private int titleID;
    private int specialNameLabID;
Melledy's avatar
Melledy committed
16
}