Fury Stone

Game Builder

Snapshots

Templates

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