Gen7Data/Scripts/Pokemon/flinch.as

8 lines
197 B
ActionScript

namespace Pokemon{
[Pokemon effect=Flinch]
class Flinch : PkmnScript{
void PreventAttack(ExecutingMove@ attack, bool& result) override {
result = true;
}
}
}