EnvAnimalGatherConfigData.java 1.05 KB
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
40
package emu.grasscutter.data.excels;

import java.util.List;

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

@ResourceType(name = "EnvAnimalGatherExcelConfigData.json", loadPriority = ResourceType.LoadPriority.LOW)
public class EnvAnimalGatherConfigData extends GameResource {
    private int animalId;
    private String entityType;
    private List<GatherItem> gatherItemId;
    private String excludeWeathers;
    private int aliveTime;
    private int escapeTime;
    private int escapeRadius;
    @Override
    public int getId() {
        return animalId;
    }
    public int getAnimalId(){
        return animalId;
    }
    public String getEntityType(){
        return entityType;
    }
    public GatherItem gatherItem(){
        return gatherItemId.get(0);
    }
    public static class GatherItem{
        private int id;
        private int count;
        public int getId(){
            return id;
        }
        public int getCount(){
            return count;
        }
    }
}