ReliquaryAffixData.java 839 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.game.props.FightProperty;

@ResourceType(name = "ReliquaryAffixExcelConfigData.json")
8
public class ReliquaryAffixData extends GameResource {
Melledy's avatar
Melledy committed
9
10
11
12
	private int Id;
	
	private int DepotId;
	private int GroupId;
Melledy's avatar
Melledy committed
13
	private FightProperty PropType;
Melledy's avatar
Melledy committed
14
15
16
17
18
19
20
21
	private float PropValue;
	private int Weight;
	private int UpgradeWeight;
	
	@Override
	public int getId() {
		return Id;
	}
Melledy's avatar
Melledy committed
22
	
Melledy's avatar
Melledy committed
23
24
25
	public int getDepotId() {
		return DepotId;
	}
Melledy's avatar
Melledy committed
26
	
Melledy's avatar
Melledy committed
27
28
29
	public int getGroupId() {
		return GroupId;
	}
Melledy's avatar
Melledy committed
30
	
Melledy's avatar
Melledy committed
31
32
33
	public float getPropValue() {
		return PropValue;
	}
Melledy's avatar
Melledy committed
34
	
Melledy's avatar
Melledy committed
35
36
37
	public int getWeight() {
		return Weight;
	}
Melledy's avatar
Melledy committed
38
	
Melledy's avatar
Melledy committed
39
40
41
42
43
	public int getUpgradeWeight() {
		return UpgradeWeight;
	}
	
	public FightProperty getFightProp() {
Melledy's avatar
Melledy committed
44
		return PropType;
Melledy's avatar
Melledy committed
45
46
	}
}