diff --git a/MythicD6/mythicd6.css b/MythicD6/mythicd6.css index 0a83812d81..ee0d7a4097 100644 --- a/MythicD6/mythicd6.css +++ b/MythicD6/mythicd6.css @@ -1,4 +1,3 @@ -@charset "UTF-8"; /** * CONTENTS * @@ -200,6 +199,9 @@ align-items: center; justify-content: center; } +.charsheet .gap { + gap: 10px; +} .charsheet .section { padding: 5px; min-height: 90%; @@ -560,16 +562,16 @@ .charsheet div.rules { grid-area: rules; } -.charsheet div.pg2 textarea { +.charsheet main.pg2 textarea { height: 140px; } -.charsheet div.pg3 input[type=number] { +.charsheet main.pg3 input[type=number] { height: 24px; } -.charsheet div.pg3 span.dice { +.charsheet main.pg3 span.dice { margin-top: 5px; } -.charsheet div.pg1 { +.charsheet main.pg1 { display: grid; grid-gap: 4px; grid-template-columns: 13fr 5fr 4fr; @@ -579,22 +581,22 @@ height: 1300px; position: relative; } -.charsheet div.pg2 { +.charsheet main.pg2 { display: grid; width: 750px; position: relative; } -.charsheet div.pg3 { +.charsheet main.pg3 { display: grid; width: 750px; position: relative; } -.charsheet div.tab-content { +.charsheet main.tab-content { display: none; } -.charsheet input.tab1:checked ~ div.tab1, -.charsheet input.tab2:checked ~ div.tab2, -.charsheet input.tab3:checked ~ div.tab3 { +.charsheet input.tab1:checked ~ main.tab1, +.charsheet input.tab2:checked ~ main.tab2, +.charsheet input.tab3:checked ~ main.tab3 { display: grid; } .charsheet input.tab { @@ -682,7 +684,7 @@ /*new die changes die roller to d6*/ content: ""; } - .charsheet div.pg1 { + .charsheet main.pg1 { display: grid; grid-gap: 4px; grid-template-columns: 13fr 9fr; diff --git a/MythicD6/mythicd6.html b/MythicD6/mythicd6.html index c242cc4a9e..621d55cac3 100644 --- a/MythicD6/mythicd6.html +++ b/MythicD6/mythicd6.html @@ -6,7 +6,7 @@ -
+
@@ -86,7 +86,7 @@
- +
D+ @@ -95,7 +95,7 @@
- +
D+ @@ -104,7 +104,7 @@
- +
D+ @@ -113,7 +113,7 @@
- +
D+ @@ -122,7 +122,7 @@
- +
D+ @@ -131,7 +131,7 @@
- +
D+ @@ -149,14 +149,14 @@
- +
- + @@ -197,7 +197,7 @@
- + @@ -238,7 +238,7 @@
- + @@ -279,7 +279,7 @@
- + @@ -319,7 +319,7 @@
- + @@ -360,7 +360,7 @@
- + @@ -401,7 +401,7 @@
- + @@ -441,7 +441,7 @@
- + @@ -482,7 +482,7 @@
- + @@ -524,7 +524,7 @@ - + - + - + @@ -645,7 +645,7 @@
- + @@ -653,7 +653,7 @@
- + @@ -661,7 +661,7 @@
- + @@ -719,7 +719,7 @@ - + @@ -736,7 +736,7 @@ - + @@ -753,7 +753,7 @@ - +
@@ -798,12 +798,12 @@
-
+
-
- +
-
@@ -823,13 +823,13 @@
-
+ -
- +
-
Pregen Character Template(changing will overwrite your stats): @@ -853,6 +853,11 @@
+
+ Whisper rolls to GM? + +
+
Skill Roll color
-
+ diff --git a/MythicD6/sheet.json b/MythicD6/sheet.json index 4663bdf1b2..0ce5d02aef 100644 --- a/MythicD6/sheet.json +++ b/MythicD6/sheet.json @@ -4,6 +4,6 @@ "authors": "Andreas J.", "roll20userid": "1223200", "preview": "MythicD6-preview.png", - "instructions": "This is the Official character sheet for **MYTHIC D6**, by Khepera Publishing.\n\n* [MYTHIC D6 Revised & Expanded](https://www.drivethrurpg.com/product/243769/MYTHIC-D6-Revised--Expanded) rulebook on DriveThruRPG\n* [MYTHIC D6 Quickstart](https://kheperapublishing.files.wordpress.com/2018/06/mythicd6_khp034-quickstart.pdf)", + "instructions": "This is the Official character sheet for **MYTHIC D6**, by Khepera Publishing. See [Roll20 Wiki](https://wiki.roll20.net/MythicD6) for further sheet instructions.\n\n* [MYTHIC D6 Revised & Expanded](https://www.drivethrurpg.com/product/243769/MYTHIC-D6-Revised--Expanded) rulebook on DriveThruRPG\n* [MYTHIC D6 Quickstart](https://kheperapublishing.files.wordpress.com/2018/06/mythicd6_khp034-quickstart.pdf)", "legacy": false } diff --git a/MythicD6/src/_core.scss b/MythicD6/src/_core.scss index d4ddf8be5d..1aee40d284 100644 --- a/MythicD6/src/_core.scss +++ b/MythicD6/src/_core.scss @@ -218,6 +218,10 @@ justify-content: center; } + .gap{ + gap: 10px; + } + .section { padding: 5px; min-height: 90%; @@ -659,17 +663,17 @@ /* -------------------------- Page 2 ----------------------- */ - div.pg2 textarea{ + main.pg2 textarea{ height: 140px; } /* -------------------------- Page 3 ----------------------- */ - div.pg3 input[type="number"]{ + main.pg3 input[type="number"]{ height: 24px; } - div.pg3 span.dice{ + main.pg3 span.dice{ margin-top: 5px; } @@ -682,7 +686,7 @@ /* Defines core layout of each page */ - div.pg1 { + main.pg1 { display: grid; grid-gap: 4px; grid-template-columns: 13fr 5fr 4fr; @@ -700,7 +704,7 @@ position: relative; } - div.pg2 { + main.pg2 { display: grid; width: 750px; position: relative; @@ -708,21 +712,21 @@ - div.pg3 { + main.pg3 { display: grid; width: 750px; position: relative; } - div.tab-content { display: none; } + main.tab-content { display: none; } /* styling/position tab button */ - input.tab1:checked ~ div.tab1, - input.tab2:checked ~ div.tab2, - input.tab3:checked ~ div.tab3 + input.tab1:checked ~ main.tab1, + input.tab2:checked ~ main.tab2, + input.tab3:checked ~ main.tab3 { display: grid; } @@ -848,7 +852,7 @@ content: ''; } - div.pg1 { + main.pg1 { display: grid; grid-gap: 4px; grid-template-columns: 13fr 9fr; @@ -894,24 +898,26 @@ } } - div.skills div.rowflex{ - flex-direction: column; + div.skills { + + div.rowflex{ + flex-direction: column; + } + + div.skillgrid{ + display: grid; + padding: 5px; + grid-template-rows: repeat(21, 1fr); + grid-template-columns: 3fr 2fr; + width: 400px; + height: 800px; + } + + + button[type="roll"].red{ + width: 170px; + } } - - div.skills div.skillgrid{ - display: grid; - padding: 5px; - grid-template-rows: repeat(21, 1fr); - grid-template-columns: 3fr 2fr; - width: 400px; - height: 800px; - } - - - div.skills button[type="roll"].red{ - width: 170px; - } - button[type="roll"].skills{ font-size: 14px; padding: 0px; diff --git a/MythicD6/src/core.html b/MythicD6/src/core.html index 29b7082b78..00f824e654 100644 --- a/MythicD6/src/core.html +++ b/MythicD6/src/core.html @@ -6,7 +6,7 @@ -
+
@@ -86,7 +86,7 @@
- +
D+ @@ -95,7 +95,7 @@
- +
D+ @@ -104,7 +104,7 @@
- +
D+ @@ -113,7 +113,7 @@
- +
D+ @@ -122,7 +122,7 @@
- +
D+ @@ -131,7 +131,7 @@
- +
D+ @@ -149,14 +149,14 @@
- +
- + @@ -197,7 +197,7 @@
- + @@ -238,7 +238,7 @@
- + @@ -279,7 +279,7 @@
- + @@ -319,7 +319,7 @@
- + @@ -360,7 +360,7 @@
- + @@ -401,7 +401,7 @@
- + @@ -441,7 +441,7 @@
- + @@ -482,7 +482,7 @@
- + @@ -524,7 +524,7 @@ - + - + - + @@ -645,7 +645,7 @@
- + @@ -653,7 +653,7 @@
- + @@ -661,7 +661,7 @@
- + @@ -719,7 +719,7 @@ - + @@ -736,7 +736,7 @@ - + @@ -753,7 +753,7 @@ - +
@@ -798,12 +798,12 @@
-
+
-
- +
-
@@ -823,13 +823,13 @@
-
+ -
- +
-
Pregen Character Template(changing will overwrite your stats): @@ -853,6 +853,11 @@
+
+ Whisper rolls to GM? + +
+
Skill Roll color
-
+ diff --git a/MythicD6/src/data.pug b/MythicD6/src/data.pug index 0492730efd..57239db569 100644 --- a/MythicD6/src/data.pug +++ b/MythicD6/src/data.pug @@ -5,7 +5,7 @@ input(type="hidden" name="attr_weapon2skilldie" value="1") input(type="hidden" name="attr_weapon3skillpd" value="0") input(type="hidden" name="attr_weapon3skilldie" value="1") -input(type="hidden" name="attr_version" value="1.01") +input(type="hidden" name="attr_version" value="1.06") datalist#powers each power in ["Accelerated Healing", "Animal Mimicry", "Aquatic", "Body Control", "Boost", "Chameleon", "Darkness", "Disease", "Drain", "Duplication", "Elemental Sheath", "Energy Constructs", "Enhanced Perception", "Enhancement", "Entangle", "Extra Limbs", "Fast Reactions", "Flash Attack", "Healing", "Intagible", "Invisibility", "Life Support", "Mimicry", "Molecular Mimic", "Natural Weaponry", "Negation", "Omnivorous", "Paralyze", "Poison Secretion", "Radio Communication", "Ranged Power Attack", "Regeneration", "Shape Shift", "Size Control", "Stretching", "Super Attribute", "Super Senses", "Super Tracking", "Sustenance", "Transmutation", "Transfer Attribute", "Vampirism", "Weather Control", "X-Ray Vision", "adaptation", "body armor", "energy absorption", "force field", "immunity", "invulnerability", "missile deflection", "resurrection", "two-dimensional", "air manipulation", "cosmic manipulation", "darkness manipulation", "density manipulation", "earth manipulation", "electricity manipulation", "energy manipulation", "flame manipulation", "gravity manipulation", "ice manipulation", "light manipulation", "magnetic manipulation", "plant manipulation", "sound manipulation", "time manipulation", "water manipulation", "animation", "animate dead", "beast calling", "beast control", "confusion ", "cosmic awareness", "detect", "empathy", "esp", "hex", "illusion", "iron will", "language comprehension", "luck", "machine interface", "mind control", "mind reading", "mind field", "possession", "second sight", "summoning", "telekinesis", "telepathy", "astral projection", "burrowing", "dimensional shifting", "enhanced movement", "ftl travel", "flight", "spatial warping", "super jump", "super speed", "swinging", "teleportation", "wall-crawling"]