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.

83 lines
5.7 KiB

1 year ago
  1. <form>
  2. <p>{{{localize "pathmuncher.Dialogs.PathmuncherImporter.StepOne"}}}</p>
  3. <p>{{{localize "pathmuncher.Dialogs.PathmuncherImporter.StepTwo"}}}</p>
  4. <div>
  5. <hr/>
  6. <input type="checkbox" id="checkBoxName" name="checkBoxName" {{#if flags.addName}}checked{{else}}{{/if}}>
  7. <label for="checkBoxName"> {{localize "pathmuncher.Dialogs.PathmuncherImporter.Ask.Name"}}</label><br>
  8. <input type="checkbox" id="checkBoxClass" name="checkBoxClass" {{#if flags.addClass}}checked{{else}}{{/if}}>
  9. <label for="checkBoxClass"> {{localize "pathmuncher.Dialogs.PathmuncherImporter.Ask.Class"}}</label><br>
  10. <input type="checkbox" id="checkBoxAncestry" name="checkBoxAncestry" {{#if flags.addAncestry}}checked{{else}}{{/if}}>
  11. <label for="checkBoxAncestry"> {{localize "pathmuncher.Dialogs.PathmuncherImporter.Ask.Ancestry"}}</label><br>
  12. <input type="checkbox" id="checkBoxHeritage" name="checkBoxHeritage" {{#if flags.addHeritage}}checked{{else}}{{/if}}>
  13. <label for="checkBoxHeritage"> {{localize "pathmuncher.Dialogs.PathmuncherImporter.Ask.Heritage"}}</label><br>
  14. <input type="checkbox" id="checkBoxBackground" name="checkBoxBackground" {{#if flags.addBackground}}checked{{else}}{{/if}}>
  15. <label for="checkBoxBackground"> {{localize "pathmuncher.Dialogs.PathmuncherImporter.Ask.Background"}}</label><br>
  16. <input type="checkbox" id="checkBoxFeats" name="checkBoxFeats" {{#if flags.addFeats}}checked{{else}}{{/if}}>
  17. <label for="checkBoxFeats"> {{localize "pathmuncher.Dialogs.PathmuncherImporter.Ask.Feats"}}</label><br>
  18. <input type="checkbox" id="checkBoxEquipment" name="checkBoxEquipment" {{#if flags.addEquipment}}checked{{else}}{{/if}}>
  19. <label for="checkBoxEquipment"> {{localize "pathmuncher.Dialogs.PathmuncherImporter.Ask.Equipment"}}</label><br>
  20. <input type="checkbox" id="checkBoxWeapons" name="checkBoxWeapons" {{#if flags.addWeapons}}checked{{else}}{{/if}}>
  21. <label for="checkBoxWeapons"> {{localize "pathmuncher.Dialogs.PathmuncherImporter.Ask.Weapons"}}</label><br>
  22. <input type="checkbox" id="checkBoxArmor" name="checkBoxArmor" {{#if flags.addArmor}}checked{{else}}{{/if}}>
  23. <label for="checkBoxArmor"> {{localize "pathmuncher.Dialogs.PathmuncherImporter.Ask.Armor"}}</label><br>
  24. <input type="checkbox" id="checkBoxMoney" name="checkBoxMoney" {{#if flags.addMoney}}checked{{else}}{{/if}}>
  25. <label for="checkBoxMoney"> {{localize "pathmuncher.Dialogs.PathmuncherImporter.Ask.Money"}}</label><br>
  26. <input type="checkbox" id="checkBoxTreasure" name="checkBoxTreasure" {{#if flags.addTreasure}}checked{{else}}{{/if}}>
  27. <label for="checkBoxTreasure"> {{localize "pathmuncher.Dialogs.PathmuncherImporter.Ask.Treasure"}}</label><br>
  28. <input type="checkbox" id="checkBoxSpells" name="checkBoxSpells" {{#if flags.addSpells}}checked{{else}}{{/if}}>
  29. <label for="checkBoxSpells"> {{localize "pathmuncher.Dialogs.PathmuncherImporter.Ask.Spells"}}</label><br>
  30. <input type="checkbox" id="checkBoxLores" name="checkBoxLores" {{#if flags.addLores}}checked{{else}}{{/if}}>
  31. <label for="checkBoxLores"> {{localize "pathmuncher.Dialogs.PathmuncherImporter.Ask.Lores"}}</label><br>
  32. <input type="checkbox" id="checkBoxDeity" name="checkBoxDeity" {{#if flags.addDeity}}checked{{else}}{{/if}}>
  33. <label for="checkBoxDeity"> {{localize "pathmuncher.Dialogs.PathmuncherImporter.Ask.Deity"}}</label><br>
  34. <input type="checkbox" id="checkBoxFormulas" name="checkBoxFormulas" {{#if flags.addFormulas}}checked{{else}}{{/if}}>
  35. <label for="checkBoxFormulas"> {{localize "pathmuncher.Dialogs.PathmuncherImporter.Ask.Formulas"}}</label><br>
  36. <input type="checkbox" id="checkBoxFamiliars" name="checkBoxFamiliars" {{#if flags.addFamiliars}}checked{{else}}{{/if}}>
  37. <label for="checkBoxFamiliars"> {{localize "pathmuncher.Dialogs.PathmuncherImporter.Ask.Familiars"}}</label><br>
  38. <hr/>
  39. <input type="checkbox" id="checkBoxAskForChoices" name="checkBoxAskForChoices" {{#if flags.askForChoices}}checked{{else}}{{/if}}>
  40. <label for="checkBoxAskForChoices"> {{localize "pathmuncher.Dialogs.PathmuncherImporter.Ask.Choices"}}</label><br>
  41. <hr/>
  42. <nav class="sheet-tabs tabs">
  43. <a class="item active" data-tab="number"><i class="fas fa-hashtag"></i> Use ID</a>
  44. <a class="item" data-tab="json"><i class="fas fa-code"></i> Paste JSON</a>
  45. </nav>
  46. <section class="tab" data-tab="number">
  47. <div id="divCode">
  48. {{localize "pathmuncher.Dialogs.PathmuncherImporter.PathBuilderId"}}<br>
  49. <div id="divOuter">
  50. <div id="divInner">
  51. <input id="textBoxBuildID" name="textBoxBuildID" type="number" maxlength="6" value="{{ id }}"/>
  52. </div>
  53. </div>
  54. </div>
  55. </section>
  56. <section class="tab" data-tab="json">
  57. <div id="divJson">
  58. {{localize "pathmuncher.Dialogs.PathmuncherImporter.PathBuilderJSON"}}<br>
  59. <div id="divOuter">
  60. <div id="divInner">
  61. <textarea rows="2" id="textBoxBuildJSON" name="textBoxBuildJSON"></textarea>
  62. </div>
  63. </div>
  64. </div>
  65. </section>
  66. <hr>
  67. <div class="import-progress import-hidden">
  68. <div class="pathmuncher import-progress-bar" style="width: 0%"></div>
  69. </div>
  70. <hr>
  71. <div>
  72. <button class="pathmuncher-button" type="submit" data-button="pathmuncher">
  73. <i class="fas fa-check"></i>
  74. {{localize "pathmuncher.Dialogs.PathmuncherImporter.Button"}}
  75. </button>
  76. </div>
  77. </div>
  78. <div class="pathmuncher-overlay import-invalid">
  79. <div class="pathmuncher-working import-hidden"><i class="fas fa-cog"></i>
  80. <div style="font-size: 15px; text-align: center;">{{localize "pathmuncher.Dialogs.PathmuncherImporter.Munching"}}</div>
  81. </div>
  82. </div>
  83. </form>