Files
PkmnLib.NET/Plugins/PkmnLib.Plugin.Gen7/Scripts/Moves/Flail.cs
Deukhoofd d2a82b5fe3
All checks were successful
Build / Build (push) Successful in 3m12s
Many more tests and fixes
2026-08-27 17:11:12 +02:00

21 lines
611 B
C#

namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
[Script(ScriptCategory.Move, "flail")]
public class Flail : Script, IScriptChangeBasePower
{
/// <inheritdoc />
public void ChangeBasePower(IExecutingMove move, IPokemon target, byte hit, ref ushort basePower)
{
var remainingHealth = move.User.CurrentHealth / (float)move.User.BoostedStats.Hp;
var fraction = remainingHealth * 48;
basePower = fraction switch
{
< 2 => 200,
< 5 => 150,
< 10 => 100,
< 17 => 80,
< 33 => 40,
_ => 20,
};
}
}