This commit is contained in:
@@ -226,20 +226,20 @@ public class SerializedMoves
|
||||
/// <summary>
|
||||
/// The moves the Pokémon can learn by leveling up.
|
||||
/// </summary>
|
||||
public SerializedLevelMove[]? LevelMoves { get; set; } = null!;
|
||||
public SerializedLevelMove[]? LevelMoves { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The moves the Pokémon can learn by breeding.
|
||||
/// </summary>
|
||||
public string[]? EggMoves { get; set; } = null!;
|
||||
public string[]? EggMoves { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The moves the Pokémon can learn by tutoring.
|
||||
/// </summary>
|
||||
public string[]? TutorMoves { get; set; } = null!;
|
||||
public string[]? TutorMoves { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The moves the Pokémon can learn by TM.
|
||||
/// </summary>
|
||||
public string[]? Machine { get; set; } = null!;
|
||||
public string[]? Machine { get; set; }
|
||||
}
|
||||
@@ -1,7 +1,6 @@
|
||||
using PkmnLib.Dynamic.AI.Explicit;
|
||||
using PkmnLib.Dynamic.Plugins;
|
||||
using PkmnLib.Dynamic.ScriptHandling;
|
||||
using PkmnLib.Dynamic.ScriptHandling.Registry;
|
||||
using PkmnLib.Static.Libraries;
|
||||
|
||||
namespace PkmnLib.Dynamic.Libraries;
|
||||
|
||||
Reference in New Issue
Block a user