2022-06-18 18:04:24 +00:00
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Common Encounter Properties base interface.
|
|
|
|
|
/// <inheritdoc cref="IEncounterInfo"/>
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IEncounterable : IEncounterInfo, ILocation, IFixedAbilityNumber, IFixedBall, IShinyPotential
|
2017-01-05 06:25:45 +00:00
|
|
|
|
{
|
2017-10-24 06:12:58 +00:00
|
|
|
|
/// <summary>
|
2022-06-18 18:04:24 +00:00
|
|
|
|
/// Short name to describe the encounter data, usually just indicating which of the main component encounter types the data is.
|
2017-10-24 06:12:58 +00:00
|
|
|
|
/// </summary>
|
2022-06-18 18:04:24 +00:00
|
|
|
|
string Name { get; }
|
2021-02-25 02:08:03 +00:00
|
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Long name to describe the encounter data, containing more detailed (type-specific) information.
|
|
|
|
|
/// </summary>
|
|
|
|
|
string LongName { get; }
|
2017-01-05 06:25:45 +00:00
|
|
|
|
}
|