itch.io is community of indie game creators and players

Devlogs

Starting the editor

Secret of the Basilisk (prototype)
A browser game made in HTML5

It's starting to be a bit tedious to look at the content of the game since all the data is stored in config files.

Reading a bunch of javascript arrays with reference id and links is starting to be complicated.

var workConfig = [
    {
        id: 1,
        name: "Gather Food",
        requirements: [],
        rewards: [{
            type: "resource",
            subType: "amount",
            amountNeeded: 1,
            refId: 1 // Food
        }]
    },

I'll be focusing a bit of my time on building an editor. I'll start by just doing read only pages and when that'll be done, I'll add the ability to add and update the data.

Leave a comment