Sync attempt
This commit is contained in:
		| @@ -190,6 +190,7 @@ BOL.itemProperties2 = { | ||||
|     "activable" : "BOL.itemProperty.activable", | ||||
|     "powder" : "BOL.itemProperty.powder", | ||||
|     "damage" : "BOL.itemProperty.damage" | ||||
|      | ||||
| } | ||||
|  | ||||
| BOL.itemStats = { | ||||
|   | ||||
| @@ -29,6 +29,7 @@ export const preloadHandlebarsTemplates = async function () { | ||||
|         "systems/bol/templates/item/parts/properties/feature/flaw-properties.hbs", | ||||
|         "systems/bol/templates/item/parts/properties/feature/origin-properties.hbs", | ||||
|         "systems/bol/templates/item/parts/properties/feature/race-properties.hbs", | ||||
|         "systems/bol/templates/item/parts/properties/feature/spell-properties.hbs", | ||||
|         // DIALOGS | ||||
|         "systems/bol/templates/roll/parts/roll-dialog-modifiers.hbs", | ||||
|         "systems/bol/templates/roll/parts/roll-dialog-attribute.hbs" | ||||
|   | ||||
| @@ -23,10 +23,10 @@ | ||||
|                     {{editor content=data.description target="data.description" button=true owner=owner editable=editable}} | ||||
|                 </div> | ||||
|                 <div class="tab properties" data-group="primary" data-tab="properties"> | ||||
|                 {{#if (equals item.type "item")}} | ||||
|                 {{#if (eq item.type "item")}} | ||||
|                     {{> "systems/bol/templates/item/parts/properties/item-properties.hbs"}} | ||||
|                 {{/if}} | ||||
|                 {{#if (equals item.type "feature")}} | ||||
|                 {{#if (eq item.type "feature")}} | ||||
|                     {{> "systems/bol/templates/item/parts/properties/feature-properties.hbs"}} | ||||
|                 {{/if}} | ||||
|                 </div> | ||||
|   | ||||
| @@ -11,12 +11,15 @@ | ||||
|     </div> | ||||
| </div> | ||||
|  | ||||
| {{#if (equals data.category "equipment")}} | ||||
| {{#if (eq data.category "equipment")}} | ||||
|     {{> "systems/bol/templates/item/parts/properties/item/equipment-properties.hbs"}} | ||||
| {{/if}} | ||||
| {{#if (equals data.category "capacity")}} | ||||
| {{#if (eq data.category "capacity")}} | ||||
|     {{> "systems/bol/templates/item/parts/properties/item/capacity-properties.hbs"}} | ||||
| {{/if}} | ||||
| {{#if (equals data.category "vehicle")}} | ||||
| {{#if (eq data.category "vehicle")}} | ||||
|     {{> "systems/bol/templates/item/parts/properties/item/vehicle-properties.hbs"}} | ||||
| {{/if}} | ||||
| {{#if (eq data.category "spell")}} | ||||
|     {{> "systems/bol/templates/item/parts/properties/item/spell-properties.hbs"}} | ||||
| {{/if}} | ||||
|   | ||||
| @@ -0,0 +1,7 @@ | ||||
| <h3 class="form-header">{{localize "BOL.ui.spellProperties"}}</h3> | ||||
| <div class="form-group"> | ||||
|     <div class="form-fields"> | ||||
|       <label class="property-label">{{localize "BOL.ui.difficulty"}}111</label> | ||||
|       <input class="field-value" type="text" name="data.properties.difficulty" value="{{data.properties.difficulty}}" data-dtype="Number"/> | ||||
|     </div> | ||||
| </div> | ||||
		Reference in New Issue
	
	Block a user