Created
May 20, 2020 06:10
-
-
Save jayrbolton/e5c4f6e58e53b86682071f4c677ad4ec to your computer and use it in GitHub Desktop.
Elements (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 Elements | |
author Bob Ross | |
homepage www.spacejam.com | |
======== | |
OBJECTS | |
======== | |
Background | |
lightgreen | |
00000 | |
00000 | |
00000 | |
00000 | |
00000 | |
ElemU | |
darkred gray | |
11111 | |
10.01 | |
10.01 | |
10001 | |
11111 | |
ElemT | |
Blue DarkBlue | |
11111 | |
10001 | |
1.0.1 | |
1.0.1 | |
11111 | |
ElemH | |
Yellow gray | |
11111 | |
10.01 | |
10001 | |
10.01 | |
11111 | |
ElemI | |
DarkBlue gray | |
11111 | |
1.0.1 | |
1.0.1 | |
1.0.1 | |
11111 | |
ElemO | |
DarkGreen gray | |
11111 | |
10001 | |
10.01 | |
10001 | |
11111 | |
Wall | |
BROWN DARKBROWN | |
00010 | |
11111 | |
01000 | |
11111 | |
00010 | |
Player | |
Black Orange Pink Blue | |
.000. | |
.111. | |
22222 | |
.333. | |
.3.3. | |
======= | |
LEGEND | |
======= | |
. = Background | |
# = Wall | |
P = Player | |
H = ElemH | |
T = ElemT | |
I = ElemI | |
O = ElemO | |
U = ElemU | |
@ = ElemH or ElemT or ElemI or ElemO or ElemU | |
======= | |
SOUNDS | |
======= | |
================ | |
COLLISIONLAYERS | |
================ | |
Background | |
Player, ElemH, ElemT, ElemI, ElemO, ElemU, Wall | |
====== | |
RULES | |
====== | |
[ > Player | @ ] -> [ > Player | > @ ] | |
late [ ElemI | ElemH ] -> [ ElemT | ] | |
late [ ElemO | ElemI ] -> [ ElemH | ] | |
late [ ElemI | ElemI ] -> [ ElemH | ] | |
late [ ElemO | ElemO | ] -> [ ElemO | ElemO | ElemO ] | |
late [ ElemH | ElemO ] -> [ ElemH | ElemH ] | |
late [ ElemH | ElemH | ElemH ] -> [ ElemH | | ElemI ] | |
late [ ElemO | ElemU ] -> [ ElemI | ] | |
late [ ElemH | ElemU | ] -> [ ElemH | ElemH | ElemH ] | |
============== | |
WINCONDITIONS | |
============== | |
Some ElemT | |
======= | |
LEVELS | |
======= | |
message Adjacent elements react | |
message Goal: Make T | |
########## | |
#........# | |
#..P.....# | |
#........# | |
#.H..I...# | |
#........# | |
########## | |
message Make T again | |
########## | |
#........# | |
#..p.....# | |
#........# | |
#.i.i.o..# | |
#........# | |
########## | |
message Make T? | |
########## | |
#........# | |
#.o.i.p..# | |
#........# | |
#...o.o..# | |
#........# | |
########## | |
message Yes, Make T! | |
########## | |
#........# | |
#.o.u.p..# | |
#........# | |
#.u.o....# | |
#........# | |
########## | |
message To be continued.. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment