add doc strings to new config objects

This commit is contained in:
Johannes Loher 2021-01-09 22:54:44 +01:00
parent 6820ce7c00
commit b01e0417ee

View file

@ -189,6 +189,9 @@ export const DS4 = {
specialCharacteristics: "String",
},
/**
* Define the different creature types a creature can be
*/
creatureTypes: {
animal: "DS4.CreatureTypeAnimal",
construct: "DS4.CreatureTypeConstruct",
@ -198,6 +201,9 @@ export const DS4 = {
undead: "DS4.CreatureTypeUndead",
},
/**
* Define the different size categories a creatures fall into
*/
creatureSizeCategories: {
tiny: "DS4.CreatureSizeCategoryTiny",
small: "DS4.CreatureSizeCategorySmall",
@ -207,6 +213,9 @@ export const DS4 = {
colossal: "DS4.CreatureSizeCategoryColossal",
},
/**
* Define the base info of a creature
*/
creatureBaseInfo: {
loot: "DS4.CreatureBaseInfoLoot",
foeFactor: "DS4.CreatureBaseInfoFoeFactor",