11 lines
363 B
ActionScript
11 lines
363 B
ActionScript
namespace Gen7 {
|
|
[Move effect=Acrobatics]
|
|
class Acrobatics : PkmnScript{
|
|
void OverrideBasePower(ExecutingMove@ attack, Pokemon@ target, uint8 hit, uint8& basePower) override {
|
|
if (attack.User.HeldItem is null){
|
|
if (basePower >= 128) basePower = 255;
|
|
else basePower *= 2;
|
|
}
|
|
};
|
|
}
|
|
} |