Adds a lot more move effects
This commit is contained in:
10
Plugins/PkmnLib.Plugin.Gen7/Scripts/Moves/DoubleHitMove.cs
Normal file
10
Plugins/PkmnLib.Plugin.Gen7/Scripts/Moves/DoubleHitMove.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user