Initial commit.

This commit is contained in:
2020-04-11 00:23:17 +02:00
commit 5650fd004c
18 changed files with 94793 additions and 0 deletions

View File

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