Created
February 29, 2020 00:10
-
-
Save jcmiller11/f143768199f6911ea59bac2749a0ecf5 to your computer and use it in GitHub Desktop.
test (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 test | |
| author katelyn delta jc'sdarkversion | |
| homepage www.puzzlescript.net | |
| run_rules_on_level_start | |
| ======== | |
| OBJECTS | |
| ======== | |
| Background | |
| GREEN | |
| Target | |
| DarkBlue | |
| Wall | |
| BROWN | |
| p1 | |
| Blue | |
| Crate | |
| Orange | |
| camera | |
| red | |
| wintile | |
| lightgreen | |
| darkness | |
| black | |
| lightmarker | |
| transparent | |
| ======= | |
| LEGEND | |
| ======= | |
| . = Background | |
| # = Wall | |
| P = p1 | |
| * = Crate | |
| @ = Crate and Target | |
| O = Target | |
| x = camera | |
| player = camera | |
| w = wintile | |
| ======= | |
| SOUNDS | |
| ======= | |
| ================ | |
| COLLISIONLAYERS | |
| ================ | |
| Background | |
| Target wintile | |
| camera, p1, Wall, Crate | |
| darkness | |
| lightmarker | |
| ====== | |
| RULES | |
| ====== | |
| [lightmarker] -> [] | |
| [darkness] -> [] | |
| [ > player ] [ p1 ] -> [ player] [> p1] | |
| [ > p1 | camera ] -> [ > p1 | > camera] | |
| [ no p1 | > camera ] -> [ no p1 | camera ] | |
| LATE [] -> [darkness] | |
| LATE [player darkness] -> [player lightmarker] | |
| LATE horizontal [player|] -> [player|lightmarker] | |
| LATE horizontal [player||] -> [player|lightmarker|lightmarker] | |
| LATE horizontal [player|||] -> [player|lightmarker|lightmarker|lightmarker] | |
| LATE vertical [lightmarker|] -> [lightmarker|no darkness] | |
| LATE vertical [lightmarker||] -> [lightmarker|no darkness|no darkness] | |
| LATE vertical [lightmarker|||] -> [lightmarker|no darkness|no darkness|no darkness] | |
| LATE [lightmarker darkness] -> [] | |
| LATE [p1 darkness] -> [p1] | |
| ============== | |
| WINCONDITIONS | |
| ============== | |
| all p1 on wintile | |
| ======= | |
| LEVELS | |
| ======= | |
| ##################### | |
| ###.....############# | |
| ###.....############# | |
| ###...............### | |
| ###.....####.####.### | |
| ###w....####.####.### | |
| ##########.....##.### | |
| ##########.....##.### | |
| ##########.px.....### | |
| ##########.....###### | |
| ##########.....###### | |
| ##################### | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment