mirror of
https://github.com/Melledy/Nebula.git
synced 2026-09-19 17:19:58 +02:00
19 lines
412 B
Java
19 lines
412 B
Java
package emu.nebula.data.resources;
|
|
|
|
import emu.nebula.data.BaseDef;
|
|
import emu.nebula.data.ResourceType;
|
|
import lombok.Getter;
|
|
|
|
@Getter
|
|
@ResourceType(name = "TraceHuntSelfHuntExtraCost.json")
|
|
public class TraceHuntSelfHuntExtraCostDef extends BaseDef {
|
|
private int Times;
|
|
private int ExtraCost1Tid;
|
|
private int ExtraCost1Qty;
|
|
|
|
@Override
|
|
public int getId() {
|
|
return Times;
|
|
}
|
|
}
|