Skip to content

Commit

Permalink
Added Nidorino's down special, which is just a slightly more powerful…
Browse files Browse the repository at this point in the history
…, less spammy version of his aerial charge special.
  • Loading branch information
RepeatGitHub committed Jan 3, 2023
1 parent 742c0ee commit 7c10dac
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions script.js
Original file line number Diff line number Diff line change
Expand Up @@ -792,6 +792,21 @@ var draw = function() {
p[a].frame1=9;
p[a].frame2=1;
}
if (p[a].char===2) {
// nidorino's down special is literally a less spammy, slightly more powerful version of his aerial up special, lmao
if (p[a].frame1!==5&&frameCount===floor(frameCount/10)*10) {
particles=append(particles,{
x: p[a].x+24+(p[a].dir-0.5)*2*12,
y: p[a].y+40,
vx: 0,
vy: p[a].vy-1,
opacity: 255,
owner: a,
colorr: color(255, 0, 255),
size: 15,
});
}
}
}
}
} else {
Expand Down

0 comments on commit 7c10dac

Please sign in to comment.