Files
PkmnLib.NET/Plugins/PkmnLib.Plugin.Gen7/Scripts/Moves/FalseSwipe.cs

14 lines
410 B
C#

namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
[Script(ScriptCategory.Move, "false_swipe")]
public class FalseSwipe : Script, IScriptChangeMoveDamage
{
/// <inheritdoc />
public void ChangeMoveDamage(IExecutingMove move, IBattlePokemon target, byte hit, ref uint damage)
{
if ((int)target.CurrentHealth - damage < 1)
{
damage = target.CurrentHealth - 1;
}
}
}