13 lines
398 B
C#
13 lines
398 B
C#
|
using PkmnLib.Static.Utils;
|
||
|
|
||
|
namespace PkmnLib.Plugin.Gen7.Scripts.Pokemon;
|
||
|
|
||
|
public class HelpingHandEffect : Script
|
||
|
{
|
||
|
/// <inheritdoc />
|
||
|
public override void ChangeBasePower(IExecutingMove move, IPokemon target, byte hit, ref byte basePower) =>
|
||
|
basePower = basePower.MultiplyOrMax(1.5f);
|
||
|
|
||
|
/// <inheritdoc />
|
||
|
public override void OnEndTurn(IBattle battle) => RemoveSelf();
|
||
|
}
|