11 lines
286 B
C#
11 lines
286 B
C#
|
namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
|
||
|
|
||
|
[Script(ScriptCategory.Move, "dragon_rage")]
|
||
|
public class DragonRage : Script
|
||
|
{
|
||
|
/// <inheritdoc />
|
||
|
public override void ChangeDamage(IExecutingMove move, IPokemon target, byte hit, ref uint damage)
|
||
|
{
|
||
|
damage = 40;
|
||
|
}
|
||
|
}
|