Implement battle pass

This commit is contained in:
Melledy
2025-11-13 01:24:42 -08:00
parent 61bc5e7a0c
commit 8d4736c00e
25 changed files with 758 additions and 49 deletions

View File

@@ -0,0 +1,20 @@
package emu.nebula.data.resources;
import emu.nebula.data.BaseDef;
import emu.nebula.data.ResourceType;
import lombok.Getter;
@Getter
@ResourceType(name = "BattlePassLevel.json")
public class BattlePassLevelDef extends BaseDef {
private int ID;
private int Exp;
private int Tid;
private int Qty;
@Override
public int getId() {
return ID;
}
}