GatherData.java 838 Bytes
Newer Older
Melledy's avatar
Melledy committed
1
package emu.grasscutter.data.excels;
Melledy's avatar
Melledy committed
2
3
4
5
6
7

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

@ResourceType(name = "GatherExcelConfigData.json")
public class GatherData extends GameResource {
Melledy's avatar
Melledy committed
8
9
10
11
12
13
14
	private int pointType;
	private int id;
	private int gadgetId;
	private int itemId;
	private int cd; // Probably hours
	private boolean isForbidGuest;
	private boolean initDisableInteract;
Melledy's avatar
Melledy committed
15
16
17
	    
	@Override
	public int getId() {
Melledy's avatar
Melledy committed
18
		return this.pointType;
Melledy's avatar
Melledy committed
19
20
21
	}

	public int getGatherId() {
Melledy's avatar
Melledy committed
22
		return id;
Melledy's avatar
Melledy committed
23
24
25
	}

	public int getGadgetId() {
Melledy's avatar
Melledy committed
26
		return gadgetId;
Melledy's avatar
Melledy committed
27
28
29
	}

	public int getItemId() {
Melledy's avatar
Melledy committed
30
		return itemId;
Melledy's avatar
Melledy committed
31
32
33
	}

	public int getCd() {
Melledy's avatar
Melledy committed
34
		return cd;
Melledy's avatar
Melledy committed
35
36
37
	}

	public boolean isForbidGuest() {
Melledy's avatar
Melledy committed
38
		return isForbidGuest;
Melledy's avatar
Melledy committed
39
40
41
	}

	public boolean initDisableInteract() {
Melledy's avatar
Melledy committed
42
		return initDisableInteract;
Melledy's avatar
Melledy committed
43
44
45
46
47
48
49
	}

	@Override
	public void onLoad() {

	}
}