Skip to content

Instantly share code, notes, and snippets.

@GameDesignGroup11-dev
Created October 31, 2025 14:05
Show Gist options
  • Save GameDesignGroup11-dev/f951f94c85816e54ab4cab8cd9f00633 to your computer and use it in GitHub Desktop.
Save GameDesignGroup11-dev/f951f94c85816e54ab4cab8cd9f00633 to your computer and use it in GitHub Desktop.
Buran (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
title Buran
author none
homepage www.puzzlescript.net
background_color
Text_color
realtime_interval
=======
========
OBJECTS
========
Background
black
Player
Black Orange White Blue
.000.
.111.
22222
.333.
.3.3.
Sattelite
white
DeliveryObject
yellow
00000
0...0
0...0
0...0
00000
DeliveryPoint
purple
Meteor
brown
Wall
black
=======
LEGEND
=======
# = Wall
. = Background
P = Player
* = DeliveryObject
O = DeliveryPoint
R = Meteor
S = Sattelite
=======
SOUNDS
=======
================
COLLISIONLAYERS
================
Background
Wall
Meteor, Sattelite, DeliveryPoint
Player, DeliveryObject
======
RULES
======
[ Player | DeliveryObject ] -> [ Player | < DeliveryObject ]
[ DeliveryObject | Player ] -> [ > DeliveryObject | Player ]
[ stationary Sattelite ] -> [ randomDir Sattelite ]
[ DeliveryObject | DeliveryPoint ] -> WIN
[ Player | Sattelite ] -> restart
[ Sattelite | Player ] -> restart
==============
WINCONDITIONS
==============
=======
LEVELS
=======
.##############.
#.R.......S....#
#..............#
#...........O..#
#..............#
#p..*........R.#
#......S.......#
.##############.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment