Created
September 4, 2020 22:18
-
-
Save thacuber2a03/b925f31c12ae539135de78a684540ba9 to your computer and use it in GitHub Desktop.
Super map exploration game (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 Super map exploration game | |
author Tha Cuber | |
homepage thacuber.itch.io | |
zoomscreen 10 x 10 | |
key_repeat_interval 0.2 | |
require_player_movement | |
======== | |
OBJECTS | |
======== | |
GuyNoAxe | |
blue black brown lightbrown | |
.222. | |
.333. | |
00000 | |
.000. | |
.1.1. | |
GuyAxe | |
blue black brown lightbrown gray | |
222.4 | |
33344 | |
00002 | |
000.2 | |
1.1.. | |
Background | |
white | |
Water | |
white blue lightblue | |
21111 | |
10111 | |
11111 | |
21111 | |
11012 | |
Sand | |
yellow lightbrown | |
00000 | |
01000 | |
00010 | |
10000 | |
01100 | |
DarkGrass | |
darkgreen green | |
00001 | |
01000 | |
00010 | |
10000 | |
00010 | |
Tree | |
green brown | |
.000. | |
00000 | |
.000. | |
..1.. | |
..1.. | |
Rock | |
gray darkgray white | |
..... | |
..... | |
.001. | |
02001 | |
00001 | |
Axe | |
gray brown | |
..00. | |
.000. | |
..00. | |
..1.. | |
..1.. | |
======= | |
LEGEND | |
======= | |
P = GuyNoAxe and Sand | |
. = Water | |
S = Sand | |
G = DarkGrass | |
T = Tree and DarkGrass | |
R = Rock and Sand | |
O = Rock and DarkGrass | |
A = Axe and DarkGrass | |
Player = GuyAxe or GuyNoAxe | |
======= | |
SOUNDS | |
======= | |
Player move 55155107 | |
Rock move 34823707 | |
sfx0 71976102 | |
================ | |
COLLISIONLAYERS | |
================ | |
Background | |
Sand, DarkGrass | |
Axe | |
Tree, Rock, GuyAxe, Water, GuyNoAxe | |
====== | |
RULES | |
====== | |
[ > Player | Rock ] -> [ > Player | > Rock ] | |
[ GuyNoAxe Axe ] -> [ GuyAxe DarkGrass ] | |
[ Action GuyAxe | Tree ] -> [ GuyAxe | ] sfx0 | |
============== | |
WINCONDITIONS | |
============== | |
======= | |
LEVELS | |
======= | |
............................. | |
............................. | |
............................. | |
.........ss.................. | |
........ssss................. | |
........srsss................ | |
.......ssspsss............... | |
......sssssssrs.............. | |
.....ssggogttsss............. | |
....ssgttggttggsss........... | |
...ssggttggttggggss.......... | |
..ssgggttgggggggggss......... | |
sssgttttttgtttttgggss........ | |
sgggtttttggggtttgggsss....... | |
gggttttggggggtttgggssrs...... | |
tggttttgggggtttggggsrsss..... | |
ttggttgggogtttgggggssss...... | |
ttggggggggtttgggggsss........ | |
tttggogggtttggggsss.......... | |
ggggggggttttggggss........... | |
ggggggttttttgggsss........... | |
ggggggtttttggggss............ | |
gggggttttttggggss............ | |
gtttttttttgggggss............ | |
gggggggggggggggss............ | |
gggggggggggggggss............ | |
ggggagggggggggss............. | |
ggggggggggggggss............. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment