mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-05-18 15:10:15 +08:00
19 lines
467 B
Java
19 lines
467 B
Java
package emu.grasscutter.data.excels;
|
|
|
|
import emu.grasscutter.data.*;
|
|
import lombok.Getter;
|
|
|
|
@ResourceType(name = "DropMaterialExcelConfigData.json")
|
|
@Getter
|
|
public class DropMaterialData extends GameResource {
|
|
@Getter(onMethod_ = @Override)
|
|
private int id;
|
|
|
|
private boolean useOnGain;
|
|
private boolean disableFirstGainHint;
|
|
private boolean autoPick;
|
|
private boolean dropSeparately;
|
|
private int groupId;
|
|
private boolean forceGainHint;
|
|
}
|