Created
February 9, 2022 18:02
-
-
Save strickinato/0a3ef3777d0257a93ded12e3c1a0ea6f to your computer and use it in GitHub Desktop.
Skwiffle (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 Skwiffle | |
author Strick & Olivia | |
homepage brilliant.org | |
======== | |
OBJECTS | |
======== | |
Background | |
GREEN | |
Target | |
DarkBlue | |
Wall | |
BROWN | |
Player | |
Blue | |
Crate | |
Orange | |
Destroyer | |
Red | |
======= | |
LEGEND | |
======= | |
. = Background | |
# = Wall | |
P = Player | |
* = Crate | |
@ = Crate and Target | |
O = Target | |
D = Destroyer | |
======= | |
SOUNDS | |
======= | |
================ | |
COLLISIONLAYERS | |
================ | |
Background | |
Target | |
Player, Wall, Crate, Destroyer | |
====== | |
RULES | |
====== | |
[ > Player | Crate ] -> [ > Player | > Crate ] | |
[ > Player | Destroyer | Wall ] -> [ Background | Player | Background ] | |
[ Crate ] -> [ < Crate ] | |
[ Crate | Wall ] -> [ < Crate | Wall ] | |
============== | |
WINCONDITIONS | |
============== | |
All Player on Target | |
======= | |
LEVELS | |
======= | |
######### | |
#P.#....# | |
#.*##..*# | |
##..#...# | |
#.#.D#..# | |
#..#...O# | |
######### |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment