2025-03-02 13:03:51 +00:00
|
|
|
namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
|
|
|
|
|
|
|
|
[Script(ScriptCategory.Move, "flail")]
|
|
|
|
public class Flail : Script
|
|
|
|
{
|
|
|
|
/// <inheritdoc />
|
|
|
|
public override void ChangeBasePower(IExecutingMove move, IPokemon target, byte hit, ref byte basePower)
|
|
|
|
{
|
|
|
|
var remainingHealth = move.User.CurrentHealth / move.User.BoostedStats.Hp;
|
|
|
|
var fraction = remainingHealth * 48;
|
|
|
|
basePower = fraction switch
|
|
|
|
{
|
|
|
|
< 2 => 200,
|
|
|
|
< 5 => 150,
|
|
|
|
< 10 => 100,
|
|
|
|
< 17 => 80,
|
|
|
|
< 33 => 40,
|
2025-03-02 16:19:57 +00:00
|
|
|
_ => 20,
|
2025-03-02 13:03:51 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|