1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
# DCSS Background Definitions
DCSS uses YAML files to define backgrounds (known as jobs in the code); these
files can be found in [source/dat/jobs](../../source/dat/jobs).
To create a new background, you put an appropriate YAML file in there, manually
add the background enum name to
[`util/job-gen/job-type-header.txt`](../../source/util/jobs/job-type-header.txt)
and compile DCSS. For any custom background behaviour which the YAML file can't
express (starting gods, for example), you'll also need custom C++ code added
elsewhere.
## Species Definition Format
You can view existing files to get a sense of the format; it's quite
straightforward.
### Supported Keys
| key | type | required | description |
| ---- | ---- | -------- | ----------- |
| enum | `string` | **Yes** | Set the job enum. Must match the pattern `JOB_[A-Z]+`. |
| name | `string` | **Yes** | Background name, like 'Hexslinger' or 'Fire Elementalist'. Required. Must be unique. |
| short_name | `string` | No | Two letter background code. Must be unique. Defaults to the first two letters of the name. |
| category | `string` | **Yes** | Which column the background is located in on the new game background select screen. Can be `Warrior`, `Adventurer`, `Zealot`, `Warrior-mage`, `Mage`, or `false` (will not be shown on background select screen). To add a new category, see [source/util/job-gen.py](../../source/util/job-gen.py). |
| category_priority | `int` | No | The priority of the background within its category in the new game background select screen. Higher priorities are displayed first. Defaults to 0. |
| str | `int` | **Yes** | Starting strength. Note: these starting stats are added to the player's species' base stats. Currently, all backgrounds' stats (str, int, dex) sum to 12 (except Wanderer), although this is not mandatory. |
| int | `int` | **Yes** | Starting intelligence. |
| dex | `int` | **Yes** | Starting dexterity. |
| spells | `array of strings` | No | The spells that start in the player's library. Certain level 1 spells (Magic Dart, Summon Small Mammal, Necrotise, Foxfire, Freeze, Shock, Sandblast, Sting, and Kiss of Death) are hard-coded to start memorised. Djinn start with all spells memorised, as they cannot choose to memorise spells. Spells must match the pattern `SPELL_[A-Z_]+`.
| equipment | `array of strings` | No | The starting equipment the player gets. Does not include starting weapons that the player gets to choose. Items in this list are formatted in the same way as for vaults, that is, according to the following structure: `"<full, singular name> plus:<item enchantment> ego:<brand/ego> q:<quantity>"`, where only the name is a required field. Add `no_exclude` to the end of the string for items that are part of a set.
| weapon_choice | `string` | No | The choice of weapons the background gets before starting the game. Can be: <ul><li>`plain`: falchion, hand axe, mace, etc.</li><li>`good`: long sword, war axe, flail, etc.</li><li>`none` (no choice of weapon) [default]</li></ul> |
| recommended_species | `array of strings` | **Sometimes** | Species the background is recommended for. Species are written in plaintext. For backgrounds with `category` set to `false`, this parameter is irrelevant and therefore optional; otherwise it is required. |
| skills | `map` | No | Each skill must be a valid skill, written in plaintext, for example `fighting` for fighting skill, or be `weapon`, which is used to allocate weapon skill where the player has a choice of weapon. These skills are followed by the skill level, a positive `int`, which is modified by the species aptitude before the game starts.
### Advanced Keys
You probably don't need or want to use these.
| key | type | required | description |
| ---- | ---- | -------- | ----------- |
| TAG_MAJOR_VERSION | `int` | No | Wrap the background in `#if TAG_MAJOR_VERSION == 34` and set the category field to `false` to deprecate it. |
| create_enum | `boolean` | No | Set `false` if the background already has an enum in job-type.h. Defaults to `true`. Note though that generation without `create_enum = false` and a corresponding entry in [source/util/job-gen/job-type-header.txt](../../source/util/job-gen/job-type-header.txt) is not currently supported; see that file for more information. |
|