Created
May 8, 2025 20:12
-
-
Save jcmiller11/19c178f83097094ff25ca92bd96d5b2b to your computer and use it in GitHub Desktop.
Simple Rock Dodging Game (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 Simple Rock Dodging Game | |
| author jcGyo | |
| homepage www.puzzlescript.net | |
| realtime_interval 0.3 | |
| ======== | |
| OBJECTS | |
| ======== | |
| Background | |
| blue lightblue | |
| 11111 | |
| 01111 | |
| 11101 | |
| 11111 | |
| 10111 | |
| Wall | |
| brown darkbrown | |
| 00000 | |
| 01110 | |
| 00000 | |
| 01110 | |
| 00000 | |
| Player | |
| black orange white blue | |
| .000. | |
| .111. | |
| 22222 | |
| .333. | |
| .3.3. | |
| Rock | |
| brown darkbrown | |
| ..0.. | |
| .111. | |
| 01000 | |
| .011. | |
| ..0.. | |
| Starter S | |
| transparent | |
| Ender E | |
| transparent | |
| ======= | |
| LEGEND | |
| ======= | |
| . = Background | |
| # = Wall | |
| P = Player and Ender | |
| ======= | |
| SOUNDS | |
| ======= | |
| ================ | |
| COLLISIONLAYERS | |
| ================ | |
| Background | |
| Starter, Ender | |
| Rock | |
| Player, Wall | |
| ====== | |
| RULES | |
| ====== | |
| [Rock Ender] -> [Ender] | |
| [stationary Player] [ Rock ] -> [Player][ DOWN Rock ] | |
| random [stationary Player] [ Starter No Rock] -> [Player][ Starter Rock ] | |
| [vertical Player] -> [Player] | |
| ============== | |
| WINCONDITIONS | |
| ============== | |
| All Player on Rock | |
| ======= | |
| LEVELS | |
| ======= | |
| #SSSSSSS# | |
| #.......# | |
| #.......# | |
| #.......# | |
| #.......# | |
| #.......# | |
| #.......# | |
| #.......# | |
| #EEPEEEE# | |
| Message You ded |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment