Created
December 11, 2018 17:45
-
-
Save acoppes/aa5978b9e7a014fb4f2c9dc6ef70676a to your computer and use it in GitHub Desktop.
Dicey Dices (PuzzleScript Script)
This file contains 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 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 Dicey Dices | |
author Ariel Coppes | |
homepage www.puzzlescript.net | |
======== | |
OBJECTS | |
======== | |
Background | |
Black Black | |
11111 | |
01111 | |
11101 | |
11111 | |
10111 | |
SlotOne | |
#333333 Grey | |
00000 | |
00000 | |
00100 | |
00000 | |
00000 | |
SlotTwo | |
#333333 Grey | |
00000 | |
00010 | |
00000 | |
01000 | |
00000 | |
SlotThree | |
#333333 Grey | |
00000 | |
00010 | |
00100 | |
01000 | |
00000 | |
SlotFour | |
#333333 Grey | |
00000 | |
01010 | |
00000 | |
01010 | |
00000 | |
SlotFive | |
#333333 Grey | |
00000 | |
01010 | |
00100 | |
01010 | |
00000 | |
SlotSix | |
#333333 Grey | |
01010 | |
00000 | |
01010 | |
00000 | |
01010 | |
Wall | |
BROWN DARKBROWN | |
00010 | |
11111 | |
01000 | |
11111 | |
00010 | |
Player | |
Black Orange White Blue | |
.000. | |
.111. | |
22222 | |
.333. | |
.3.3. | |
DiceOne | |
White Black | |
00000 | |
00000 | |
00100 | |
00000 | |
00000 | |
DiceTwo | |
White Black | |
00000 | |
00010 | |
00000 | |
01000 | |
00000 | |
DiceThree | |
White Black | |
00000 | |
00010 | |
00100 | |
01000 | |
00000 | |
DiceFour | |
White Black | |
00000 | |
01010 | |
00000 | |
01010 | |
00000 | |
DiceFive | |
White Black | |
00000 | |
01010 | |
00100 | |
01010 | |
00000 | |
DiceSix | |
White Black | |
01010 | |
00000 | |
01010 | |
00000 | |
01010 | |
======= | |
LEGEND | |
======= | |
. = Background | |
# = Wall | |
P = Player | |
Q = SlotOne | |
W = SlotTwo | |
E = SlotThree | |
R = SlotFour | |
T = SlotFive | |
Y = SlotSix | |
1 = DiceOne | |
2 = DiceTwo | |
3 = DiceThree | |
4 = DiceFour | |
5 = DiceFive | |
6 = DiceSix | |
Dices = DiceOne or DiceTwo or DiceThree or DiceFour or DiceFive or DiceSix | |
======= | |
SOUNDS | |
======= | |
================ | |
COLLISIONLAYERS | |
================ | |
Background | |
SlotOne, SlotTwo, SlotThree, SlotFour, SlotFive, SlotSix | |
Player, Wall, DiceOne, DiceTwo, DiceThree, DiceFour, DiceFive, DiceSix | |
====== | |
RULES | |
====== | |
[ > Player | Dices ] -> [ > Player | > Dices ] | |
[ > DiceOne | DiceOne ] -> [ | DiceTwo ] | |
[ > DiceTwo | DiceOne ] -> [ | DiceThree ] | |
[ > DiceOne | DiceTwo ] -> [ | DiceThree ] | |
[ > DiceTwo | DiceTwo ] -> [ | DiceFour ] | |
[ > DiceThree | DiceOne ] -> [ | DiceFour ] | |
[ > DiceOne | DiceThree ] -> [ | DiceFour ] | |
[ > DiceTwo | DiceThree ] -> [ | DiceFive ] | |
[ > DiceThree | DiceTwo ] -> [ | DiceFive ] | |
[ > DiceFour | DiceOne ] -> [ | DiceFive ] | |
[ > DiceOne | DiceFour ] -> [ | DiceFive ] | |
[ > DiceThree | DiceThree ] -> [ | DiceSix ] | |
[ > DiceTwo | DiceFour ] -> [ | DiceSix ] | |
[ > DiceFour | DiceTwo ] -> [ | DiceSix ] | |
[ > DiceOne | DiceFive ] -> [ | DiceSix ] | |
[ > DiceFive | DiceOne ] -> [ | DiceSix ] | |
============== | |
WINCONDITIONS | |
============== | |
All SlotOne on DiceOne | |
All SlotTwo on DiceTwo | |
All SlotThree on DiceThree | |
All SlotFour on DiceFour | |
All SlotFive on DiceFive | |
All SlotSix on DiceSix | |
======= | |
LEVELS | |
======= | |
######## | |
#...1.q# | |
#p.##### | |
#...2.w# | |
######## | |
######### | |
#p......# | |
#.......# | |
#.2#e#1.# | |
#.......# | |
#.......# | |
######### | |
######### | |
##p....## | |
#..3.2..# | |
#..#2#..# | |
#.....1.# | |
##r###r## | |
######### | |
..####.... | |
..#p.###.. | |
..#....### | |
..#1.....# | |
..#..#.#.# | |
.##.4#.#.# | |
.#w..#.#.# | |
.#####1#.# | |
.....#r..# | |
.....##### | |
.#######.. | |
.#..#..### | |
.#.p3....# | |
.#.#.##1.# | |
.#r#.##.## | |
.#.#2##.#. | |
##....3.#. | |
#.....t.#. | |
#..######. | |
####...... | |
.######.... | |
##..1.####. | |
###.....e#. | |
#.r##.#..#. | |
#..##1#..#. | |
#p..231..#. | |
##.##.#..#. | |
#........#. | |
#..##..###. | |
#######.... | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment