Antitoon's jail (v4.1)
EDIT: fixed some minor bugs, new version (4.1) released!
Remix of Antitoon's jail level, for ReDesigner
1.0.2.
- Difficulty:
Hard
- Time:
At least 6 min to play
- Goal:
This time, Rayman is prisoner in the high-security antitoon's jail!! Rayman needs your help to escape from this evil place!! Betilla sends some tings and pink helpers to guide you to the exit... Good luck!
Need help?
Here's a video showing how to play without dying in the level:
https://vimeo.com/510581729
---------------------------------------------------------------------------------
To generate hundred of antitoons,I used this script (language : JavaScript) that give you a output text to paste in the textfile of the level. The code isn't perfect, but at least, it works!
Code: Select all
const Y = '282.0';
let i = 1120;
const L = i+2280;
//let X = i + '.0';
// Antitoon right
// [ 245.0, 105.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0 ],
const ar1 = "[ 245.0, ";
const ar2 = ", ";
const ar3 = ", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0 ], ";
// Antitoon left
// [ 124.0, 97.0, 168.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0 ],
const al1 = "[ 124.0, ";
const al2 = ", ";
const al3 = ", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0 ], ";
let res = '';
let alternate = true;
for (; i <= L; i+=15) {
alternate = !alternate;
if (alternate) {
res += ar1 + (i+'.0') + ar2 + Y + ar3;
}
else {
res += al1 + (i+'.0') + al2 + Y + al3;
}
}
document.write(res);