2018-06-30 09:59:48 -07:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace PKHeX.Core
|
2018-04-21 09:55:27 -07:00
|
|
|
|
{
|
2019-04-09 20:57:44 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// String providing interface with minimal support for game strings.
|
|
|
|
|
/// </summary>
|
2018-04-21 09:55:27 -07:00
|
|
|
|
public interface IBasicStrings
|
|
|
|
|
{
|
2018-06-30 09:59:48 -07:00
|
|
|
|
IReadOnlyList<string> Species { get; }
|
|
|
|
|
IReadOnlyList<string> Item { get; }
|
|
|
|
|
IReadOnlyList<string> Move { get; }
|
|
|
|
|
IReadOnlyList<string> Ability { get; }
|
|
|
|
|
IReadOnlyList<string> Types { get; }
|
|
|
|
|
IReadOnlyList<string> Natures { get; }
|
2019-04-09 20:57:44 -07:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Name an Egg has when obtained on this language.
|
|
|
|
|
/// </summary>
|
2018-04-21 09:55:27 -07:00
|
|
|
|
string EggName { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|