What is this??
Fury Stone is a game you build by writing code. The editor on the left is where your Javascript goes. The Viewer on the right is where your game runs.
Everything starts with a GameBuilder. Pick a map, put some enemies in it, then start the game:
let builder = new GameBuilder()
builder.set_map("skull")
builder.add_enemy("ogre", 400, 120)
builder.start_game()
Click Run underneath the editor to play what you made.
The game does not do everything on its own, and that is the point. Moving the player, attacking enemies, drinking potions: those all wait for functions you write. When something is missing, the game tells you what it needs underneath the editor.
Where to start
- Load Code gives you four templates that build on each other, from the bare Starter Template up to the Completed Game.
- Reference lists every event, function and property you can use.
- Enemies and Maps show the names you can hand to
add_enemy() and set_map().