Update spells structure + minor changes

This commit is contained in:
sladecraven 2022-11-17 13:18:32 +01:00
parent 2b00991e16
commit 0b3a82f4b7
15 changed files with 95 additions and 8 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 31 KiB

BIN
images/icons/skill1.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

BIN
images/icons/spell1.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -16,7 +16,7 @@ export class Avd12ItemSheet extends ItemSheet {
template: "systems/fvtt-avd12/templates/item-sheet.hbs",
dragDrop: [{ dragSelector: null, dropSelector: null }],
width: 620,
height: 550,
height: 'fit-content',
tabs: [{ navSelector: ".sheet-tabs", contentSelector: ".sheet-body", initial: "description" }]
});
}

View File

@ -5,7 +5,7 @@ export class Avd12RollDialog extends Dialog {
/* -------------------------------------------- */
static async create(actor, rollData) {
let options = { classes: ["Avd12Dialog"], width: 540, height: 340, 'z-index': 99999 };
let options = { classes: ["Avd12Dialog"], width: 540, height: 'fit-content', 'z-index': 99999 };
let html = await renderTemplate('systems/fvtt-avd12/templates/dialogs/roll-dialog-generic.html', rollData);
return new CrucibleRollDialog(actor, rollData, html, options);

View File

@ -152,12 +152,14 @@ export class Avd12Utility {
'systems/fvtt-avd12/templates/items/partial-item-nav.hbs',
'systems/fvtt-avd12/templates/items/partial-item-description.hbs',
'systems/fvtt-avd12/templates/items/partial-common-item-fields.hbs',
'systems/fvtt-avd12/templates/items/partial-options-damage-types.hbs',
'systems/fvtt-avd12/templates/items/partial-options-weapon-types.hbs',
'systems/fvtt-avd12/templates/items/partial-options-weapon-categories.hbs',
'systems/fvtt-avd12/templates/items/partial-options-attributes.hbs',
'systems/fvtt-avd12/templates/items/partial-options-equipment-types.hbs',
'systems/fvtt-avd12/templates/items/partial-options-spell-types.hbs',
'systems/fvtt-avd12/templates/items/partial-options-spell-levels.hbs',
'systems/fvtt-avd12/templates/items/partial-options-spell-schools.hbs',
'systems/fvtt-avd12/templates/items/partial-options-focus-bond.hbs',
'systems/fvtt-avd12/templates/items/partial-options-focus-treatment.hbs',
'systems/fvtt-avd12/templates/items/partial-options-focus-core.hbs',

View File

@ -35,7 +35,7 @@
],
"title": "AnyVenture D12 RPG",
"url": "https://www.uberwald.me/gitea/public/fvtt-avd12",
"version": "10.0.7",
"download": "https://www.uberwald.me/gitea/public/fvtt-avd12/archive/fvtt-avd12-v10.0.7.zip",
"version": "10.0.8",
"download": "https://www.uberwald.me/gitea/public/fvtt-avd12/archive/fvtt-avd12-v10.0.8.zip",
"background": "systems/fvtt-avd12/images/ui/avd12_welcome_page.webp"
}

View File

@ -404,6 +404,15 @@
},
"spell": {
"spelltype": "",
"actions": "",
"chargeeffect": "",
"school": "",
"damage": "",
"damagetype": "",
"range": 0,
"components": "",
"reaction": false,
"sustained": false,
"level":"",
"value": 0,
"description": ""

View File

@ -44,8 +44,7 @@
</li>
{{#each choice.features as |feature id|}}
<li class="flexrow item" data-level-index="{{@../../index}}" data-choice-index="{{choiceIndex}}" data-feature-id="{{feature._id}}" >
<label class="item-field-label-medium">{{feature.name}}</label>
<label class="item-field-label-long2">{{{feature.descriptionHTML}}}</label>
<label class="item-field-label-long2">{{feature.name}}</label>
<div class="item-controls item-controls-fixed">
<a class="item-control module-feature-delete" title="Delete Feature"><i class="fas fa-trash"></i></a>
</div>

View File

@ -25,7 +25,6 @@
{{> systems/fvtt-avd12/templates/items/partial-options-spell-types.hbs}}
{{/select}}
</select>
</li>
<li class="flexrow">
@ -37,6 +36,59 @@
</select>
</li>
<li class="flexrow">
<label class="item-field-label-long">Actions</label>
<input type="text" class="item-field-label-long2" name="system.actions" value="{{system.actions}}" data-dtype="String"/>
</li>
<li class="flexrow">
<label class="item-field-label-long">Charge Effect</label>
<input type="text" class="item-field-label-long2" name="system.chargeeffect" value="{{system.chargeeffect}}" data-dtype="String"/>
</li>
<li class="flexrow">
<label class="item-field-label-long">School</label>
<select class="item-field-label-long" type="text" name="system.school" value="{{system.school}}" data-dtype="String">
{{#select system.school}}
{{> systems/fvtt-avd12/templates/items/partial-options-spell-schools.hbs}}
{{/select}}
</select>
</li>
<li class="flexrow">
<label class="item-field-label-long">Damage</label>
<input type="text" class="item-field-label-short" name="system.damage" value="{{system.damage}}" data-dtype="String"/>
</li>
<li class="flexrow">
<label class="item-field-label-long">Damage Type</label>
<select class="item-field-label-long" type="text" name="system.damagetype" value="{{system.damagetype}}" data-dtype="String">
{{#select system.damagetype}}
{{> systems/fvtt-avd12/templates/items/partial-options-damage-types.hbs}}
{{/select}}
</select>
</li>
<li class="flexrow">
<label class="item-field-label-long">Range</label>
<input type="text" class="item-field-label-short" name="system.range" value="{{system.range}}" data-dtype="Number"/>
</li>
<li class="flexrow">
<label class="item-field-label-long">Components</label>
<input type="text" class="item-field-label-long2" name="system.components" value="{{system.components}}" data-dtype="String"/>
</li>
<li class="flexrow">
<label class="item-field-label-long">Reaction?</label>
<input type="checkbox" class="item-field-label-short" name="system.reaction" {{checked system.reaction}} />
</li>
<li class="flexrow">
<label class="item-field-label-long">Sustained?</label>
<input type="checkbox" class="item-field-label-short" name="system.sustained" {{checked system.sustained}} />
</li>
</ul>
</div>
</div>

View File

@ -90,7 +90,11 @@
<label class="item-field-label-long">{{upperFirst key}}</label>
<div class="flexrow">
<label class="item-field-label-short">Type</label>
<input type="text" class="item-field-label-short" name="system.damages.{{key}}.damagetype" value="{{damage.damagetype}}" data-dtype="Number"/>
<select class="item-field-label-long" type="text" name="system.damages.{{key}}.damagetype" value="{{system.damagetype}}" data-dtype="String">
{{#select system.damagetype}}
{{> systems/fvtt-avd12/templates/items/partial-options-damage-types.hbs}}
{{/select}}
</select>
</div>
<div class="flexrow">
<label class="item-field-label-short">Dice</label>

View File

@ -0,0 +1,8 @@
<option value="physical">Physical</option>
<option value="psychic">Psychic</option>
<option value="fire">Fire</option>
<option value="lightning">Lightning</option>
<option value="cold">Cold</option>
<option value="dark">Dark</option>
<option value="divine">Divine</option>
<option value="arcane">Arcane</option>

View File

@ -0,0 +1,12 @@
<option value="abjuration">Abjuration</option>
<option value="evocation">Evocation</option>
<option value="tansmutation">Transmutation</option>
<option value="divine">Divine</option>
<option value="druidic">Druidic</option>
<option value="necromancy">Necromancy</option>
<option value="auguration">Auguration</option>
<option value="illusion">Illusion</option>
<option value="draconic">Draconic</option>
<option value="cosmic">Cosmic</option>
<option value="fiend">Fiend</option>
<option value="fey">Fey</option>

View File

@ -5,3 +5,4 @@
<option value="sonic">Sonic</option>
<option value="vision">Vision</option>
<option value="touchmelee">Touch/Melee Attack</option>
<option value="utility">Utility</option>