namespace PkmnLib.Plugin.Gen7.Scripts.Abilities; /// /// Technician is an ability that boosts the power of the Pokémon's weaker moves. /// /// Bulbapedia - Technician /// [Script(ScriptCategory.Ability, "technician")] public class Technician : Script, IScriptChangeBasePower { /// public void ChangeBasePower(IExecutingMove move, IPokemon target, byte hit, ref ushort basePower) { if (move.UseMove.BasePower <= 60) { basePower = basePower.MultiplyOrMax(1.5f); } } }