Moving files to TOP LEVEL FOLDER

This commit is contained in:
9th Level Games
2020-11-10 15:01:13 -05:00
committed by GitHub
parent bf4a44650c
commit 60b3426f16
11 changed files with 358 additions and 0 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 263 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 900 KiB

+2
View File
@@ -0,0 +1,2 @@
# roll20
9th Level Games Roll 20 Repository
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 100 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 75 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 111 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 91 KiB

+1
View File
@@ -0,0 +1 @@
+136
View File
@@ -0,0 +1,136 @@
/* This is CSS for the Roll20 Character Sheet for the MAZES RPG 9th Level Games all rights reserved. */
/* Set Custom Fonts*/
@import url('https://fonts.googleapis.com/css?family=Ruslan+Display|Grenze+Gotisch|Trade+Winds|Open+Sans&display=swap');
/* Set Buttons to Action and Save rolls*/
button[type=roll].sheet-starr::before {
font-family: 'pictos';
content: 'b';
}
/* Setup Core Formatting*/
.charsheet {
background-color: #CCCC99;
background-image: url('https://raw.githubusercontent.com/9thLevel/roll20/main/MazesScroll3.png');
width: 642px;
height: 950px;
}
.charsheet label {
text-align: right;
font-family: 'Ruslan Display';
font-size: 2em;
color: #000;
}
.charsheet h1 {
font-family: 'Ruslan Display';
font-size: 10em;
color: #000;
text-align: center;
line-height: .9;
color: #fff;
}
.charsheet h2 {
font-style: italic;
font-family: 'Grenze Gotisch';
font-size: 2em;
text-align: right;
color: #fff;
}
.charsheet h3 {
margin-bottom: 10px;
font-size: 1.5em;
background: #000;
color: #fff;
text-align: center;
font-family: 'Trade Winds';
}
.charsheet input {
display: inline-block;
font-family: 'Trade Winds';
font-size: 1em;
width = 100%;
}
.charsheet select {
font-family: 'Trade Winds';
font-size: 1em;
}
.charsheet textarea {
font-family: 'Trade Winds';
resize: none;
margin: 0;
width: 85%;
background-color: rgba(255, 255, 255, .7);
border: none;
margin-bottom: 10px;
}
/* Setup functions for Roll20 div tables*/
.sheet-divTable {
display: table;
margin: 0 auto;
width: 100%;
}
.sheet-divTableRow {
display: table-row;
}
.sheet-divTableCell {
display: table-cell;
padding: 1px;
}
/* Create and Display the ROLE/ROLL Images based on selection*/
.sheet-divd4, .sheet-divd6, .sheet-divd8, .sheet-divd10 {
position: absolute;
top: 250px;
left: 400px;
width: 250px;
height: 111px;
opacity: 0.8;
display: none;
}
input[value="d4"].sheet-roleselect ~ div.sheet-divd4,
input[value="d6"].sheet-roleselect ~ div.sheet-divd6,
input[value="d8"].sheet-roleselect ~ div.sheet-divd8,
input[value="d10"].sheet-roleselect ~ div.sheet-divd10
{
display: inline;
}
/* Hide the Class Selection and Open Options based on ASPECT Select*/
.sheet-class, .sheet-sword, .sheet-skill, .sheet-sorcery, .sheet-seafaring, .sheet-sylvan, .sheet-scholarship, .sheet-shadows, .sheet-station
{
display: none;
}
input[value*="sword"].sheet-aspect ~ select.sheet-sword,
input[value*="skill"].sheet-aspect ~ select.sheet-skill,
input[value*="sorcery"].sheet-aspect ~ select.sheet-sorcery,
input[value*="seafaring"].sheet-aspect ~ select.sheet-seafaring,
input[value*="sylvan"].sheet-aspect ~ select.sheet-sylvan,
input[value*="scholarship"].sheet-aspect ~ select.sheet-scholarship,
input[value*="shadows"].sheet-aspect ~ select.sheet-shadows,
input[value*="station"].sheet-aspect ~ select.sheet-station
{
display: block;
}
}
+211
View File
@@ -0,0 +1,211 @@
<div>
<br>
<div class="divTable">
<div class="divTableRow">
<div class="divTableCell"> <h1>MAZES</h1> </div>
</div>
<h3> Character Journal </h3>
<div class="divTable">
<div class="divTableRow">
<div class="divTableCell" style="width: 120px;"> <label> Name: </label> </div>
<div class="divTableCell"> <input type="text" name="attr_character_name" /> </label></div>
</div>
<div class="divTableRow">
<div class="divTableCell"> <label> Role: </label></div>
<div class="divTableCell">
<select class="sheet-roleselect" name="attr_role">
<option value="d4" selected="selected">Paragon</option>
<option value="d6">Vanguard</option>
<option value="d8">Fighter</option>
<option value="d10">Sentinel</option>
</select>
</div>
</div>
<input class="sheet-roleselect" type="hidden" name='attr_role'/>
<div class="sheet-divd4"><img src="https://raw.githubusercontent.com/9thLevel/roll20/main/d4.png"></img></div>
<div class="sheet-divd6"><img src="https://raw.githubusercontent.com/9thLevel/roll20/main/d6.png"></img></div>
<div class="sheet-divd8"><img src="https://raw.githubusercontent.com/9thLevel/roll20/main/d8.png"></img></div>
<div class="sheet-divd10"><img src="https://raw.githubusercontent.com/9thLevel/roll20/main/d10.png"></img></div>
<div class="divTableRow">
<div class="divTableCell"> <label> Aspect: </label> </div>
<div class="divTableCell">
<select name="attr_aspect" class="aspect">
<option value="sword">Sword</option>
<option value="skill">Skill</option>
<option value="sorcery">Sorcery</option>
<option value="scholarship">Scholarship</option>
<option value="seafaring">Seafaring</option>
<option value="sylvan">Sylvan</option>
<option value="station">Station</option>
<option value="shadows">Shadows</option>
</select>
</div> </div>
<div class="divTableRow">
<div class="divTableCell"> <label> Class: </label> </div>
<div class="divTableCell">
<input class="sheet-aspect" type="hidden" name='attr_aspect'/>
<select name="attr_class" class="sheet-sword">
<option value="Ill-Fated Hero">Ill-Fated Hero</option>
<option value="Bugbear Outcast">Bugbear Outcast</option>
<option value="Dangerous Bravo" selected="selected">Dangerous Bravo</option>
<option value="Hard Assassin">Hard Assassin</option>
<option value="Menacing Dragoon">Menacing Dragoon</option>
<option value="Monster Hunter">Monster Hunter</option>
<option value="Intrepid Ranger">Mysterious Ranger</option>
<option value="Sellsword Captain">Sellsword Captain</option>
<option value="Street Goblin">Street Goblin</option>
</select>
<select name="attr_class" class="sheet-skill">
<option value="Itinerant Smith">Itinerant Smith</option>
<option value="Mad Alchemist">Mad Alchemist</option>
<option value="Sea Hawk">Sea Hawk</option>
<option value="Shadowy Footpad">Shadowy Footpad</option>
<option value="Tomb Robber">Tomb Robber</option>
</select>
<select name="attr_class" class="sheet-sorcery">
<option value="Black Mage (Necromancer)">Black Mage</option>
<option value="Blue Mage (Hydromancer)">Blue Mage</option>
<option value="Court Astrologer">Court Astrologer</option>
<option value="Forgotten Ilf">Forgotten Ilf</option>
<option value="Green Mage (Geomancer)">Green Mage</option>
<option value="Old Wizard">Old Wizard</option>
<option value="Red Mage (Pyromancer)">Red Mage</option>
<option value="Slippery Illusionist">Slippery Illusionist</option>
<option value="White Mage (Aeromancer)">White Mage</option>
<option value="Wise Witch">Wise Witch</option>
</select>
<select name="attr_class" class="sheet-scholarship">
<option value="Court Astrologer">Court Astrologer</option>
<option value="Freed Djinn">Freed Djinn</option>
<option value="Haunted Librarian">Huanted Librarian</option>
<option value="Old Wizard">Old Wizard</option>
<option value="Rambling Bard">Rambling Bard</option>
<option value="Wise Witch">Wise Witch</option>
</select>
<select name="attr_class" class="sheet-seafaring">
<option value="Ancient Mariner">Ancient Mariner</option>
<option value="Blue Mage (Hydromancer)">Blue Mage</option>
<option value="Dashing Scoundrel">Dashing Scoundrel</option>
<option value="Dread Reaver">Dread Reaver</option>
<option value="Filthy Urchin">Filthy Urchin</option>
<option value="Merfolk Nomad">Merfolk Nomad</option>
<option value="Sea Hawk">Sea Hawk</option>
<option value="Shipwrecked Captain">Shipwrecked Captain</option>
</select>
<select name="attr_class" class="sheet-sylvan">
<option value="Adventurous Smallfolk">Adventurous Smallfolk</option>
<option value="Bugbear Outcast">Bugbear Outcast</option>
<option value="Forgotten Ilf">Forgotten Ilf</option>
<option value="Monster Hunter">Monster Hunter</option>
<option value="Mysterious Druid">Mysterious Druid</option>
<option value="Intrepid Ranger">Intrepid Ranger</option>
<option value="Shunned Witch">Shunned Witch</option>
<option value="Wandering Herbalist">Wandering Herbalist</option>
</select>
<select name="attr_class" class="sheet-station">
<option value="Court Astrologer">Court Astrologer</option>
<option value="Grizzled Captain">Grizzled Captain</option>
<option value="Ill-Fated Hero">Ill-Fated Hero</option>
<option value="Kobold Boss">Kobold Boss</option>
<option value="Mysterious Foundling">Mysterious Foundling</option>
<option value="Noble Scion">Noble Scion</option>
<option value="Slippery Illusionist">Slippery Illusionist</option>
<option value="Smiling Inkeeper">Smiling Inkeeper</option>
</select>
<select name="attr_class" class="sheet-shadows">
<option value="Black Mage (Necromancer)">Black Mage</option>
<option value="Filthy Urchin">Filthy Urchin</option>
<option value="Hard Assassin">Hard Assassin</option>
<option value="Shadowy Footpad">Shadowy Footpad</option>
</select>
</div>
</div>
</div>
</div>
<h3>Edges</h3>
<div class="divTable" align="center">
<div class="divTableRow" align="center">
<div class="divTableCell" align="center">
<fieldset class="repeating_edges">
<select name="attr_edges" class="edges">
<option value="Ardent">Ardent</option>
<option value="Armored">Armored</option>
<option value="Agile">Agile</option>
<option value="Beautiful">Beautiful</option>
<option value="Charming">Charming</option>
<option value="Cunning">Cunning</option>
<option value="Cursed">Cursed</option>
<option value="Deadly">Deadly</option>
<option value="Dexterous">Dexterous</option>
<option value="Fast">Fast</option>
<option value="Friends">Friends</option>
<option value="Gearwise">Gearwise</option>
<option value="Hale">Hale</option>
<option value="Intimidating">Intimidating</option>
<option value="Lorewise">Lorewise</option>
<option value="Lucky">Lucky</option>
<option value="Keen">Keen</option>
<option value="Learned">Learned</option>
<option value="Magic Familiar">Magic Familiar</option>
<option value="Magic Item">Magic Item</option>
<option value="Magic Lineage">Magic Lineage</option>
<option value="Magic Spells">Magic Spells</option>
<option value="Magic Weapon">Magic Weapon</option>
<option value="Mastery">Mastery</option>
<option value="Naturewise">Naturewise</option>
<option value="Rank">Rank</option></option>
<option value="Retainers">Retainers</option>
<option value="Sharp">Sharp</option>
<option value="Stealthy">Stealthy</option>
<option value="Strange">Strange</option>
<option value="Streetwise">Streetwise</option>
<option value="Strong">Strong</option>
<option value="Tools">Tools</option>
<option value="Tough">Tough</option>
<option value="Travelled">Travelled</option>
<option value="Veteran">Veteran</option>
<option value="Wealth">Wealth</option>
<option value="Well-Armed">Well-Armed</option>
<option value="Other">Other</option>
</select>
</fieldset>
</div>
</div>
</div>
<h3>Actions and Saves</h3>
<div class="divTable" align="center" style="width:90%;">
<div class="divTableRow" align="center">
<div class="divTableCell"> <label style="font-size: 2.5em;"> Roll </label> </div>
<div class="divTableCell"><button type="roll" value="/roll @{role}" name="roll_Core" class="starr"></button></div>
<div class="divTableCell"> <label style="font-size: 2.5em;"> Vantage </label> </div>
<div class="divTableCell"><button type="roll" value="/roll 2@{role}" name="roll_Vantage" class="starr"></button></div>
<div class="divTableCell"> <label style="font-size: 2.5em;"> Effect </label> </div>
<div class="divTableCell"><button type="roll" value="/roll @{role}!!" name="roll_Effect" class="starr"></button></div>
</div>
</div>
</div>
+8
View File
@@ -0,0 +1,8 @@
{
"html": "mazes.html",
"css": "mazes.css",
"authors": "9th Level Games",
"roll20userid": "68949",
"preview": "CharacterSheet500.png",
"instructions": "Character Sheet for playing MAZES Fantasy Roleplaying powered by POLYMORPH by 9th Level Games."
}