Lots of data and model setup

This commit is contained in:
gamer147
2025-05-18 02:27:17 -04:00
parent 79505e0c1a
commit b2024af852
77 changed files with 81988 additions and 433 deletions

View File

@@ -5,11 +5,18 @@ namespace SVSim.EmulatedEntrypoint.Models.Dtos;
[MessagePackObject()]
public class MyRotationAbility
{
[Key("ability_id")]
public int AbilityId { get; set; }
[Key("add_start_pp")]
public int AddStartPp { get; set; }
[Key("add_start_life")]
public int AddStartLife { get; set; }
[Key("increase_add_pptotal_amount")]
public int IncreaseAddPpTotalAmount { get; set; }
[Key("increase_add_pptotal_turn")]
public int IncreaseAddPpTotalTurn { get; set; }
[Key("ability")]
public string Ability { get; set; } = string.Empty;
public string AbilityDesc { get; set; } = String.Empty;
[Key("ability_desc")]
public string AbilityDesc { get; set; } = string.Empty;
}