Skip to content

Commit

Permalink
Implement Chatter in Brokemons
Browse files Browse the repository at this point in the history
  • Loading branch information
KamilaBorowska committed Apr 17, 2014
1 parent 1733bc3 commit 31bf41a
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions mods/brokemons/moves.js
Expand Up @@ -212,6 +212,21 @@ exports.BattleMovedex = {
basePower: 40,
priority: 1
},
// Chatter - 70 BP, 100 Acc, Confuses both the user and the opponent. (8 PP)
chatter: {
inherit: true,
accuracy: 100,
basePower: 70,
onModifyMove: function () {},
pp: 5,
secondary: {
chance: 100,
onHit: function(target, source) {
target.addVolatile('confusion');
source.addVolatile('confusion');
}
}
},
// Charge Beam - 60 BP, 95 Acc, 100% chance to raise user's Sp. Attack
chargebeam: {
inherit: true,
Expand Down

0 comments on commit 31bf41a

Please sign in to comment.