|
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<string, JsonNode> Parameters { get; set; } = new();
|
|
} |