Implements a bunch more moves
This commit is contained in:
16
Plugins/PkmnLib.Plugin.Gen7/Scripts/Moves/Hex.cs
Normal file
16
Plugins/PkmnLib.Plugin.Gen7/Scripts/Moves/Hex.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using PkmnLib.Static.Utils;
|
||||
|
||||
namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
|
||||
|
||||
[Script(ScriptCategory.Move, "hex")]
|
||||
public class Hex : Script
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public override void ChangeBasePower(IExecutingMove move, IPokemon target, byte hit, ref byte basePower)
|
||||
{
|
||||
if (!target.StatusScript.IsEmpty)
|
||||
{
|
||||
basePower = basePower.MultiplyOrMax(2);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user