From b01e0417ee96820aa83d16b437c79fb611291a91 Mon Sep 17 00:00:00 2001 From: Johannes Loher Date: Sat, 9 Jan 2021 22:54:44 +0100 Subject: [PATCH] add doc strings to new config objects --- src/module/config.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/module/config.ts b/src/module/config.ts index 86f82d6e..3e8102d0 100644 --- a/src/module/config.ts +++ b/src/module/config.ts @@ -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",