ExperienceTable
An experience table allows you to define a character's progression in a granular fashion. You will be defining the required amount of experience (cumulative) to reach a certain level for that character.
JSON Format
{
"type": "ExperienceTable",
"id": ...,
"name": ...,
"plural": ...,
"abbreviation": ...,
"experience_to_level_table": ...
}
Fields
| Field | Type | Required | Description |
|---|---|---|---|
id | String | ✓ | The id for this type instance. This should be unique. |
name | String | ✓ | The name for this type instance. |
plural | String | Optional. The plural form of the name for this type instance (e.g: "Items" if the name is "Item"). | |
abbreviation | String | Optional. Abbreviation of the name for this type instance (e.g: "STR" for Strength). | |
experience_to_level_table | List<ExperienceTableEntry> | ✓ | A list of entries that represent the different amounts of experience (cumulative) that is required to reach a certain level in this experience track. |