34 lines
1.4 KiB
C#
34 lines
1.4 KiB
C#
namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
|
|
|
|
[Script(ScriptCategory.Move, "conversion_2")]
|
|
public class Conversion2 : Script, IScriptOnSecondaryEffect
|
|
{
|
|
// The typeless "none" type is not part of the type data, so no generated constant exists for it.
|
|
private static readonly StringKey NoneTypeName = "none";
|
|
|
|
/// <inheritdoc />
|
|
public void OnSecondaryEffect(IExecutingMove move, IBattlePokemon target, byte hit)
|
|
{
|
|
var lastMoveByTarget = target.LastMoveChoice;
|
|
if (lastMoveByTarget == null || lastMoveByTarget.ChosenMove.MoveData.MoveType.Name == NoneTypeName)
|
|
{
|
|
move.GetHitData(target, hit).Fail();
|
|
return;
|
|
}
|
|
|
|
var typeLibrary = move.User.Battle.Library.StaticLibrary.Types;
|
|
// Get all types against which the last move would be not very effective
|
|
var type = typeLibrary.GetAllEffectivenessFromAttacking(lastMoveByTarget.ChosenMove.MoveData.MoveType)
|
|
.Where(x => x.effectiveness < 1 && !move.User.Types.Contains(x.type))
|
|
// Shuffle them randomly, but deterministically
|
|
.OrderBy(_ => move.User.Battle.Random.GetInt()).ThenBy(x => x.type.Value)
|
|
// And grab the first one
|
|
.Select(x => x.type).FirstOrDefault();
|
|
if (type == null)
|
|
{
|
|
move.GetHitData(target, hit).Fail();
|
|
return;
|
|
}
|
|
move.User.SetTypes([type]);
|
|
}
|
|
} |