using System.Collections.Generic; using System.Text.Json.Nodes; using PkmnLib.Static.Utils; namespace PkmnLib.Dataloader.Models; public class SerializedAbility { public string? Effect { get; set; } public Dictionary Parameters { get; set; } = new(); }