using System.Collections.Generic; namespace PKHeX.Core { public interface IBasicStrings { IReadOnlyList Species { get; } IReadOnlyList Item { get; } IReadOnlyList Move { get; } IReadOnlyList Ability { get; } IReadOnlyList Types { get; } IReadOnlyList Natures { get; } string EggName { get; } } }