mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 14:44:24 +00:00
Pokemon location tooltip fix for PLA + miscellaneous comment fixes (#3920)
* Fix Pokemon tooltip for LA incorrectly referring to SwSh location table * Fixes to comments referring to incorrect generation/version/game --------- Co-authored-by: James Park <5295838+pencilethics@users.noreply.github.com>
This commit is contained in:
parent
84694c63df
commit
0ba64a8da2
7 changed files with 7 additions and 7 deletions
|
@ -763,7 +763,7 @@ public sealed class GameStrings : IBasicStrings
|
|||
6 => Gen6,
|
||||
7 => GameVersion.Gen7b.Contains(version) ? Gen7b : Gen7,
|
||||
|
||||
8 when version is GameVersion.PLA => Gen8,
|
||||
8 when version is GameVersion.PLA => Gen8a,
|
||||
8 when GameVersion.BDSP.Contains(version) => Gen8b,
|
||||
8 => Gen8,
|
||||
9 => Gen9,
|
||||
|
|
|
@ -6,7 +6,7 @@ namespace PKHeX.Core;
|
|||
|
||||
/// <inheritdoc cref="EncounterArea" />
|
||||
/// <summary>
|
||||
/// <see cref="GameVersion.SWSH"/> encounter area
|
||||
/// <see cref="GameVersion.PLA"/> encounter area
|
||||
/// </summary>
|
||||
public sealed record EncounterArea8a : EncounterArea
|
||||
{
|
||||
|
|
|
@ -3,7 +3,7 @@ using System;
|
|||
namespace PKHeX.Core;
|
||||
|
||||
/// <summary>
|
||||
/// Encounter Slot found in <see cref="GameVersion.SWSH"/>.
|
||||
/// Encounter Slot found in <see cref="GameVersion.PLA"/>.
|
||||
/// </summary>
|
||||
/// <inheritdoc cref="EncounterSlot"/>
|
||||
public sealed record EncounterSlot8a : EncounterSlot, IAlphaReadOnly, IMasteryInitialMoveShop8
|
||||
|
|
|
@ -4,7 +4,7 @@ using static PKHeX.Core.AreaWeather9;
|
|||
namespace PKHeX.Core;
|
||||
|
||||
/// <summary>
|
||||
/// Encounter Slot found in <see cref="GameVersion.SWSH"/>.
|
||||
/// Encounter Slot found in <see cref="GameVersion.SV"/>.
|
||||
/// </summary>
|
||||
/// <inheritdoc cref="EncounterSlot"/>
|
||||
public sealed record EncounterSlot9 : EncounterSlot
|
||||
|
|
|
@ -4,7 +4,7 @@ using static PKHeX.Core.StaticCorrelation8bRequirement;
|
|||
namespace PKHeX.Core;
|
||||
|
||||
/// <summary>
|
||||
/// Generation 7 Static Encounter
|
||||
/// Generation 8 Static Encounter
|
||||
/// </summary>
|
||||
/// <inheritdoc cref="EncounterStatic"/>
|
||||
public sealed record EncounterStatic8b : EncounterStatic, IStaticCorrelation8b
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
namespace PKHeX.Core;
|
||||
|
||||
/// <summary>
|
||||
/// Generation 7 Trade Encounter
|
||||
/// Generation 8 BD/SP Trade Encounter
|
||||
/// </summary>
|
||||
/// <inheritdoc cref="EncounterTrade"/>
|
||||
public sealed record EncounterTrade8b : EncounterTrade, IContestStatsReadOnly, IScaledSizeReadOnly, IFixedOTFriendship
|
||||
|
|
|
@ -5,7 +5,7 @@ using static System.Buffers.Binary.BinaryPrimitives;
|
|||
namespace PKHeX.Core;
|
||||
|
||||
/// <summary>
|
||||
/// Generation 9 <see cref="SaveFile"/> object for <see cref="GameVersion.SWSH"/> games.
|
||||
/// Generation 9 <see cref="SaveFile"/> object for <see cref="GameVersion.SV"/> games.
|
||||
/// </summary>
|
||||
public sealed class SAV9SV : SaveFile, ISaveBlock9Main, ISCBlockArray, ISaveFileRevision
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue