15 lines
491 B
C#
15 lines
491 B
C#
namespace PkmnLib.Plugin.Gen7.Scripts.Pokemon;
|
|
|
|
[Script(ScriptCategory.Pokemon, "flash_fire_effect")]
|
|
public class FlashFireEffect : Script
|
|
{
|
|
/// <inheritdoc />
|
|
public override void ChangeOffensiveStatValue(IExecutingMove move, IPokemon target, byte hit, uint defensiveStat,
|
|
ImmutableStatisticSet<uint> targetStats, ref uint value)
|
|
{
|
|
if (move.GetHitData(target, hit).Type?.Name == "fire")
|
|
{
|
|
value = value.MultiplyOrMax(1.5f);
|
|
}
|
|
}
|
|
} |