Petal Dance (07muwc4v)
0 ratingsGrass
Special
The user attacks the target by scattering petals for two to three turns. The user then becomes confused.
(game,user,targets) => {
if (!user.battle.moveTurn) user.battle.random = game.getRandom(2, 3);
for (var i = 0, msgs = [], cb = []; i < user.battle.random; ++i) {
msgs[i] = "";
cb[i] = () => targets.dealDamage();
}
game.setupMultiTurn(msgs, "", cb, () => user.confuse(true));
}
currently removed due to bugs