It's the normal Celeste classic (https://mattmakesgames.itch.io/celesteclassic) but you can corrupt it.
Use the arrow keys in the title to modify the stuff. Have fun :p
Celeste classic was made by Noel Berry and Matt Thorson.


Hah, that's fun. I like how you didn't make sure it's still beatable - I'm imagining someone with a real Pico 8 realising a level is impossible, resetting, taking the cart out and blowing on it, then getting a slightly different corruption that may be possible, until they win
Do you think you could develop it as a template that you could just chuck in any cart? That might be fun. What's the minimum number of tokes you could do it in, that you just chuck at the start of any cart?


Davbo, I know this is like a month late, but here is a bit of code you can paste in the top of any cart to add a little corruptor thing:
c_sd,c_at=1000,400 ::_lp:: if not (btn(4)) then cls() if (btn(0)) c_at-=5 if (btn(1)) c_at+=5 if (btn(2)) c_sd-=5 if (btn(3)) c_sd+=5 print("⬆️ ⬇️ seed: "..c_sd,3,2) print("⬅️ ➡️ amount: "..c_at,3,9) flip()goto _lp else srand(c_sd) for i=1,c_at do poke(rnd(0x8000),rnd(0x100)) end end |


I got one where you couldn't respawn


i made celeste levle https://www.lexaloffle.com/bbs/cart_info.php?cid=kabumowufo-0


@OrangeKnife, I made celeste corrupter terrible https://www.lexaloffle.com/bbs/?pid=63389#p
[Please log in to post a comment]