This is a fan recreation of the Bella Sara Spectacular Jumping Game intended for archival purposes since the original is no longer available.
This recreation is intended to eventually include at least the first and second levels of the game.
To start, you will first need to download the code from this repository. This can be done using git or by downloading the .zip folder directly in the browser.
Since JavaScript has been used here in place of Flash, Flash is not required to play this recreation. However, since modern browsers place a few limitations on files opened directly in the browser, this game does need to be running from a server to work.
The following are a few ways to set up a server locally (on your own computer):
-
If you have VSCode installed, install the Live Server extension in VSCode, open this project in VSCode and then press 'Go Live' in the bottom right to open the game in the browser.
-
If you have python installed (it should be preinstalled on Macs), navigate to the project folder and run
python -m SimpleHTTPServer 8080
(orpython -m http.server 8080
for python version 3). -
Some other options are also listed here.
After starting a server locally, you can usually access it from http://localhost:8080/.
All the original textures, animations, sounds and the gameplay itself were from the Spectacular Jumping Game on Bella Sara and belong to the Bella Sara Company, LLC.
- Numerous screen recordings and screenshots of the game have been taken from the following and have been used / referenced whilst remaking the game:
- The wiki page describes the basic gameplay
- This stream contains screen recorded gameplay of the first two levels
- This video contains screen recorded gameplay of the first level and has a clear view of the entire screen
- The game music was taken from this video
- PachirisuLover1994 has videos of gameplay from all four levels, though the screen quality is very poor
- Other tools used:
- The Phaser game framework has been used to keep most of the coding pretty simple.
- The Leshy Sprite Sheet Tool and Codeshack Sprite Sheet Generator have been used to generate the texture atlas files and sprite sheets.