Implement !giveall command

-Also fixed server error when receiving characters
This commit is contained in:
Melledy
2025-11-17 08:57:25 -08:00
parent 5f851a0367
commit b97f23aa3c
4 changed files with 131 additions and 0 deletions
@@ -12,6 +12,8 @@ import lombok.Getter;
@ResourceType(name = "Character.json")
public class CharacterDef extends BaseDef {
private int Id;
private boolean Visible;
private boolean Available;
private String Name;
private int Grade;
@@ -8,6 +8,9 @@ import lombok.Getter;
@ResourceType(name = "Disc.json")
public class DiscDef extends BaseDef {
private int Id;
private boolean Visible;
private boolean Available;
private int StrengthenGroupId;
private int PromoteGroupId;
private int TransformItemId;