MonsterDescribeData.java 775 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
6
7
import emu.grasscutter.data.ResourceType;
import emu.grasscutter.data.ResourceType.LoadPriority;

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

github-actions's avatar
github-actions committed
14
15
16
17
    @Override
    public int getId() {
        return id;
    }
Melledy's avatar
Melledy committed
18

github-actions's avatar
github-actions committed
19
20
21
    public long getNameTextMapHash() {
        return nameTextMapHash;
    }
Melledy's avatar
Melledy committed
22

github-actions's avatar
github-actions committed
23
24
25
    public int getTitleID() {
        return titleID;
    }
Melledy's avatar
Melledy committed
26

github-actions's avatar
github-actions committed
27
28
29
    public int getSpecialNameLabID() {
        return specialNameLabID;
    }
Melledy's avatar
Melledy committed
30

github-actions's avatar
github-actions committed
31
32
33
34
    @Override
    public void onLoad() {

    }
Melledy's avatar
Melledy committed
35
}