Created
April 10, 2014 05:59
-
-
Save anonymous/10346397 to your computer and use it in GitHub Desktop.
title
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 Ouroboros | |
Author Loneship Games | |
======== | |
OBJECTS | |
======== | |
background | |
darkblue | |
wall | |
brown | |
head | |
green black darkblue | |
20002 | |
00000 | |
01010 | |
00000 | |
20002 | |
u | |
green darkgreen | |
00000 | |
00100 | |
01010 | |
00000 | |
00000 | |
d | |
green darkgreen | |
00000 | |
00000 | |
01010 | |
00100 | |
00000 | |
l | |
green darkgreen | |
00000 | |
00100 | |
01000 | |
00100 | |
00000 | |
r | |
green darkgreen | |
00000 | |
00100 | |
00010 | |
00100 | |
00000 | |
tail | |
lightgreen | |
..0.. | |
.000. | |
00000 | |
.000. | |
..0.. | |
tail2 | |
lightgreen | |
..0.. | |
.000. | |
00000 | |
.000. | |
..0.. | |
======= | |
LEGEND | |
======= | |
player = head | |
snake = u or d or l or r | |
. = background | |
# = wall | |
t = tail2 | |
1 = head and u | |
2 = head and d | |
3 = head and l | |
4 = head and r | |
======= | |
SOUNDS | |
======= | |
================ | |
COLLISIONLAYERS | |
================ | |
background | |
wall,snake,tail, tail2 | |
player | |
====== | |
RULES | |
====== | |
[tail2] -> [tail] | |
[> player|tail] -> win | |
[> player|wall ] -> cancel | |
[> player|snake] -> cancel | |
up [> player| ] -> [> player|u] | |
down [> player| ] -> [> player|d] | |
left [> player| ] -> [> player|l] | |
right [> player| ] -> [> player|r] | |
late up [tail|u] -> [ |tail2] | |
late down [tail|d] -> [ |tail2] | |
late left [tail|l] -> [ |tail2] | |
late right [tail|r] -> [ |tail2] | |
============== | |
WINCONDITIONS | |
============== | |
======= | |
LEVELS | |
======= | |
######### | |
#.......# | |
#.urrrr.# | |
#.t...d.# | |
#.....d.# | |
#.....d.# | |
#...3ld.# | |
#.......# | |
######### | |
########## | |
#...3lllu# | |
#...####u# | |
#.#....#u# | |
#.##.#..u# | |
#......#u# | |
##.##.##t# | |
##.......# | |
########## | |
######### | |
#..llllu# | |
#.#d#.#u# | |
#.#d..#u# | |
#..d#..t# | |
#.#d#1#.# | |
#..d#u#.# | |
#..drr..# | |
######### |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment