Starting Loadout
These are the loadouts that the player may select at the start of their run during character creation.
You may define some images by creating a starting_loadouts.kdr file.
The following properties that exist:
| Key | Type | Required | Default | Explanation |
|---|---|---|---|---|
| loadout_name | String |
Yes | N/A |
The internal name of the loadout. |
| loadout_title | String |
Yes | N/A |
The name of the load out that the player will see in-game. |
| loadout_start | Number |
Yes | N/A |
Whether the loadout will start unlocked or not. |
| loadout_items | String, separated comma |
Yes | N/A |
The items the loadout will start out with. |
| loadout_items_add | String, separated comma |
No | N/A |
The items to add onto an existing loadout. |
Example
{
loadout_name: "tab_misc"
loadout_title: "Example"
loadout_start: 1
loadout_items: item:chocolate, item:bandage, item:banana, item:knife_small
}