Even more moves
This commit is contained in:
13
Plugins/PkmnLib.Plugin.Gen7/Scripts/Moves/Rage.cs
Normal file
13
Plugins/PkmnLib.Plugin.Gen7/Scripts/Moves/Rage.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using PkmnLib.Plugin.Gen7.Scripts.Pokemon;
|
||||
|
||||
namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
|
||||
|
||||
[Script(ScriptCategory.Move, "rage")]
|
||||
public class Rage : Script
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public override void OnSecondaryEffect(IExecutingMove move, IPokemon target, byte hit)
|
||||
{
|
||||
move.User.Volatile.Add(new RageEffect());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user