import { ModifiableData } from "../common/common-data"; import { DS4 } from "../config"; export type ItemType = keyof typeof DS4.i18n.itemTypes; export type DS4ItemData = | DS4WeaponData | DS4ArmorData | DS4ShieldData | DS4SpellData | DS4EquipmentData | DS4LootData | DS4TalentData | DS4RacialAbilityData | DS4LanguageData | DS4AlphabetData | DS4SpecialCreatureAbilityData; interface DS4ItemDataHelper extends Item.Data { type: U; } type DS4WeaponData = DS4ItemDataHelper; type DS4ArmorData = DS4ItemDataHelper; type DS4ShieldData = DS4ItemDataHelper; type DS4SpellData = DS4ItemDataHelper; type DS4EquipmentData = DS4ItemDataHelper; type DS4LootData = DS4ItemDataHelper; type DS4TalentData = DS4ItemDataHelper; type DS4RacialAbilityData = DS4ItemDataHelper; type DS4LanguageData = DS4ItemDataHelper; type DS4AlphabetData = DS4ItemDataHelper; type DS4SpecialCreatureAbilityData = DS4ItemDataHelper; export type AttackType = keyof typeof DS4["i18n"]["attackTypes"]; interface DS4WeaponDataData extends DS4ItemDataDataBase, DS4ItemDataDataPhysical, DS4ItemDataDataEquipable { attackType: AttackType; weaponBonus: number; opponentDefense: number; rollable?: boolean; } interface DS4ArmorDataData extends DS4ItemDataDataBase, DS4ItemDataDataPhysical, DS4ItemDataDataEquipable, DS4ItemDataDataProtective { armorMaterialType: "cloth" | "leather" | "chain" | "plate"; armorType: "body" | "helmet" | "vambrace" | "greaves" | "vambraceGreaves"; } interface DS4TalentDataData extends DS4ItemDataDataBase { rank: DS4TalentRank; } interface DS4TalentRank extends ModifiableData { max: number; } interface DS4SpellDataData extends DS4ItemDataDataBase, DS4ItemDataDataEquipable { spellType: "spellcasting" | "targetedSpellcasting"; bonus: string; spellCategory: | "healing" | "fire" | "ice" | "light" | "darkness" | "mindAffecting" | "electricity" | "none" | "unset"; maxDistance: UnitData; effectRadius: UnitData; duration: UnitData; cooldownDuration: UnitData; scrollPrice: number; } interface DS4ShieldDataData extends DS4ItemDataDataBase, DS4ItemDataDataPhysical, DS4ItemDataDataEquipable, DS4ItemDataDataProtective {} interface DS4EquipmentDataData extends DS4ItemDataDataBase, DS4ItemDataDataPhysical, DS4ItemDataDataEquipable {} interface DS4LootDataData extends DS4ItemDataDataBase, DS4ItemDataDataPhysical {} type DS4RacialAbilityDataData = DS4ItemDataDataBase; type DS4LanguageDataData = DS4ItemDataDataBase; type DS4AlphabetDataData = DS4ItemDataDataBase; interface DS4SpecialCreatureAbilityDataData extends DS4ItemDataDataBase { experiencePoints: number; } // templates interface DS4ItemDataDataBase { description: string; } interface DS4ItemDataDataPhysical { quantity: number; price: number; availability: "hamlet" | "village" | "city" | "elves" | "dwarves" | "nowhere" | "unset"; storageLocation: string; } export function isDS4ItemDataTypePhysical(input: DS4ItemData["data"]): boolean { return "quantity" in input && "price" in input && "availability" in input && "storageLocation" in input; } interface DS4ItemDataDataEquipable { equipped: boolean; } interface DS4ItemDataDataProtective { armorValue: number; } interface UnitData { value: string; unit: UnitType; } type TemporalUnit = "rounds" | "minutes" | "hours" | "days" | "custom"; type DistanceUnit = "meter" | "kilometer" | "custom";