All user data for FoundryVTT. Includes worlds, systems, modules, and any asset in the "foundryuserdata" directory. Does NOT include the FoundryVTT installation itself.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
1.3 KiB

1 year ago
  1. <div class="details-container-flex-row">
  2. <label>
  3. {{localize "PF2E.RuleEditor.GrantItem.AllowDuplicate"}}
  4. <input type="checkbox" name="system.rules.{{index}}.allowDuplicate" {{checked allowDuplicate}}>
  5. </label>
  6. <label>
  7. {{localize "PF2E.RuleEditor.GrantItem.ReplaceSelf"}}
  8. <input type="checkbox" name="system.rules.{{index}}.replaceSelf" {{checked rule.replaceSelf}}>
  9. </label>
  10. <label>
  11. {{localize "PF2E.RuleEditor.GrantItem.ReevaluateOnUpdate"}}
  12. <input type="checkbox" name="system.rules.{{index}}.reevaluateOnUpdate" {{checked rule.reevaluateOnUpdate}}>
  13. </label>
  14. </div>
  15. <div class="form-group">
  16. <label class="short">{{localize "PF2E.UUID.Label"}}</label>
  17. <div class="details-container-flex-row">
  18. <input type="text" name="system.rules.{{index}}.uuid" value="{{rule.uuid}}" />
  19. {{#if granted}}
  20. <a class="granted content-link" data-uuid="{{granted.uuid}}">
  21. <img src="{{granted.img}}"/>
  22. {{granted.name}}
  23. </a>
  24. {{/if}}
  25. </div>
  26. </div>
  27. <div class="form-group">
  28. <label class="short">{{localize "PF2E.RuleEditor.General.Predicate"}}</label>
  29. <input type="text" name="system.rules.{{index}}.predicate" value="{{json rule.predicate}}" />
  30. </div>