Basic shadow siege implementation

This commit is contained in:
Melledy
2026-07-21 01:47:20 -07:00
parent ee0866e7e4
commit 07b64437ff
18 changed files with 807 additions and 4 deletions
@@ -0,0 +1,18 @@
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;
}
}