Skip to the content.

Challenges

Challenges can have fully customizable win conditions. Useful functions for dealing with Challenges and implementing their effects:

Challenges are stored in the following format:

challenges: {
    11: {
        name: "Ouch",
        challengeDescription: "description of ouchie",
        canComplete: function() {return player.points.gte(100)},
        etc
    },
    etc
}

Usually, each challenge should have an id where the first digit is the row and the second digit is the column.

Individual Challenges can have these features:

The old goal system uses these features: