37 lines
1.2 KiB
C#
37 lines
1.2 KiB
C#
namespace PkmnLib.Plugin.Gen7.Scripts.Pokemon;
|
|
|
|
[Script(ScriptCategory.Pokemon, "substitute")]
|
|
public class SubstituteEffect(uint health) : Script
|
|
{
|
|
private uint _health = health;
|
|
|
|
/// <inheritdoc />
|
|
public override void BlockIncomingHit(IExecutingMove executingMove, IPokemon target, byte hitIndex, ref bool block)
|
|
{
|
|
if (executingMove.UseMove.HasFlag("ignore-substitute"))
|
|
return;
|
|
|
|
var bypass = false;
|
|
var parameters = new Dictionary<StringKey, object?>
|
|
{
|
|
{ "target", target },
|
|
{ "move", executingMove },
|
|
{ "hitIndex", hitIndex },
|
|
{ "bypass", bypass },
|
|
};
|
|
executingMove.User.RunScriptHook(x => x.CustomTrigger(CustomTriggers.BypassProtection, parameters));
|
|
bypass = parameters.GetValueOrDefault("bypass", false) as bool? ?? false;
|
|
if (bypass)
|
|
return;
|
|
|
|
block = true;
|
|
var damage = executingMove.GetHitData(target, hitIndex).Damage;
|
|
if (damage >= _health)
|
|
{
|
|
executingMove.Battle.EventHook.Invoke(new DialogEvent("substitute_broken"));
|
|
RemoveSelf();
|
|
return;
|
|
}
|
|
_health -= damage;
|
|
}
|
|
} |