Add rituals and tomes and creatures
All checks were successful
Release Creation / build (release) Successful in 48s

This commit is contained in:
2025-02-07 18:06:08 +01:00
parent 2ac0f53c4f
commit b3eb908f05
23 changed files with 1855 additions and 28 deletions

View File

@ -12,6 +12,9 @@ export default class LethalFantasySkill extends foundry.abstract.TypeDataModel {
schema.settings = new fields.StringField({ required: true, initial: setting, choices: SYSTEM.AVAILABLE_SETTINGS })
schema.weaponType = new fields.StringField({ required: true, initial: "melee", choices: SYSTEM.WEAPON_TYPE })
schema.hasDirectSkill = new fields.BooleanField({ required: true, initial: false })
schema.directSkillValue = new fields.NumberField({ required: true, initial: 0, min: 0, max:99 })
schema.damage = new fields.StringField({required: true, initial: "1d6"})
schema.baseRange = new fields.StringField({required: true, initial: ""})
schema.rangeUnit = new fields.StringField({ required: true, initial: "yard", choices: SYSTEM.WEAPON_RANGE_UNIT })