More moves
This commit is contained in:
22
Plugins/PkmnLib.Plugin.Gen7/Scripts/Moves/ParabolicCharge.cs
Normal file
22
Plugins/PkmnLib.Plugin.Gen7/Scripts/Moves/ParabolicCharge.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System.Linq;
|
||||
|
||||
namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
|
||||
|
||||
[Script(ScriptCategory.Move, "parabolic_charge")]
|
||||
public class ParabolicCharge : Script
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public override void OnAfterMove(IExecutingMove move)
|
||||
{
|
||||
if (move.User.IsFainted)
|
||||
return;
|
||||
var totalDamage = move.Hits.Sum(x => x.Damage);
|
||||
var halfDamage = totalDamage / 2;
|
||||
if (halfDamage == 0)
|
||||
return;
|
||||
if (halfDamage > uint.MaxValue)
|
||||
halfDamage = uint.MaxValue;
|
||||
|
||||
move.User.Heal((uint)halfDamage);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user