...
Column Name | Example | Valid Values | Description |
---|---|---|---|
ID (no actual name) | Row numbers for the benefit of human readers. The game engine ignores the value in this field, instead generating sequential row numbers as the file is read. It is good practice to keep the entries in this field sequentially numbered to avoid confusion. | ||
Label | Text | The name of the race for the benefit of human readers. Unused by the game. | |
Abrev | Text | The two-letter abbreviation for this race. Not used in the game as far as we know. | |
Name | TLK entry | A StringRef for the name of this race (capitalized). | |
ConverName | TLK entry | A StringRef for the adjective form of this race (capitalized). | |
ConverNameLower | TLK entry | A StringRef for the adjective form of this race in lowercase. | |
NamePlural | TLK entry | A StringRef for the name of members of this race (capitalized, plural). | |
Description | TLK entry | A StringRef for the description of this race (shown during character creation). | |
Appearance | appearance.2da line reference | The ID of the row in appearance.2da that defines the default appearance for members of this race. (In particular, this is the appearance given to player characters of this race during character creation.) | |
StrAdjust | Integer | The racial modifier to strength for members of this race. | |
DexAdjust | Integer | The racial modifier to dexterity for members of this race. | |
IntAdjust | Integer | The racial modifier to intelligence for members of this race. | |
ChaAdjust | Integer | The racial modifier to charisma for members of this race. | |
WisAdjust | Integer | The racial modifier to wisdom for members of this race. | |
ConAdjust | Integer | The racial modifier to constitution for members of this race. | |
Endurance | Ignored. This field contains remnants of a (pre-release) definition of the movement speeds of the playable races. However, by the time the game was released, race-based speed definitions were discarded in favor of creaturespeed.2da. | ||
Favored | classes.2da line reference | The ID of the row in classes.2da that defines the favored class of this race. | |
FeatsTable | 2da resref name | The name of the .2da file (without the extension) defining the racial feats . The format of this .2da must match that of thegained from taking this race. Bioware used the naming format which you can safely ignore (but can help to keep them together). Note the feats listed here not always are functional just informational like Quick to Master. The unhardcoded columns allow some like Quick to Master to be retooled/changed now however. | |
Biography | TLK entry | A StringRef for the default biography of this race, which is the default description provided for player characters during character creation. | |
PlayerRace | 1 | 1 or 0 | 1 = playable race 0 = non-playable race Does not seem to affect the script command GetIsPlayableRacialType. |
Constant | Text | Ignored. The NWScript symbolic constant for this racial type. This is ignored by the game and is only for the reference of the human reader. | |
AGE | Integer | The default age for player characters of this race. | |
ToolsetDefaultClass | classes.2da line reference | The default class selected by the Toolset when creating a non-player character of this race. | |
CRModifier | 1 | Float value | Used for CR calculations in the toolset, which affect XP given for defeating monsters. |
NameGenTableA | dwarf elf gnome halfing halforc human | Resref of an LTR file minus the "f" or "m" | Unhardcoded random name generation file used for this race during PC character generation. From niv: "LTR files are relatively simple probability lists and letter lookup tables for various parts of the name. I can look into writing up some docs on it, but editing them comfortably will require more than a spec." These probably ommit the "f" and "m" part. So not sure if you can use "familiar" as an option here. Test and replace this line if you find you can (or can generate new ones). |
NameGenTableB | As above | As above. | Unhardcoded random name generation file used for this race during PC character generation. Half elves use this to have human and elf names available. |
ExtraFeatsAtFirstLevel | 1 | **** or Integer | If set it adds this many extra feats at first level - ie; human trait sets this to 1 |
ExtraSkillPointsPerLevel | 1 | **** or Integer | If set it adds this many extra skill points at each level up. ie; humans have this set to 1. |
FirstLevelSkillPointsMultiplier | 4 | Integer | The amount of skill points at first level are multiplied by this, for instance a 10 intelligence Human Cleric gets 4 * (2 + 1) = 12 skill points at level 1. A Half-Orc Cleric would get 4 * (2 + 0) = 8 skill points at level 1. |
AbilitiesPointBuyNumber | 30 | Integer | Amount of points available for point buys. ruleset.2da contains some overarching options to do with this as well. |
NormalFeatEveryNthLevel | 3 | Integer | The amount of levels between normal feats. EG: 3 means you get a feat at level 1, 3, 6, 12, 15. 4 would mean 1, 4, 8, 12, 16. |
NumberNormalFeatsEveryNthLevel | 1 | Integer | Amount of feats gained when NormalFeatEveryNthLevel level occurs, plus level 1. |
SkillPointModifierAbility | INT | STR, DEX, CON, WIS, INT, CHA | 3 letter code for an ability modifier used to provide additional skill points on level up. If blanked (****) it will not provide any. If the column is missing it will default to INT. |
...