Further work on refactor to interface based scripts
This commit is contained in:
@@ -3,10 +3,10 @@ using PkmnLib.Plugin.Gen7.Scripts.Pokemon;
|
||||
namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
|
||||
|
||||
[Script(ScriptCategory.Move, "spit_up")]
|
||||
public class SpitUp : Script
|
||||
public class SpitUp : Script, IScriptChangeBasePower
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public override void ChangeBasePower(IExecutingMove move, IPokemon target, byte hit, ref ushort basePower)
|
||||
public void ChangeBasePower(IExecutingMove move, IPokemon target, byte hit, ref ushort basePower)
|
||||
{
|
||||
var stockpileEffect = move.User.Volatile.Get<StockpileEffect>();
|
||||
if (stockpileEffect == null || stockpileEffect.StockpileCount == 0)
|
||||
|
||||
Reference in New Issue
Block a user