15 lines
466 B
C#
15 lines
466 B
C#
namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
|
|
|
|
[Script(ScriptCategory.Move, "venoshock")]
|
|
public class Venoshock : Script
|
|
{
|
|
/// <inheritdoc />
|
|
public override void ChangeMoveDamage(IExecutingMove move, IPokemon target, byte hit, ref uint damage)
|
|
{
|
|
if (target.HasStatus(ScriptUtils.ResolveName<Status.Poisoned>()) ||
|
|
target.HasStatus(ScriptUtils.ResolveName<Status.BadlyPoisoned>()))
|
|
{
|
|
damage *= 2;
|
|
}
|
|
}
|
|
} |