✨
This commit is contained in:
@@ -440,4 +440,28 @@
|
|||||||
.statHex {
|
.statHex {
|
||||||
margin-top: 0px;
|
margin-top: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
select {
|
||||||
|
background-color: #30da0c;
|
||||||
|
color: black;
|
||||||
|
border: black;
|
||||||
|
|
||||||
|
box-shadow: 0 0 20px #003300 inset;
|
||||||
|
-webkit-box-shadow: 0 0 20px #003300 inset;
|
||||||
|
-moz-box-shadow: 0 0 20px #003300 inset;
|
||||||
|
-o-box-shadow: 0 0 20px #003300 inset;
|
||||||
|
|
||||||
|
border-radius: 10px;
|
||||||
|
-webkit-border-radius: 10px;
|
||||||
|
-moz-border-radius: 10px;
|
||||||
|
-o-border-radius: 10px;
|
||||||
|
|
||||||
|
padding: 5px;
|
||||||
|
margin: 15px 10px;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: space-evenly;
|
||||||
|
align-items: center;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
20
pokemon.css
20
pokemon.css
@@ -370,3 +370,23 @@
|
|||||||
.pokemon.sheet.characterSheet .statHex {
|
.pokemon.sheet.characterSheet .statHex {
|
||||||
margin-top: 0px;
|
margin-top: 0px;
|
||||||
}
|
}
|
||||||
|
.pokemon.sheet.characterSheet select {
|
||||||
|
background-color: #30da0c;
|
||||||
|
color: black;
|
||||||
|
border: black;
|
||||||
|
box-shadow: 0 0 20px #003300 inset;
|
||||||
|
-webkit-box-shadow: 0 0 20px #003300 inset;
|
||||||
|
-moz-box-shadow: 0 0 20px #003300 inset;
|
||||||
|
-o-box-shadow: 0 0 20px #003300 inset;
|
||||||
|
border-radius: 10px;
|
||||||
|
-webkit-border-radius: 10px;
|
||||||
|
-moz-border-radius: 10px;
|
||||||
|
-o-border-radius: 10px;
|
||||||
|
padding: 5px;
|
||||||
|
margin: 15px 10px;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: space-evenly;
|
||||||
|
align-items: center;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"version": "0.0.39",
|
"version": "0.0.40",
|
||||||
"id": "pokemon",
|
"id": "pokemon",
|
||||||
"title": "Pokémon TTRPG",
|
"title": "Pokémon TTRPG",
|
||||||
"description": "A Pokémon TTRPG",
|
"description": "A Pokémon TTRPG",
|
||||||
|
|||||||
BIN
system.zip
BIN
system.zip
Binary file not shown.
@@ -21,7 +21,7 @@
|
|||||||
"hp": 0
|
"hp": 0
|
||||||
},
|
},
|
||||||
"attackCategory": "Physical",
|
"attackCategory": "Physical",
|
||||||
"defenseCategory": "Special",
|
"defenseCategory": "Physical",
|
||||||
"speed": 0,
|
"speed": 0,
|
||||||
"hp": {
|
"hp": {
|
||||||
"max": 0,
|
"max": 0,
|
||||||
|
|||||||
@@ -2,20 +2,32 @@
|
|||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="charHex statHex"><span class="charHexHead">Attack</span></br><input class="charHexValue invisibleInput" type="number" name="system.stats.attack" value="{{system.stats.attack}}"></div>
|
<div class="charHex statHex"><span class="charHexHead">Attack</span></br><input class="charHexValue invisibleInput" type="number" name="system.stats.attack" value="{{system.stats.attack}}"></div>
|
||||||
<div class="categorySelectBox">
|
<div class="categorySelectBox">
|
||||||
<select name="system.attackCategory">
|
<div class="row">
|
||||||
<option value="" disabled selected>{{system.attackCategory}}</option>
|
<label>
|
||||||
<option value="Physical">Physical</option>
|
<input type="radio" name="system.attackCategory" value="Physical"
|
||||||
<option value="Special">Special</option>
|
{{#if (eq system.attackCategory "Physical")}}checked{{/if}}>
|
||||||
</select>
|
Physical
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<label>
|
||||||
|
<input type="radio" name="system.attackCategory" value="Physical"
|
||||||
|
{{#if (eq system.attackCategory "Special")}}checked{{/if}}>
|
||||||
|
Special
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
{{!-- <select name="system.attackCategory">
|
||||||
|
<option value="Physical" {{#if (eq system.attackCategory "Physical")}}selected{{/if}}>Physical</option>
|
||||||
|
<option value="Special" {{#if (eq system.attackCategory "Special")}}selected{{/if}}>Special</option>
|
||||||
|
</select> --}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="charHex statHex"><span class="charHexHead">Defense</span></br><input class="charHexValue invisibleInput" type="number" name="system.stats.defense" value="{{system.stats.defense}}"></div>
|
<div class="charHex statHex"><span class="charHexHead">Defense</span></br><input class="charHexValue invisibleInput" type="number" name="system.stats.defense" value="{{system.stats.defense}}"></div>
|
||||||
<div class="categorySelectBox">
|
<div class="categorySelectBox">
|
||||||
<select name="system.defenseCategory">
|
<select name="system.defenseCategory">
|
||||||
<option value="" disabled selected>{{system.defenseCategory}}</option>
|
<option value="Physical" {{#if (eq system.defenseCategory "Physical")}}selected{{/if}}>Physical</option>
|
||||||
<option value="Physical">Physical</option>
|
<option value="Special" {{#if (eq system.defenseCategory "Special")}}selected{{/if}}>Special</option>
|
||||||
<option value="Special">Special</option>
|
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user