Created
December 2, 2021 21:49
-
-
Save lee2sman/cc8c055f479e3b280420ee4ff0bb51b4 to your computer and use it in GitHub Desktop.
Cats and Mice (PuzzleScript Script)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Play this game by pasting the script in http://www.puzzlescript.net/editor.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
title Cats and Mice | |
author luthier | |
homepage www.lexaloffle.com | |
( | |
An inadequate but illustrative demake of one of my favourite puzzle games ever, by the extremely amicable Lexaloffle, and with his permission. | |
www.lexaloffle.com/neko.htm | |
The game proper has a lot of magic and love in it. | |
) | |
======== | |
OBJECTS | |
======== | |
Background . | |
DarkBlue | |
Kitten C | |
white Blue GREY | |
0...0 | |
01001 | |
00000 | |
0...0. | |
..... | |
Mouse F | |
grey black white | |
0...0 | |
01001 | |
00000 | |
0...0. | |
..... | |
Player P | |
lightred White blue | |
1..1. | |
1212 | |
01101 | |
1..1 | |
======= | |
LEGEND | |
======= | |
========= | |
SOUNDS | |
========= | |
endlevel 97301508 | |
startgame 97301508 | |
endgame 97301508 | |
================ | |
COLLISIONLAYERS | |
================ | |
Background | |
Player, Mouse, Kitten | |
====== | |
RULES | |
====== | |
[ > Player | ... | ] -> [ | ... | Player ] | |
(if you're not sure what this line does, try removing it, and see what happens) | |
[ > Player ] -> [ Player] | |
============== | |
WINCONDITIONS | |
============== | |
No Mouse | |
Some Kitten | |
======= | |
LEVELS | |
======= | |
message level 1 of 10, dont eat the kittens please! | |
..C...F. | |
........ | |
F......F | |
...C..FF | |
........ | |
........ | |
P....... | |
message level 2 of 10 | |
........ | |
....P... | |
.C.F.F.. | |
...C.... | |
........ | |
..F.FF.. | |
.......C | |
message level 3 of 10 | |
........ | |
.FF....F | |
........ | |
........ | |
F..CP... | |
..C.C... | |
........ | |
F.F..... | |
message level 4 of 10 | |
....F..F | |
..C....C | |
.......F | |
F.....CC | |
P....... | |
....C... | |
F...F... | |
message level 5 of 10 | |
........ | |
...CFCP. | |
F.F..... | |
....C... | |
F...F... | |
..F.F... | |
........ | |
message level 6 of 10 | |
F.....F. | |
........ | |
.....C.. | |
FF..F... | |
F.....F. | |
C...C... | |
.PC..... | |
message level 7 of 10 | |
...FP..F | |
F.F.C... | |
F......F | |
........ | |
.....C.. | |
.CF..... | |
........ | |
message level 8 of 10 | |
.CF..PC. | |
.....C.. | |
........ | |
.FFF.... | |
F..F..F. | |
....C... | |
........ | |
message level 9 of 10 | |
....F..F | |
.....C.. | |
.F..F... | |
....C... | |
CF.P..F. | |
.F.C.... | |
........ | |
message level 10 of 10 | |
....F.F. | |
........ | |
.F..F..F | |
...F..F. | |
...CC..F | |
..CFPC.. | |
....C... | |
message congratulations! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment