mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 14:30:56 +00:00
25 lines
698 B
C#
25 lines
698 B
C#
namespace PKHeX.Core
|
|
{
|
|
public sealed class TeamLock
|
|
{
|
|
public readonly NPCLock[] Locks;
|
|
public readonly string Comment;
|
|
public readonly int Species;
|
|
|
|
public TeamLock(int species, NPCLock[] locks) : this(species, string.Empty, locks) { }
|
|
|
|
public TeamLock(int species, string comment, NPCLock[] locks)
|
|
{
|
|
Species = species;
|
|
Locks = locks;
|
|
Comment = comment;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
if (Comment.Length == 0)
|
|
return $"{(Species)Species} [{Locks.Length}]";
|
|
return $"{(Species)Species} [{Locks.Length}] - {Comment}";
|
|
}
|
|
}
|
|
}
|