Created
September 16, 2019 22:46
-
-
Save lyudenn/9bf644abefcb4ac3ff2a6d0a4548300c to your computer and use it in GitHub Desktop.
Miner Guy (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 Miner Guy | |
| author Dennis M. | |
| homepage www.puzzlescript.net | |
| ======== | |
| OBJECTS | |
| ======== | |
| Background | |
| gray | |
| 00000 | |
| 00000 | |
| 00000 | |
| 00000 | |
| 00000 | |
| Target1 | |
| whiteRed | |
| 0...0 | |
| .111. | |
| .101. | |
| .111. | |
| 0...0 | |
| Target2 | |
| whitelightgray | |
| 0...0 | |
| .111. | |
| .1.1. | |
| .111. | |
| 0...0 | |
| Rock | |
| BROWNBlack | |
| 00000 | |
| 01110 | |
| 00010 | |
| 00110 | |
| 00000 | |
| Player | |
| BlueYellowRedPink | |
| .000. | |
| .333. | |
| 22222 | |
| 21112 | |
| .0.0. | |
| Cristal | |
| white | |
| ..... | |
| 00000 | |
| .000. | |
| ..0.. | |
| ..... | |
| Topacio | |
| Red lightgray | |
| ..... | |
| 01110 | |
| 00000 | |
| 00000 | |
| ..... | |
| ======= | |
| LEGEND | |
| ======= | |
| . = Background | |
| # = rock | |
| P = Player | |
| * = Cristal | |
| @ = Cristal and Target1 | |
| O = Target1 | |
| t = Target2 | |
| Q = Topacio and Target2 | |
| R = Topacio | |
| ======= | |
| SOUNDS | |
| ======= | |
| ================ | |
| COLLISIONLAYERS | |
| ================ | |
| Background | |
| Target1, Target2 | |
| Player, Rock, Cristal, Topacio | |
| ====== | |
| RULES | |
| ====== | |
| [ > Player | Cristal ] -> [ > Player | > Cristal ] | |
| [ > Player | Topacio ] -> [ > Player | > Topacio ] | |
| ============== | |
| WINCONDITIONS | |
| ============== | |
| All Target2 on Cristal | |
| all Target1 on Topacio | |
| ======= | |
| LEVELS | |
| ======= | |
| message Lets start! | |
| #o##t# | |
| #.##.# | |
| #.##.# | |
| #r##*# | |
| #....# | |
| #.p..# | |
| #....# | |
| ###### | |
| message Next round | |
| ######### | |
| #o..#...# | |
| #..##.r.# | |
| #.##....# | |
| #.....### | |
| #......t# | |
| ####..### | |
| #..#....# | |
| #.*.....# | |
| #.....#p# | |
| ######### | |
| message that was pretty easy right? | |
| ################## | |
| #.t#..........#.o# | |
| #..###........#..# | |
| #.......#####....# | |
| ##.........##.#..# | |
| #######.....#.#..# | |
| #........#.......# | |
| #........#......## | |
| #######..#.......# | |
| #........######..# | |
| #....#...###..#..# | |
| #.##.#####.......# | |
| #.##.....###..#..# | |
| #....#####....##.# | |
| #.r......#.......# | |
| #.....#..##..##### | |
| #..#..#..#..##...# | |
| #######..#.....*.# | |
| #p.......##..#...# | |
| ################## | |
| message You won! | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment