11 lines
366 B
C#
11 lines
366 B
C#
namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
|
|
|
|
[Script(ScriptCategory.Move, "guardian_of_alola")]
|
|
public class GuardianOfAlola : Script, IScriptChangeMoveDamage
|
|
{
|
|
/// <inheritdoc />
|
|
public void ChangeMoveDamage(IExecutingMove move, IPokemon target, byte hit, ref uint damage)
|
|
{
|
|
damage = (uint)Math.Max(target.CurrentHealth * (3f / 4f), 1);
|
|
}
|
|
} |