Created
March 2, 2020 16:04
-
-
Save AlvarezAriel/098025060346141a9f728f0273b4ea3e to your computer and use it in GitHub Desktop.
Ludover (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 Ludover | |
| author Ariel | |
| ======== | |
| OBJECTS | |
| ======== | |
| Background | |
| LIGHTGREEN GREEN | |
| 11111 | |
| 01111 | |
| 11101 | |
| 11111 | |
| 10111 | |
| Target | |
| yellow orange | |
| 0.0.0 | |
| .0.0. | |
| .111. | |
| .000. | |
| 0.0.0 | |
| Wall | |
| BROWN DARKBROWN | |
| 00010 | |
| 11111 | |
| 01000 | |
| 11111 | |
| 00010 | |
| Player | |
| Black | |
| 00000 | |
| 00000 | |
| 00000 | |
| 00000 | |
| 00000 | |
| Crate | |
| white | |
| 0.0.0 | |
| .000. | |
| .000. | |
| .000. | |
| 0...0 | |
| Wolf | |
| Red | |
| 0...0 | |
| .000. | |
| 00000 | |
| .000. | |
| ..0.. | |
| ======= | |
| LEGEND | |
| ======= | |
| . = Background | |
| # = Wall | |
| P = Player | |
| * = Crate | |
| @ = Crate and Target | |
| O = Target | |
| X = Wolf | |
| ======= | |
| SOUNDS | |
| ======= | |
| Crate MOVE 36772507 | |
| endlevel 83744503 | |
| startgame 92244503 | |
| ================ | |
| COLLISIONLAYERS | |
| ================ | |
| Background | |
| Target | |
| Wolf | |
| Player, Crate, Wall | |
| ====== | |
| RULES | |
| ====== | |
| [ > Player | Wall ] -> [ Wall | Player ] | |
| [ > Player | Target] -> [ Target| Player ] | |
| [ Crate Target ] -> [ Crate ] | |
| [ Crate | ... | Target ] -> [ > Crate | ... | Target ] | |
| [ > Player | Crate ] -> [ Player | Crate ] | |
| ============== | |
| WINCONDITIONS | |
| ============== | |
| All Crate on Wolf | |
| ============== | |
| ======= | |
| LEVELS | |
| ======= | |
| message level 1 of 2 | |
| MESSAGE Feed the wolf by moving the terrain. | |
| MESSAGE Sheep loves hay, and will try to eat it. | |
| .*.. | |
| .... | |
| .O.P | |
| .... | |
| .X.. | |
| .... | |
| message level 2 of 2 | |
| .... | |
| .OO# | |
| *... | |
| ..P. | |
| .X.. | |
| .... | |
| message congratulations! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment