PkmnLib.NET/Plugins/PkmnLib.Plugin.Gen7/Scripts/Moves/DragonRage.cs

11 lines
290 B
C#
Raw Normal View History

2025-02-01 14:00:22 +00:00
namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
[Script(ScriptCategory.Move, "dragon_rage")]
public class DragonRage : Script
{
/// <inheritdoc />
2025-02-03 10:40:26 +00:00
public override void ChangeMoveDamage(IExecutingMove move, IPokemon target, byte hit, ref uint damage)
2025-02-01 14:00:22 +00:00
{
damage = 40;
}
}