2018-06-30 16:59:48 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// String providing interface with minimal support for game strings.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IBasicStrings
|
2018-04-21 16:55:27 +00:00
|
|
|
|
{
|
2022-06-18 18:04:24 +00: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-10 03:57:44 +00:00
|
|
|
|
/// <summary>
|
2022-06-18 18:04:24 +00:00
|
|
|
|
/// Name an Egg has when obtained on this language.
|
2019-04-10 03:57:44 +00:00
|
|
|
|
/// </summary>
|
2022-06-18 18:04:24 +00:00
|
|
|
|
string EggName { get; }
|
2018-04-21 16:55:27 +00:00
|
|
|
|
}
|