Files
roll20-character-sheets/Mythras/src/Mythras.html
T
Matthew Carpenter 5afa988338 Mythras v2.7 (#5502)
* Spanish translation and minor fixes

* Rounding movement measurements

* Adding linguistics option to campaign settings

* Removing NPC stuff from the json options

* Saving Mythras v2 progress

* Modify mythras sheet.json for new options

* stash

* Restored tranlastions and all but mook css

* Automation script added to help building Mythras sheets

* Autocalc migration up to skills, Mythras

* sheetwork autocalc for standard skills

* Auto calc up to passions

* Fix tenacity

* Finish migrating skills to shett workers

* Finished skills auto calc

* Half done with compat tab

* Stash work up to mostly finish mook skills

* Fixed percent symbol on Athletics mook btn

* Added up to psionic powers for mooks and added collapse to magic sections

* Stash mook sup to animism

* more stashed edits

* Stash commits

* v2 Mythras

* A few edits to Mythras changelog, typos and spelling

* Style adjustments for Firefox

* Small bugfixes for the Mythras v2 conversion scripts

* Small bugfixes for the Mythras v2 conversion scripts

* Some minor CSS adjustments to support Firefox better

* Mythras: fix styling issues with fetish tenacity

* v2.1 of Mythras sheet and reduce M-Space to a stub with notes to use the Mythras sheet

* Remove line from Mythras change log which wasn't meant for publishing

* v2.2 of Mythras sheet

* Added missing Worlds United setting from Default Sheet Settings

* v2.3 of Mythras Sheet

* Add missing v2.3 version update

* Mythras v2.4 and Odd Soot stub

* Update Odd Soot Logo

* Removing Odd Soot sheet per clevett's recommendation

* Restore M-Space to previous versions per clevett's recommendation

* Added deprecation notice to top of M-Space sheet

* Mythras v2.5

* Added equipment and money to compact/mook sheets

* Added Social Conflict Support

* Update changelop for v2.6

* Update de.json

* Mythras - switching over to gradle based build with automated uploading of srcs to roll20

* Mythras v2.7

* Updated Mythras Changlog
2019-09-30 14:01:10 -05:00

95 lines
3.2 KiB
HTML

<!-- Sheet -->
<input type="text" class="hidden disabled number-width text-align-center" name="attr_version" value="1.9.1">
<!-- Sheet Style Configs -->
<input type="radio" class="classic-fantasy-style-toggle hidden" name="attr_sheet_style" value="classic_fantasy">
<input type="radio" class="default-style-toggle hidden" name="attr_sheet_style" value="default" checked>
<input type="radio" class="luther-arkwright-style-toggle hidden" name="attr_sheet_style" value="luther_arkwright">
<input type="radio" class="m-space-style-toggle hidden" name="attr_sheet_style" value="m-space">
<input type="radio" class="odd-soot-style-toggle hidden" name="attr_sheet_style" value="odd_soot">
<input type="radio" class="thennla-style-toggle hidden" name="attr_sheet_style" value="thennla">
<div class="wrapper">
<!-- Header -->
${new File("src/sheet/generic/logo.html").getText()}
<div>
<h3 style="display: inline"><span data-i18n="settings-u">Settings</span></h3>
<span style="font-size: 85%">(<span data-i18n="version-u">Version</span> <span name="attr_version"></span>)</span>
</div>
${new File("src/sheet/generic/hidden_configuration.html").getText()}
${new File("src/sheet/generic/options.html").getText()}
${new File("src/sheet/generic/recalc_button.html").getText()}
<!-- Campaign Settings -->
${new File("src/sheet/generic/campaign_settings.html").getText()}
<hr>
<!-- Sheet Types -->
<!-- Battle Unit Sheet-->
${new File("src/sheet/types/battle_unit.html").getText()}
<!-- Character Sheet -->
<div class="type-pc">
<!-- Tabs -->
${new File("src/sheet/types/character/tabs.html").getText()}
<div class="spacer"></div>
<!-- Detailed Tabs -->
${new File("src/sheet/types/character/detailed.html").getText()}
<!-- Mook and Compact Tabs -->
${new File("src/sheet/types/character/compact.html").getText()}
</div>
<!-- Ship Sheet-->
${new File("src/sheet/types/ship.html").getText()}
<!-- Solar System Sheet-->
${new File("src/sheet/types/solar_system.html").getText()}
<!-- Vehicles Sheet-->
${new File("src/sheet/types/vehicle/mythras.html").getText()}
${new File("src/sheet/types/vehicle/m-space.html").getText()}
<hr>
<!-- Footer -->
${new File("src/sheet/generic/footer.html").getText()}
</div>
<!-- Sheet Workers -->
<script type="text/worker">
${new File("src/scripts/utility.js").getText()}
${new File("src/scripts/autocalc.js").getText()}
${new File("src/scripts/import.js").getText()}
${new File("src/scripts/recalc.js").getText()}
${new File("src/scripts/settings.js").getText()}
${new File("src/scripts/versioning.js").getText()}
</script>
<!-- Roll Templates -->
${new File("src/roll_templates/default.html").getText()}
${new File("src/roll_templates/effect.html").getText()}
${new File("src/roll_templates/hit_location.html").getText()}
${new File("src/roll_templates/magic.html").getText()}
${new File("src/roll_templates/resolution_pool.html").getText()}
${new File("src/roll_templates/skill.html").getText()}
${new File("src/roll_templates/system.html").getText()}
${new File("src/roll_templates/weapon.html").getText()}