This repository has been archived by the owner on Aug 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Race Variants
Lukas Obermann edited this page Mar 1, 2019
·
3 revisions
RACES
-
Type:
number
-
Description: An increasing integer. The respective string ID will have the
RV_
prefix.
-
Type:
string
- Description: The name of the race variant.
-
Type:
Array<cultureId: number, &>?
- Description: The list of common cultures. If common cultures are defined by the race, leave this field empty.
-
Type:
Array<advantageId: number, &>?
- Description: A list of common advantages. If common advantages are defined by the race, leave this field empty.
-
Type:
string?
- Description: The respective common advantages text from the source book. If common advantages are defined by the race, leave this field empty.
-
Type:
Array<disadvantageId: number, &>?
- Description: A list of common disadvantages. If common disadvantages are defined by the race, leave this field empty.
-
Type:
string?
- Description: The respective common disadvantages text from the source book. If common disadvantages are defined by the race, leave this field empty.
-
Type:
Array<advantageId: number, &>?
- Description: A list of uncommon advantages. If uncommon advantages are defined by the race, leave this field empty.
-
Type:
string?
- Description: The respective uncommon advantages text from the source book. If uncommon advantages are defined by the race, leave this field empty.
-
Type:
Array<disadvantageId: number, &>?
- Description: A list of uncommon disadvantages. If uncommon disadvantages are defined by the race, leave this field empty.
-
Type:
string?
- Description: The respective uncommon disadvantages text from the source book. If uncommon disadvantages are defined by the race, leave this field empty.
-
Type:
Array<hairColorId: number, &, 20>?
- Description: An array containing 20 (numeric) hair color SIDs. The array also represents the 20-sided die for a random hair color. You can find all the available hair colors in the l10n JSON files. They are represented as an array; to get the ID you have to get the (1-based) index of the hair color in the array. If hair colors are defined by the race, leave this field empty.
-
Type:
Array<eyeColorId: number, &, 20>?
- Description: An array containing 20 (numeric) eye color SIDs. The array also represents the 20-sided die for a random eye color. You can find all the available eye colors in the l10n JSON files. They are represented as an array; to get the ID you have to get the (1-based) index of the eye color in the array. If eye colors are defined by the race, leave this field empty.
-
Type:
number?
- Description: The base value used for random size. If size is defined by the race, leave this field empty.
-
Type:
Array<dice: [amount: number, sides: number]<D>, &>?
-
Description: The dice used for random size. Examples:
2D6
or1D6&1D20
. If size is defined by the race, leave this field empty.