Skip to content

Commit

Permalink
Gave Nidorino a down special. And unlike half the moves I've given hi…
Browse files Browse the repository at this point in the history
…m so far, it doesn't shoot a projectile.
  • Loading branch information
RepeatGitHub committed Dec 16, 2022
1 parent 414adcc commit c2511ce
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
36 changes: 36 additions & 0 deletions module.js
Original file line number Diff line number Diff line change
Expand Up @@ -989,6 +989,42 @@ myImages[2][7][2]=[
['x','x',bl, bu, bu, bl, bu, bu, bl, bu, bu, bl, bu, bu, bl, 'x'],
['x','x','x',bl, bl, 'x',bl, bl, 'x',bl, bl, 'x',bl, bl, 'x','x'],
];
myImages[2][8][0]=[
['x','x','x','x','x','x','x','x','x','x','x','x','x','x','x','x'],
['x','x','x','x','x','x','x','x','x','x','x','x','x','x','x','x'],
['x','x','x','x','x','x','x','x','x','x','x','x','x','x','x','x'],
['x','x','x','x','x','x','x','x','x','x','x','x','x','x','x','x'],
['x','x','x','x','x','x','x','x','x','x','x','x','x','x','x','x'],
['x','x','x','x','x','x','x','x','x','x','x','x','x','x','x','x'],
['x','x','x','x','x','x','x','x','x','x','x','x','x',bl, bl, 'x'],
['x','x','x','x','x',bl, bl, bl, 'x','x',bl, bl, bl, bu, bl, 'x'],
['x','x','x',bl, bl, bu, bu, bu, bl, bl, bu, bu, bu, bl, 'x','x'],
['x','x',bl, bu, bu, bl, bu, bu, bu, bu, bu, bu, bu, bu, bl, 'x'],
['x',bl, bu, bu, bu, bu, bl, bu, bu, bl, bu, bu, bu, bl, bl, 'x'],
['x',bl, bu, bu, bu, bu, bu, bu, bu, bu, wn, bu, wn, bu, bl, 'x'],
['x',bl, bu, bu, bu, bu, bu, bu, bu, bu, bu, bu, bu, bl, 'x','x'],
['x',bl, bu, bu, bl, bl, bu, bl, bu, bu, bl, bl, bu, bu, bl, 'x'],
['x',bl, bu, bu, bl, bu, bu, bl, bl, bu, bu, bl, bu, bu, bl, 'x'],
['x','x',bl, bl, 'x',bl, bl, 'x','x',bl, bl, 'x',bl, bl, 'x','x'],
];
myImages[2][8][1]=[
['x','x','x','x','x','x','x','x','x','x','x','x','x','x','x','x'],
['x','x','x','x','x','x','x','x','x','x','x','x','x','x','x','x'],
['x','x','x','x','x','x','x','x','x','x','x','x','x','x','x','x'],
['x','x','x','x','x','x','x','x','x','x','x','x','x','x','x','x'],
['x','x','x','x','x','x','x','x','x','x','x','x','x','x','x','x'],
['x','x','x','x','x','x','x','x','x','x','x','x','x','x','x','x'],
['x','x','x','x','x','x','x','x','x','x','x','x','x','x',bl, bl ],
['x','x','x','x','x','x',bl, bl, bl, 'x','x',bl, bl, bl, bu, bl ],
['x','x','x','x',bl, bl, bu, bu, bu, bl, bl, bu, bu, bu, bl, 'x'],
['x','x','x',bl, bu, bu, bl, bu, bu, bu, bu, bu, bu, bu, bu, bl ],
['x','x',bl, bu, bu, bu, bu, bl, bu, bu, bl, bu, bu, bu, bl, bl ],
['x','x',bl, bu, bu, bu, bu, bu, bu, bu, bu, wn, bu, wn, bu, bl ],
['x','x',bl, bu, bu, bu, bu, bu, bu, bu, bu, bu, bu, bu, bl, 'x'],
['x',bl, bu, bu, bu, bl, bl, bu, bl, bu, bu, bl, bl, bu, bl, 'x'],
['x',bl, bu, bu, bu, bl, bu, bu, bl, bu, bu, bl, bu, bu, bl, 'x'],
['x','x',bl, bl, 'x',bl, bl, bl, 'x',bl, bl, 'x',bl, bl, 'x','x'],
];
myImages[3]=[];
myImages[3][69]=[
['x','x','x','x','x','x','x','x','x','x','x','x','x','x'],
Expand Down
7 changes: 7 additions & 0 deletions script.js
Original file line number Diff line number Diff line change
Expand Up @@ -1397,6 +1397,13 @@ var draw = function() {
h: 26,
};
}
} else if (p[a].char===2) {
p[a].hitbox={
x: p[a].x+6+(p[a].dir-1)*6,
y: p[a].y+21,
w: 42,
h: 27,
};
} else if (p[a].char===3) {
p[a].hitbox={
x: p[a].x+12,
Expand Down

0 comments on commit c2511ce

Please sign in to comment.