New Sheet for the quest

New sheet to for the quest by 101 games
This commit is contained in:
jarbascjunior2
2024-11-06 18:07:30 -03:00
parent 8788273c02
commit 3498d26948
4 changed files with 102 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
.ficha-container {
position: relative;
width: 900px; /* Largura da ficha de personagem */
margin: 0 auto;
}
.ficha-imagem {
width: 100%;
height: auto;
}
.campo {
position: absolute;
background-color: rgba(255, 255, 255, 0.7); /* Fundo semitransparente */
border: 1px solid #000;
padding: 5px;
font-size: 18px;
font-family: Arial, sans-serif;
}
#attr_destino {
width: 20px;
height: 20px;
accent-color: red; /* Para alterar a cor de seleção */
}
+68
View File
@@ -0,0 +1,68 @@
<link href="ftq.css" rel="stylesheet" type="text/css">
<div class="ficha-container">
<img src="C:\Users\jarba\Desktop\rpg\for_the_quest\ftq_ficha.png" alt="For the quest Ficha" class="ficha-imagem"/>
<!-- Campo Jogador -->
<input type="text" class="campo" name="attr_jogador" id="jogador" value="" style="top: 174px; left: 70px; width: 360px; text-align: left;"/>
<!-- Campo personagem -->
<input type="text" class="campo" name="attr_personagem" id="personagem" value="" style="top: 174px; left: 475px; width: 270px; text-align: left;"/>
<!-- Campo Nível -->
<input type="number" class="campo" name="attr_nivel" id="nivel" value="0" style="top: 160px; left: 790px; width: 50px;"/>
<!-- Campo Defesa -->
<input type="number" class="campo" name="attr_defesa" id="defesa" value="0" style="top: 350px; left: 500px; width: 50px; height: auto;font-size: 24px;"/>
<!-- Campo saude -->
<input type="number" class="campo" name="attr_saude" id="saude" value="0" style="top: 350px; left: 595px; width: 50px; height: auto;font-size: 24px;"/>
<!-- Campo saudeMax -->
<input type="number" class="campo" name="attr_saudemax" id="saudemax" value="0" style="top: 350px; left: 651px; width: 50px; height: auto;font-size: 24px;"/>
<!-- Campo Passos -->
<input type="number" class="campo" name="attr_passos" id="passos" value="0" style="top: 350px; left: 760px; width: 50px; height: auto;font-size: 24px;"/>
<!-- Campo arma -->
<input type="text" class="campo" name="attr_arma" id="arma" value="" style="top: 540px; left: 70px; width: 350px; text-align: left;"/>
<!-- Campo armadura/escudo -->
<input type="text" class="campo" name="attr_arma_escudo" id="arma_escudo" value="" style="top: 540px; left: 465px; width: 350px; text-align: left;"/>
<!-- Campo habilidade1 -->
<input type="text" class="campo" name="attr_habilidade1" id="habilidade1" value="" style="top: 673px; left: 120px; width: 320px; text-align: left;"/>
<!-- Campo habilidade2 -->
<input type="text" class="campo" name="attr_habilidade2" id="habilidade2" value="" style="top: 673px; left: 520px; width: 320px; text-align: left;"/>
<!-- Campo Mochila -->
<textarea class="campo" name="attr_mochila" id="mochila" style="top: 980px; left: 60px; width: 370px; height: 200px; text-align: left;"></textarea>
<!-- Campo Tesouros -->
<textarea class="campo" name="attr_tesouros" id="tesouros" style="top: 980px; left: 470px; width: 350px; height: 200px; text-align: left;"></textarea>
<!-- Força -->
<input type="number" name="attr_forca" class="campo" value="0" title="@{forca}" style="top: 330px; left: 100px; width: 50px; height: 50px; font-size: 24px;" />
<button type="roll" class="campo" value="&{template:atributo} {{nome=@{character_name}}} {{atributo=Força}}
rolagem=[[@{forca}d6>[[?{Dificuldade|4}]]]]" style="top: 380px; left: 130px; width: 50px; height: 50px; font-size: 18px;"/>
<!-- Destreza -->
<input type="number" name="attr_destreza" class="campo" value="0" title="@{destreza}" style="top: 330px; left: 220px; width: 50px; height: 50px; font-size: 24px;" />
<button type="roll" class="campo" value="&{template:atributo} {{nome=@{character_name}}} {{atributo=Destreza}}
Teste de Destreza = [[@{destreza}d6>[[?{Dificuldade|4}]]]]" style="top: 380px; left: 265px; width: 50px; height: 50px; font-size: 18px;"/>
<!-- intelecto -->
<input type="number" name="attr_intelecto" class="campo" value="0" title="@{intelecto}" style="top: 330px; left: 350px; width: 50px; height: 50px; font-size: 24px;" />
<button type="roll" class="campo" value="&{template:atributo} {{nome=@{character_name}}} {{atributo=Intelecto}}
rolagem=[[@{intelecto}d6>[[?{Dificuldade|4}]]]]" style="top: 380px; left: 395px; width: 50px; height: 50px; font-size: 18px;"/>
</div>
Binary file not shown.

After

Width:  |  Height:  |  Size: 460 KiB

+8
View File
@@ -0,0 +1,8 @@
{
"html": "ftq.html",
"css": "ftq.css",
"authors": "jarbascjunior",
"roll20userid": "Jarbits",
"preview": "ftq.png",
"instructions": "Ficha de personagem de For The Quest by 101 games."
}