More moves implemented
This commit is contained in:
22
Plugins/PkmnLib.Plugin.Gen7/Scripts/Moves/Soak.cs
Normal file
22
Plugins/PkmnLib.Plugin.Gen7/Scripts/Moves/Soak.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
|
||||
|
||||
[Script(ScriptCategory.Move, "soak")]
|
||||
public class Soak : Script
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public override void OnSecondaryEffect(IExecutingMove move, IPokemon target, byte hit)
|
||||
{
|
||||
if (target.ActiveAbility?.Name == "multitype")
|
||||
{
|
||||
move.GetHitData(target, hit).Fail();
|
||||
return;
|
||||
}
|
||||
|
||||
var typeLibrary = move.Battle.Library.StaticLibrary.Types;
|
||||
// If water type is not found, we can't do anything.
|
||||
if (!typeLibrary.TryGetTypeIdentifier("water", out var waterType))
|
||||
return;
|
||||
|
||||
target.SetTypes([waterType]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user