More moves, allow for typeless moves
This commit is contained in:
14
Plugins/PkmnLib.Plugin.Gen7/Scripts/Moves/Roost.cs
Normal file
14
Plugins/PkmnLib.Plugin.Gen7/Scripts/Moves/Roost.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using PkmnLib.Plugin.Gen7.Scripts.Pokemon;
|
||||
|
||||
namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
|
||||
|
||||
[Script(ScriptCategory.Move, "roost")]
|
||||
public class Roost : Script
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public override void OnSecondaryEffect(IExecutingMove move, IPokemon target, byte hit)
|
||||
{
|
||||
target.Heal(target.MaxHealth / 2);
|
||||
target.Volatile.Add(new RoostEffect());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user