This commit is contained in:
François-Xavier Guillois
2023-09-03 16:02:30 +02:00
parent 83757d26d0
commit 7677c79582
6 changed files with 16 additions and 11 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 43 KiB

+2 -1
View File
@@ -134,7 +134,8 @@
"group_members": "Membres", "group_members": "Membres",
"encounters": "Rencontres", "encounters": "Rencontres",
"road": "La Route", "road": "La Route",
"totem_picker": "Sélecteur de totem" "totem_picker": "Sélecteur de totem",
"actor_picker": "Sélecteur de personnage"
}, },
"ITEMS": { "ITEMS": {
"defense": "Protection", "defense": "Protection",
+3 -3
View File
@@ -15,8 +15,8 @@ export class TotemPicker extends Application {
template:'systems/vermine2047/templates/applications/choose-totem.hbs', template:'systems/vermine2047/templates/applications/choose-totem.hbs',
popOut:true, popOut:true,
resizable:true, resizable:true,
height:"600", height:"800",
width:"600" width:"800"
}); });
} }
@@ -67,7 +67,7 @@ export class ActorPicker extends Application {
template:'systems/vermine2047/templates/applications/choose-actor.hbs', template:'systems/vermine2047/templates/applications/choose-actor.hbs',
popOut:true, popOut:true,
resizable:true, resizable:true,
height:"600", height:"350",
width:"600" width:"600"
}); });
} }
+1 -1
View File
@@ -2,7 +2,7 @@
"id": "vermine2047", "id": "vermine2047",
"title": "Vermine 2047", "title": "Vermine 2047",
"description": "The Vermine 2047 system for FoundryVTT!", "description": "The Vermine 2047 system for FoundryVTT!",
"version": "0.1.2", "version": "0.1.3",
"compatibility": { "compatibility": {
"minimum": 10, "minimum": 10,
"verified": "10.287", "verified": "10.287",
+3 -3
View File
@@ -1,8 +1,8 @@
<div class="actor choose flexrow row"> <div class="actor choose flexrow row" style="flex-wrap: wrap;max-height: 100px;justify-content:center;">
{{#each actorsList as | actor akey|}} {{#each actorsList as | actor akey|}}
<div class="actor rounded-full" data-totem="{{ tk }}" data-id="{{ actor.id }}" style="position:relative; width:100px;height:100px;"> <div class="actor rounded-full" data-totem="{{ tk }}" data-id="{{ actor.id }}" style="position:relative; width:100px;height:100px;">
<span class="flexrow w-full flex-group-center flex-align-center" style="position:absolute;z-index:10;height:100%;">{{ actor.name }}</span> <span class="flexrow w-full flex-group-center flex-align-center" style="position:absolute;z-index:10;width:100px;height:100px;">{{ actor.name }}</span>
<img src="{{ actor.img }}" alt="{{ actor.name }}" width="100" height="100" style="position:relative;" /> <img src="{{ actor.img }}" alt="{{ actor.name }}" width="100" height="100" style="position:relative;min-width:100px;" />
</div> </div>
{{/each}} {{/each}}
</div> </div>
+7 -3
View File
@@ -2,9 +2,13 @@
{{#each config.totems as | totem tk|}} {{#each config.totems as | totem tk|}}
{{#if (ne tk "human")}} {{#if (ne tk "human")}}
{{#if (ne tk "adapted")}} {{#if (ne tk "adapted")}}
<div class="flexrow row mdb"> <div class="flexrow row mdb flex-group-center">
<h4 style="flex:33%;"><a class="totem" data-totem="{{ tk }}" title="{{ smarttlk "TOTEMS" tk "description"}}"><img src="/systems/vermine2047/assets/images/ui/totems/{{ tk }}.webp" alt="{{ localize totem }}" width="80" height="80" /></a></h4> <h4 style="flex:33%;">
<p style="flex:66%;"> <a class="totem" data-totem="{{ tk }}" title="{{ smarttlk "TOTEMS" tk "description"}}">
<img src="/systems/vermine2047/assets/images/ui/totems/{{ tk }}.webp" alt="{{ localize totem }}" width="80" height="80" />
</a>
</h4>
<p style="flex:66%;text-align:left;">
<strong>Instincts</strong> : {{ smarttlk "TOTEMS" tk "instincts"}}<br> <strong>Instincts</strong> : {{ smarttlk "TOTEMS" tk "instincts"}}<br>
<strong>Interdits</strong> : {{ smarttlk "TOTEMS" tk "bans"}}<br> <strong>Interdits</strong> : {{ smarttlk "TOTEMS" tk "bans"}}<br>
<strong>Comportements</strong> : {{ smarttlk "TOTEMS" tk "behaviour"}}<br> <strong>Comportements</strong> : {{ smarttlk "TOTEMS" tk "behaviour"}}<br>