-
-
Save octoConnors/9820001 to your computer and use it in GitHub Desktop.
This file contains 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 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
run_rules_on_level_start | |
======== | |
OBJECTS | |
======== | |
r | |
red | |
..00. | |
.0000 | |
.0000 | |
..00. | |
..... | |
o | |
orange | |
..00. | |
.0000 | |
.0000 | |
..00. | |
..... | |
y | |
yellow | |
..00. | |
.0000 | |
.0000 | |
..00. | |
..... | |
g | |
green | |
..00. | |
.0000 | |
.0000 | |
..00. | |
..... | |
b | |
blue | |
..00. | |
.0000 | |
.0000 | |
..00. | |
..... | |
p | |
purple | |
..00. | |
.0000 | |
.0000 | |
..00. | |
..... | |
background | |
black darkgreen | |
10000 | |
10000 | |
10000 | |
10000 | |
11111 | |
player1 | |
lightgreen | |
.0..0 | |
..... | |
..... | |
.0..0 | |
..... | |
player2 | |
white | |
.00.0 | |
....0 | |
.0... | |
.0.00 | |
..... | |
clear | |
white | |
border | |
brown | |
rand | |
yellow | |
.0000 | |
.0000 | |
.0000 | |
.0000 | |
..... | |
======= | |
LEGEND | |
======= | |
color = r or o or y or g or b or p | |
color2 = r or o or y or g or b or p | |
. = background | |
? = rand | |
+ = rand and player1 | |
# = border | |
player = player1 or player2 | |
======= | |
SOUNDS | |
======= | |
================ | |
COLLISIONLAYERS | |
================ | |
background | |
clear | |
border, color, rand | |
player | |
====== | |
RULES | |
====== | |
[rand] -> [random color] | |
[action player1] -> [player2] | |
[action player2] -> [player1] | |
[> player2 color|color2] -> [color2|player1 color] | |
down [color| ] -> [> color| ] again | |
[clear color] -> [ ] | |
[r|r|r] -> [clear r|clear r|clear r] again | |
[o|o|o] -> [clear o|clear o|clear o] again | |
[y|y|y] -> [clear y|clear y|clear y] again | |
[g|g|g] -> [clear g|clear g|clear g] again | |
[b|b|b] -> [clear b|clear b|clear b] again | |
[p|p|p] -> [clear p|clear p|clear p] again | |
down [border|no color no border] -> [border|rand] again | |
============== | |
WINCONDITIONS | |
============== | |
======= | |
LEVELS | |
======= | |
########## | |
#+???????# | |
#????????# | |
#????????# | |
#????????# | |
#????????# | |
#????????# | |
#????????# | |
#????????# | |
########## |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment