First couple abilities implemented
All checks were successful
Build / Build (push) Successful in 48s
All checks were successful
Build / Build (push) Successful in 48s
This commit is contained in:
15
Plugins/PkmnLib.Plugin.Gen7/Scripts/Abilities/Analytic.cs
Normal file
15
Plugins/PkmnLib.Plugin.Gen7/Scripts/Abilities/Analytic.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
namespace PkmnLib.Plugin.Gen7.Scripts.Abilities;
|
||||
|
||||
[Script(ScriptCategory.Ability, "analytic")]
|
||||
public class Analytic : Script
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public override void ChangeDamageModifier(IExecutingMove move, IPokemon target, byte hit, ref float modifier)
|
||||
{
|
||||
if (move.Battle.ChoiceQueue?.HasNext() == false)
|
||||
{
|
||||
move.Battle.EventHook.Invoke(new AbilityTriggerEvent(move.User));
|
||||
modifier *= 1.3f;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user