10 lines
254 B
C#
10 lines
254 B
C#
|
namespace PkmnLib.Plugin.Gen7.Scripts.Moves;
|
||
|
|
||
|
[Script(ScriptCategory.Move, "2_hit_move")]
|
||
|
public class DoubleHitMove : Script
|
||
|
{
|
||
|
public override void ChangeNumberOfHits(IMoveChoice choice, ref byte numberOfHits)
|
||
|
{
|
||
|
numberOfHits = 2;
|
||
|
}
|
||
|
}
|