Ban more BDSP egg moves before HOME

https: //github.com/kwsch/UnityDPtools/pull/2
Co-Authored-By: Lusamine <30205550+Lusamine@users.noreply.github.com>
This commit is contained in:
Kurt 2021-12-20 19:00:48 -08:00
parent 38a4135bcd
commit 1e0ac7fb26
3 changed files with 28 additions and 2 deletions

View file

@ -0,0 +1,26 @@
using System.Linq;
using FluentAssertions;
using Xunit;
using static PKHeX.Core.Species;
using static PKHeX.Core.Move;
namespace PKHeX.Core.Tests.Legality;
public static class TempTests
{
[Theory]
[InlineData(Taillow, Boomburst)]
[InlineData(Plusle, TearfulLook)] [InlineData(Minun, TearfulLook)]
[InlineData(Luvdisc, HealPulse)]
[InlineData(Starly, Detect)]
[InlineData(Chatot, Boomburst)] [InlineData(Chatot, Encore)]
[InlineData(Spiritomb, FoulPlay)]
public static void CanLearnEggMoveBDSP(Species species, Move move)
{
MoveEgg.GetEggMoves(8, (int)species, 0, GameVersion.BD).Contains((int)move).Should().BeFalse();
var pb8 = new PB8 { Species = (int)species };
var encs = EncounterMovesetGenerator.GenerateEncounters(pb8, new[] { (int)move }, GameVersion.BD);
encs.Any().Should().BeFalse("Unavailable until HOME update supports BD/SP.");
}
}

View file

@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<LangVersion>9</LangVersion>
<TargetFramework>net6.0</TargetFramework>
<LangVersion>10</LangVersion>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>