11 lines
322 B
C#
11 lines
322 B
C#
|
namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
|
||
|
|
||
|
[Script(ScriptCategory.Move, "focus_energy")]
|
||
|
public class FocusEnergy : Script
|
||
|
{
|
||
|
/// <inheritdoc />
|
||
|
public override void OnSecondaryEffect(IExecutingMove move, IPokemon target, byte hit)
|
||
|
{
|
||
|
target.Volatile.Add(new Pokemon.IncreasedCriticalStage());
|
||
|
}
|
||
|
}
|