Automatically calculate spell price

This commit is contained in:
Johannes Loher 2021-05-13 19:59:44 +02:00
parent 2bf3caac99
commit b9f7588f95
16 changed files with 273 additions and 58 deletions

View file

@ -111,6 +111,6 @@ export interface DS4CreatureDataDataBaseInfo {
description: string;
}
type CreatureType = "animal" | "construct" | "humanoid" | "magicalEntity" | "plantBeing" | "undead";
type CreatureType = keyof typeof DS4.i18n.creatureTypes;
type SizeCategory = "tiny" | "small" | "normal" | "large" | "huge" | "colossal";
type SizeCategory = keyof typeof DS4.i18n.creatureSizeCategories;