diff --git a/src/types/_ActivatableNonMundane.ts b/src/types/_ActivatableNonMundane.ts index 150a4c8f..501c8bef 100644 --- a/src/types/_ActivatableNonMundane.ts +++ b/src/types/_ActivatableNonMundane.ts @@ -4,6 +4,7 @@ import { DurationUnitValue } from "./_ActivatableSkillDuration.js" import { AspectIdentifier, PropertyIdentifier } from "./_Identifier.js" import { VolumePointsOptionReferenceIdentifier } from "./_IdentifierGroup.js" import { ResponsiveText, ResponsiveTextOptional } from "./_ResponsiveText.js" +import { OneTimeCostMap } from "./_ActivatableSkillCost.js" const EnchantmentCost = DB.Enum(import.meta.url, { name: "EnchantmentCost", @@ -37,6 +38,7 @@ export const ArcaneEnergyCost = DB.Enum(import.meta.url, { Disjunction: DB.EnumCase({ type: DB.IncludeIdentifier(ArcaneEnergyCostDisjunction) }), Variable: DB.EnumCase({ type: null }), ByLevel: DB.EnumCase({ type: DB.IncludeIdentifier(ArcaneEnergyCostByLevel) }), + Map: DB.EnumCase({ type: DB.IncludeIdentifier(OneTimeCostMap) }), }), })