CodexAnimalData.java 851 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package emu.grasscutter.data.def;

import emu.grasscutter.data.GameResource;
import emu.grasscutter.data.ResourceType;

@ResourceType(name = {"AnimalCodexExcelConfigData.json"})
public class CodexAnimalData extends GameResource {
    private int Id;
    private String Type;
    private int DescribeId;
    private int SortOrder;
    private CodexAnimalUnlockCondition BAINKHIIMJE;

    @Override
    public int getId() {
        return Id;
    }

    public String getType() {
        return Type;
    }

    public int getDescribeId() {
        return DescribeId;
    }

    public int getSortOrder() {
        return SortOrder;
    }

    public CodexAnimalUnlockCondition getUnlockCondition() {
        return BAINKHIIMJE;
    }

    public enum CodexAnimalUnlockCondition {
        CODEX_COUNT_TYPE_KILL,
        CODEX_COUNT_TYPE_CAPTURE
    }
}