12 lines
334 B
ActionScript
12 lines
334 B
ActionScript
|
namespace Gen7 {
|
||
|
[Ability effect=Battery]
|
||
|
class BatteryAbility : PkmnScript {
|
||
|
void OnSwitchIn(Pokemon@ pokemon) override {
|
||
|
pokemon.BattleSide.AddVolatile("Battery");
|
||
|
}
|
||
|
|
||
|
void OnRemove() override {
|
||
|
cast<Pokemon@>(GetOwner()).BattleSide.RemoveVolatile("Battery");
|
||
|
}
|
||
|
}
|
||
|
}
|