Deukhoofd a17cb92c5a
Some checks failed
continuous-integration/drone/push Build is failing
Implements a bunch more moves
2025-05-17 17:44:15 +02:00

20 lines
785 B
C#

namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
[Script(ScriptCategory.Move, "synthesis")]
public class Synthesis : Script
{
/// <inheritdoc />
public override void OnSecondaryEffect(IExecutingMove move, IPokemon target, byte hit)
{
var healModifier = 0.5f;
var weatherName = target.BattleData?.Battle?.WeatherName;
if (weatherName == ScriptUtils.ResolveName<Weather.Sunny>())
healModifier = 2 / 3f;
else if (weatherName == ScriptUtils.ResolveName<Weather.Rain>() ||
weatherName == ScriptUtils.ResolveName<Weather.Hail>() ||
weatherName == ScriptUtils.ResolveName<Weather.Sandstorm>())
healModifier = 1 / 4f;
move.User.Heal((uint)(move.User.MaxHealth * healModifier));
}
}