Skip to content

Instantly share code, notes, and snippets.

@AlvarezAriel
Created March 2, 2020 15:58
Show Gist options
  • Select an option

  • Save AlvarezAriel/fc3f350e0d88f8d7b58b9a7dd4dc86eb to your computer and use it in GitHub Desktop.

Select an option

Save AlvarezAriel/fc3f350e0d88f8d7b58b9a7dd4dc86eb to your computer and use it in GitHub Desktop.
Ludover (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
title Ludover
author Ariel
(
My favourite set of sokoban levels - here're the first ten of the Microban set.
I tried contacting this guy, but he seems to have vanished from the net. The levels are in lots of places online, so I'm just chancing my arm by including them. BUT BE WARNED.
)
========
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
.*..
....
.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