mirror of
https://github.com/Melledy/Nebula.git
synced 2026-09-19 17:19:58 +02:00
Basic shadow siege implementation
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user