Turn 1
Marty2 called Landorus back!
Marty2 sent out Gliscor!
Landorus used Rock Slide!
The foe's Gliscor lost 20% of its health!
Turn 2
The foe's Gliscor used Roost!
The foe's Gliscor regained health!
Landorus used Smack Down!
It's not very effective... The foe's Gliscor lost 7% of its health!
Turn 3
The foe's Gliscor used Sleep Talk!
But it failed!
Landorus used Mud Shot!
The foe's Gliscor lost 30% of its health!
The foe's Gliscor's Speed fell!
Turn 3
Riolu used Copycat!
But it failed!
The foe's Riolu used Copycat!
The foe's Riolu used Copycat!
The foe's Riolu used Copycat!
The foe's Riolu used Copycat!
The foe's Riolu used Copycat!
STACK LIMIT EXCEEDED
PLEASE REPORT IN BUG THREAD
Event: ModifyStats
Parent event: Hit
STACK LIMIT EXCEEDED
PLEASE REPORT IN BUG THREAD
Event: ModifyPokemon
Parent event: Hit
STACK LIMIT EXCEEDED
PLEASE REPORT IN BUG THREAD
Event: ModifyStats
Parent event: Hit
STACK LIMIT EXCEEDED
PLEASE REPORT IN BUG THREAD
Event: ModifyPokemon
Parent event: Hit
STACK LIMIT EXCEEDED
PLEASE TELL AESOFT
Event: ModifyMove
Parent event: Hit
STACK LIMIT EXCEEDED
PLEASE REPORT IN BUG THREAD
Event: ModifyMove
Parent event: Hit
Turn 4
Turn 1
Marty2 called Leafeon back!
Marty2 sent out Alakazam!
Leafeon used Sunny Day!
The sunlight turned harsh!
The sunlight is strong!
Turn 2
The foe's Alakazam used Yawn!
The foe's Alakazam made Leafeon feel drowsy!
Leafeon used Sleep Talk!
But it failed!
The sunlight is strong!
________________________________________
Turn 6
The foe's Alakazam used Sleep Talk!
But it failed!
Leafeon used Safeguard!
Marty's team became cloaked in a mystical veil!
Turn 7
The foe's Alakazam used Yawn!
The foe's Alakazam made Leafeon feel drowsy!
Leafeon used Sleep Talk!
But it failed!
Turn 1
Marty2 called Shedinja back!
Marty2 sent out Cofagrigus!
The foe's Shedinja used X-Scissor!
It's not very effective... Cofagrigus lost 11% of its health!
Turn 2
Turn 1
Marty2 called Haxorus back!
Marty2 sent out Zangoose!
The foe's Haxorus used Toxic!
[DEBUG] Immunity handler suppressed by Mold Breaker.
[DEBUG] Immunity handler suppressed by Mold Breaker.
Zangoose was badly poisoned!
Zangoose is hurt by poison!
I'm not saying you're lying, but every time I've gotten a bug report like this, it's because someone forgot to EV their pokemon correctly, or used the wrong Nature, or calculated based on an Adamant Terrakion instead of a Jolly Terrakion, or forgot that sun wasn't up...This is a bit weird but earlier my Sawsbuck in sun with 260 speed (520 in sun) was out sped by a scarf terrakion (which reaches a max speed of 519 if everything is maxed) I double checked my sawsbuck and I should of out sped by 1 point. Don't know if there is a rounding error or something but this isn't right.
I'm not saying you're lying, but every time I've gotten a bug report like this, it's because someone forgot to EV their pokemon correctly, or used the wrong Nature, or calculated based on an Adamant Terrakion instead of a Jolly Terrakion, or forgot that sun wasn't up...
Can you double-check to make sure this is a real bug?
To be exact, you experience a graphics glitch in which you can't see your Nasty Plot boost. It's still there.Whenever I use nasty plot with my zoroak and THEN my illusion goes down, I lose my nasty plot. It's kinda annoying.
Pressure only affects moves targeted at you; this was recently corrected from affecting all moves used by any foe. Are you sure it's not that?Pressure doesn't work.
Dry Skin doesn't come with a debug message - we've been removing certain boost debug messages to make it easier to bluff, and because we're sure they work correctly.If you hit a Dry Skin Pokemon with a Fire move, there isn't a debug message. This is unusual because almost everything else does... Is Dry Skin not programmed right?
PS performance has never been great; I've been putting off fixes. Try Chrome or Safari.Also, Showdown has been freezing a lot for me. It might be my internet though...
"Assist": {
num: 274,
accuracy: true,
basePower: 0,
category: "Status",
desc: "The user performs a random move from any of the Pokemon on its team. Assist cannot generate itself, Chatter, Copycat, Counter, Covet, Destiny Bond, Detect, Endure, Feint, Focus Punch, Follow Me, Helping Hand, Me First, Metronome, Mimic, Mirror Coat, Mirror Move, Protect, Sketch, Sleep Talk, Snatch, Struggle, Switcheroo, Thief or Trick.",
shortDesc: "Uses a random move from the user's team.",
id: "Assist",
name: "Assist",
pp: 20,
priority: 0,
onHit: function(target) {
var moves = [];
{for (var j=0; j<target.side.pokemon.length; j++)
var pokemon = target.side.pokemon[j];
for (var i=0; i<pokemon.moves.length; i++)
{
var move = pokemon.moves;
var NoAssist = {
Assist:1, Chatter:1, CircleThrow:1, Copycat:1, Counter:1, Covet:1, DestinyBond:1, Detect:1, DragonTail:1, Endure:1, Feint:1, FocusPunch:1, FollowMe:1, HelpingHand:1, MeFirst:1, Metronome:1, Mimic:1, MirrorCoat:1, MirrorMove:1, Protect:1, QuickGuard:1, Sketch:1, SleepTalk:1, Snatch:1, Struggle:1, Switcheroo:1, Thief:1, Trick:1, WideGuard:1
};
if (move && !NoAssist[move])
{
moves.push(move);
}
}
}
var move = '';
if (moves.length) move = moves[parseInt(Math.random()*moves.length)];
if (!move)
{
return false;
}
this.useMove(move, target);
},
secondary: false,
target: "self",
type: "Normal"
},