Adds Arena Trap ability

This commit is contained in:
2021-11-20 14:43:13 +01:00
parent f19c60c4c1
commit baae9377ef
4 changed files with 36 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
namespace Gen7 {
namespace SpecialStates {
bool IsRaised(const Pokemon@ pokemon){
if (pokemon.HasType("flying")){
return true;
}
if (pokemon.HasVolatile("RaisedUp")){
return true;
}
return false;
}
}
}