8 lines
224 B
ActionScript
8 lines
224 B
ActionScript
|
namespace Gen7{
|
||
|
[Move effect=Flinch]
|
||
|
class Flinch : PkmnScript {
|
||
|
void OnSecondaryEffect(ExecutingMove@ attack, Pokemon@ target, uint8 hit) override{
|
||
|
target.AddVolatile("flinch");
|
||
|
}
|
||
|
}
|
||
|
}
|