Skip to content

Commit

Permalink
feat(skills): added two new skills: 'voo' and 'pericia livre'
Browse files Browse the repository at this point in the history
  • Loading branch information
SouOWendel committed Oct 17, 2024
1 parent f840159 commit ae1aed6
Show file tree
Hide file tree
Showing 7 changed files with 46 additions and 8 deletions.
2 changes: 1 addition & 1 deletion css/shinobiNoSho.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,9 @@
"procurar": "Procurar",
"prontidao": "Prontidão",
"rastrear": "Rastrear",
"veneficio": "Venefício+"
"veneficio": "Venefício+",
"voo": "Voo",
"pericia_1": "Perícia Livre"
},
"social": {
"atuacao": "Atuação",
Expand Down
4 changes: 3 additions & 1 deletion lang/pt-BR.json
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,9 @@
"procurar": "Procurar",
"prontidao": "Prontidão",
"rastrear": "Rastrear",
"veneficio": "Venefício+"
"veneficio": "Venefício+",
"voo": "Voo",
"pericia_1": "Perícia Livre"
},
"social": {
"atuacao": "Atuação",
Expand Down
19 changes: 17 additions & 2 deletions module/helpers/config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@ shinobiNoSho.skills = {
procurar: "shinobiNoSho.skills.geral.procurar",
prontidao: "shinobiNoSho.skills.geral.prontidao",
rastrear: "shinobiNoSho.skills.geral.rastrear",
veneficio: "shinobiNoSho.skills.geral.veneficio"
veneficio: "shinobiNoSho.skills.geral.veneficio",
voo: "shinobiNoSho.skills.geral.voo",
pericia_1: "shinobiNoSho.skills.geral.pericia_1"
},
social: {
atuacao: "shinobiNoSho.skills.social.atuacao",
Expand Down Expand Up @@ -286,4 +288,17 @@ shinobiNoSho.tamanhos = {
imenso: "shinobiNoSho.tamanhos.imenso",
colossal: "shinobiNoSho.tamanhos.colossal",
incrivel: "shinobiNoSho.tamanhos.incrivel",
};
};

shinobiNoSho.tokenSizes = {
minusculo: 1,
diminuto: 2,
miudo: 3,
pequeno: 4,
medio: 5,
grande: 6,
enorme: 7,
imenso: 8,
colossal: 9,
incrivel: 10,
}
2 changes: 1 addition & 1 deletion src/scss/components/_forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ form {
.grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(9, 1fr);
grid-template-rows: repeat(10, 1fr);
grid-column-gap: 6px;
grid-row-gap: 3px;
grid-auto-flow: column;
Expand Down
20 changes: 20 additions & 0 deletions template.json
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,26 @@
"treinada": true,
"armadura": false
}
},
"voo": {
"ability": "agi",
"value": null,
"bonus": null,
"caract": {
"social": false,
"treinada": true,
"armadura": false
}
},
"pericia_1": {
"ability": "",
"value": null,
"bonus": null,
"caract": {
"social": false,
"treinada": false,
"armadura": false
}
}
},
"social": {
Expand Down
3 changes: 1 addition & 2 deletions templates/actor/parts/actor-pericias.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@
{{/each}}
</div>
</section>
<p style="font-size: 14px;"><i>+: perícias que necessitam treinamento.</i></p>
<p style="font-size: 14px;"><i>*: perícias que são afetadas por armadura.</i></p>
<p style="font-size: 14px;"><i>+: perícias que necessitam treinamento. *: perícias que são afetadas por armadura.</i></p>
</div>

<div class="tab sociais" data-group="pericias" data-tab="sociais">
Expand Down

0 comments on commit ae1aed6

Please sign in to comment.