Gen7Data/Scripts/Pokemon/flinch.as

8 lines
197 B
ActionScript
Raw Normal View History

2020-04-10 22:23:17 +00:00
namespace Pokemon{
[Pokemon effect=Flinch]
class Flinch : PkmnScript{
void PreventAttack(ExecutingMove@ attack, bool& result) override {
result = true;
}
}
}