Files
SVSimServer/SVSim.EmulatedEntrypoint/Models/Dtos/AvatarAbility.cs
2024-09-12 00:35:31 -04:00

17 lines
544 B
C#

using MessagePack;
namespace SVSim.EmulatedEntrypoint.Models.Dtos;
[MessagePackObject]
public class AvatarAbility
{
public int LeaderSkinId { get; set; }
public int BattleStartFirstPlayerBp { get; set; }
public int BattleStartSecondPlayerBp { get; set; }
public int BattleStartMaxLife { get; set; }
public string AbilityCost { get; set; }
public string Ability { get; set; }
public string PassiveAbility { get; set; }
public string AbilityDesc { get; set; }
public string PassiveAbilityDesc { get; set; }
}