This commit is contained in:
@@ -684,7 +684,7 @@ public class PokemonImpl : ScriptSource, IPokemon
|
||||
var weight = Form.Weight;
|
||||
if (BattleData is not null)
|
||||
// ReSharper disable once AccessToModifiedClosure
|
||||
this.RunScriptHook(script => script.ModifyWeight(ref weight));
|
||||
this.RunScriptHook<IScriptModifyWeight>(script => script.ModifyWeight(ref weight));
|
||||
if (weight < 0.1f)
|
||||
weight = 0.1f;
|
||||
return weight;
|
||||
@@ -793,7 +793,7 @@ public class PokemonImpl : ScriptSource, IPokemon
|
||||
{
|
||||
var previous = HeldItem;
|
||||
HeldItem = item;
|
||||
this.RunScriptHook(x => x.OnAfterHeldItemChange(this, previous, item));
|
||||
this.RunScriptHook<IScriptOnAfterHeldItemChange>(x => x.OnAfterHeldItemChange(this, previous, item));
|
||||
return previous;
|
||||
}
|
||||
|
||||
@@ -809,7 +809,7 @@ public class PokemonImpl : ScriptSource, IPokemon
|
||||
}
|
||||
var previous = HeldItem;
|
||||
HeldItem = null;
|
||||
this.RunScriptHook(x => x.OnAfterHeldItemChange(this, previous, null));
|
||||
this.RunScriptHook<IScriptOnAfterHeldItemChange>(x => x.OnAfterHeldItemChange(this, previous, null));
|
||||
return previous;
|
||||
}
|
||||
|
||||
@@ -833,7 +833,8 @@ public class PokemonImpl : ScriptSource, IPokemon
|
||||
return false;
|
||||
}
|
||||
var prevent = false;
|
||||
this.RunScriptHook(script => script.PreventHeldItemSteal(this, HeldItem, ref prevent));
|
||||
this.RunScriptHook<IScriptPreventHeldItemSteal>(script =>
|
||||
script.PreventHeldItemSteal(this, HeldItem, ref prevent));
|
||||
if (prevent)
|
||||
{
|
||||
item = null;
|
||||
@@ -861,7 +862,7 @@ public class PokemonImpl : ScriptSource, IPokemon
|
||||
if (BattleData != null)
|
||||
{
|
||||
var prevented = false;
|
||||
this.RunScriptHookInterface<IScriptPreventHeldItemConsume>(script =>
|
||||
this.RunScriptHook<IScriptPreventHeldItemConsume>(script =>
|
||||
script.PreventHeldItemConsume(this, HeldItem, ref prevented));
|
||||
if (prevented)
|
||||
return false;
|
||||
@@ -880,7 +881,7 @@ public class PokemonImpl : ScriptSource, IPokemon
|
||||
{
|
||||
// TODO: actually consume the item
|
||||
|
||||
this.RunScriptHookInterface<IScriptOnAfterItemConsume>(x => x.OnAfterItemConsume(this, item));
|
||||
this.RunScriptHook<IScriptOnAfterItemConsume>(x => x.OnAfterItemConsume(this, item));
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
@@ -890,11 +891,11 @@ public class PokemonImpl : ScriptSource, IPokemon
|
||||
if (!force)
|
||||
{
|
||||
var prevented = false;
|
||||
this.RunScriptHookInterface<IScriptPreventStatBoostChange>(script =>
|
||||
this.RunScriptHook<IScriptPreventStatBoostChange>(script =>
|
||||
script.PreventStatBoostChange(this, stat, change, selfInflicted, ref prevented));
|
||||
if (prevented)
|
||||
return false;
|
||||
this.RunScriptHookInterface<IScriptChangeStatBoostChange>(script =>
|
||||
this.RunScriptHook<IScriptChangeStatBoostChange>(script =>
|
||||
script.ChangeStatBoostChange(this, stat, selfInflicted, ref change));
|
||||
if (change == 0)
|
||||
return false;
|
||||
@@ -919,7 +920,7 @@ public class PokemonImpl : ScriptSource, IPokemon
|
||||
}
|
||||
|
||||
RecalculateBoostedStats();
|
||||
this.RunScriptHookInterface<IScriptOnAfterStatBoostChange>(script =>
|
||||
this.RunScriptHook<IScriptOnAfterStatBoostChange>(script =>
|
||||
script.OnAfterStatBoostChange(this, stat, selfInflicted, change));
|
||||
return true;
|
||||
}
|
||||
@@ -1075,7 +1076,7 @@ public class PokemonImpl : ScriptSource, IPokemon
|
||||
if (BattleData is not null && !forceDamage)
|
||||
{
|
||||
var dmg = damage;
|
||||
this.RunScriptHookInterface<IScriptChangeIncomingDamage>(script =>
|
||||
this.RunScriptHook<IScriptChangeIncomingDamage>(script =>
|
||||
script.ChangeIncomingDamage(this, source, ref dmg));
|
||||
damage = dmg;
|
||||
}
|
||||
@@ -1096,8 +1097,7 @@ public class PokemonImpl : ScriptSource, IPokemon
|
||||
BatchId = batchId,
|
||||
});
|
||||
// And allow scripts to execute.
|
||||
this.RunScriptHookInterface<IScriptOnDamage>(script =>
|
||||
script.OnDamage(this, source, CurrentHealth, newHealth));
|
||||
this.RunScriptHook<IScriptOnDamage>(script => script.OnDamage(this, source, CurrentHealth, newHealth));
|
||||
}
|
||||
|
||||
CurrentHealth = newHealth;
|
||||
@@ -1126,14 +1126,14 @@ public class PokemonImpl : ScriptSource, IPokemon
|
||||
BattleData.Battle.EventHook.Invoke(new FaintEvent(this));
|
||||
|
||||
// Allow scripts to trigger based on the faint.
|
||||
this.RunScriptHookInterface<IScriptOnFaint>(script => script.OnFaint(this, source));
|
||||
this.RunScriptHook<IScriptOnFaint>(script => script.OnFaint(this, source));
|
||||
foreach (var ally in BattleData.BattleSide.Pokemon.WhereNotNull().Where(x => x != this))
|
||||
{
|
||||
ally.RunScriptHookInterface<IScriptOnAllyFaint>(script => script.OnAllyFaint(ally, this));
|
||||
ally.RunScriptHook<IScriptOnAllyFaint>(script => script.OnAllyFaint(ally, this));
|
||||
}
|
||||
|
||||
// Make sure the OnRemove script is run.
|
||||
this.RunScriptHook(script => script.OnRemove());
|
||||
this.RunScriptHook<IScriptOnRemove>(script => script.OnRemove());
|
||||
|
||||
// Mark the position as unfillable if it can't be filled by any party.
|
||||
if (!BattleData.Battle.CanSlotBeFilled(BattleData.SideIndex, BattleData.Position))
|
||||
@@ -1162,7 +1162,7 @@ public class PokemonImpl : ScriptSource, IPokemon
|
||||
if (!forceHeal)
|
||||
{
|
||||
var prevented = false;
|
||||
this.RunScriptHook(x => x.PreventHeal(this, heal, allowRevive, ref prevented));
|
||||
this.RunScriptHook<IScriptPreventHeal>(x => x.PreventHeal(this, heal, allowRevive, ref prevented));
|
||||
if (prevented)
|
||||
return false;
|
||||
}
|
||||
@@ -1226,7 +1226,8 @@ public class PokemonImpl : ScriptSource, IPokemon
|
||||
var selfInflicted = originPokemon == this;
|
||||
|
||||
var preventStatus = false;
|
||||
this.RunScriptHook(script => script.PreventStatusChange(this, status, selfInflicted, ref preventStatus));
|
||||
this.RunScriptHook<IScriptPreventStatusChange>(script =>
|
||||
script.PreventStatusChange(this, status, selfInflicted, ref preventStatus));
|
||||
if (preventStatus)
|
||||
return false;
|
||||
|
||||
@@ -1236,7 +1237,8 @@ public class PokemonImpl : ScriptSource, IPokemon
|
||||
{
|
||||
BatchId = batchId,
|
||||
});
|
||||
this.RunScriptHook(script => script.OnAfterStatusChange(this, status, originPokemon));
|
||||
this.RunScriptHook<IScriptOnAfterStatusChange>(script =>
|
||||
script.OnAfterStatusChange(this, status, originPokemon));
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -1375,7 +1377,7 @@ public class PokemonImpl : ScriptSource, IPokemon
|
||||
get
|
||||
{
|
||||
var isFloating = Types.Any(x => x.Name == "flying");
|
||||
this.RunScriptHook(x => x.IsFloating(this, ref isFloating));
|
||||
this.RunScriptHook<IScriptIsFloating>(x => x.IsFloating(this, ref isFloating));
|
||||
return isFloating;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user