This commit is contained in:
@@ -1,12 +1,21 @@
|
||||
namespace PkmnLib.Plugin.Gen7.Scripts.Pokemon;
|
||||
|
||||
[Script(ScriptCategory.Pokemon, "laser_focus")]
|
||||
public class LaserFocusEffect : Script, IScriptChangeCriticalStage
|
||||
public class LaserFocusEffect : Script, IScriptChangeCriticalStage, IScriptOnEndTurn
|
||||
{
|
||||
private bool _hasHadEndTurn;
|
||||
|
||||
/// <inheritdoc />
|
||||
public void ChangeCriticalStage(IExecutingMove move, IPokemon target, byte hit, ref byte stage)
|
||||
{
|
||||
stage = 100;
|
||||
RemoveSelf();
|
||||
}
|
||||
|
||||
public void OnEndTurn(IScriptSource owner, IBattle battle)
|
||||
{
|
||||
if (_hasHadEndTurn)
|
||||
RemoveSelf();
|
||||
else
|
||||
_hasHadEndTurn = true;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user