effacement des packs pour mettre les binaires

This commit is contained in:
François-Xavier Guillois
2023-09-07 12:23:31 +02:00
parent 90afe712d5
commit fddb054160
40 changed files with 19 additions and 50 deletions
+1
View File
@@ -0,0 +1 @@
packs/** binary

Before

Width:  |  Height:  |  Size: 94 KiB

After

Width:  |  Height:  |  Size: 94 KiB

+2 -1
View File
@@ -211,7 +211,8 @@
"new_vehicle": "Nouveau véhicule",
"vehicles": "Véhicules",
"new_objective": "Nouvel objectif",
"learning": "Apprentissage"
"learning": "Apprentissage",
"cost": "Coût"
},
"ABILITIES": {
"vigor": { "name": "Vigueur"},
Binary file not shown.
Binary file not shown.
-1
View File
@@ -1 +0,0 @@
MANIFEST-000007
-3
View File
@@ -1,3 +0,0 @@
2023/09/07-11:51:18.260918 7f5df81f1640 Recovering log #6
2023/09/07-11:51:18.285567 7f5df81f1640 Delete type=0 #6
2023/09/07-11:51:18.285662 7f5df81f1640 Delete type=3 #4
-5
View File
@@ -1,5 +0,0 @@
2023/09/07-11:30:31.769154 7f3911ff0640 Recovering log #3
2023/09/07-11:30:31.769670 7f3911ff0640 Level-0 table #5: started
2023/09/07-11:30:31.775761 7f3911ff0640 Level-0 table #5: 6736 bytes OK
2023/09/07-11:30:31.793057 7f3911ff0640 Delete type=3 #2
2023/09/07-11:30:31.793231 7f3911ff0640 Delete type=0 #3
Binary file not shown.
Binary file not shown.
-1
View File
@@ -1 +0,0 @@
MANIFEST-000007
-3
View File
@@ -1,3 +0,0 @@
2023/09/07-11:51:18.300447 7f5df71ef640 Recovering log #6
2023/09/07-11:51:18.315374 7f5df71ef640 Delete type=0 #6
2023/09/07-11:51:18.315455 7f5df71ef640 Delete type=3 #4
-5
View File
@@ -1,5 +0,0 @@
2023/09/07-11:30:31.769070 7f3912ff2640 Recovering log #3
2023/09/07-11:30:31.769166 7f3912ff2640 Level-0 table #5: started
2023/09/07-11:30:31.772975 7f3912ff2640 Level-0 table #5: 2135 bytes OK
2023/09/07-11:30:31.790376 7f3912ff2640 Delete type=3 #2
2023/09/07-11:30:31.790513 7f3912ff2640 Delete type=0 #3
Binary file not shown.
Binary file not shown.
View File
-1
View File
@@ -1 +0,0 @@
MANIFEST-000004
View File
-5
View File
@@ -1,5 +0,0 @@
2023/09/07-11:51:18.292310 7f5df79f0640 Recovering log #3
2023/09/07-11:51:18.293080 7f5df79f0640 Level-0 table #5: started
2023/09/07-11:51:18.297894 7f5df79f0640 Level-0 table #5: 26432 bytes OK
2023/09/07-11:51:18.312622 7f5df79f0640 Delete type=3 #2
2023/09/07-11:51:18.312750 7f5df79f0640 Delete type=0 #3
-1
View File
@@ -1 +0,0 @@
2023/09/07-11:32:43.233124 7f39137f3640 Delete type=3 #1
Binary file not shown.
Binary file not shown.
Binary file not shown.
View File
Binary file not shown.
-1
View File
@@ -1 +0,0 @@
MANIFEST-000004
View File
-5
View File
@@ -1,5 +0,0 @@
2023/09/07-11:51:18.264425 7f5df89f2640 Recovering log #3
2023/09/07-11:51:18.264584 7f5df89f2640 Level-0 table #5: started
2023/09/07-11:51:18.279585 7f5df89f2640 Level-0 table #5: 3172 bytes OK
2023/09/07-11:51:18.294616 7f5df89f2640 Delete type=3 #2
2023/09/07-11:51:18.294742 7f5df89f2640 Delete type=0 #3
-1
View File
@@ -1 +0,0 @@
2023/09/07-11:31:14.038599 7f39127f1640 Delete type=3 #1
Binary file not shown.
Binary file not shown.
+2 -1
View File
@@ -470,7 +470,8 @@
"templates": ["base"]
},
"background": {
"templates": ["list"]
"templates": ["list"],
"cost":1
},
"trauma": {
"templates": ["list"],
+12 -12
View File
@@ -8,22 +8,22 @@
{{!-- Sheet Tab Navigation --}}
<nav class="sheet-tabs tabs" data-group="primary">
<a class="item" data-tab="description">Description</a>
<a class="item" data-tab="attributes">Attributes</a>
<a class="item active" data-tab="description">{{ VERMINE.stats }}</a>
</nav>
{{!-- Sheet Body --}}
<section class="sheet-body">
{{!-- Description Tab --}}
<div class="tab" data-group="primary" data-tab="description">
{{editor system.description target="system.description" rollData=rollData button=true owner=owner editable=editable}}
</div>
{{!-- Attributes Tab --}}
<div class="tab attributes" data-group="primary" data-tab="attributes">
{{!-- As you add new fields, add them in here! --}}
</div>
<div class="tab flexrow gap-4" data-group="primary" data-tab="description">
<aside style="flex:20%;">
<div class="resource">
<label class="resource-label">{{ localize "ITEMS.cost"}}</label>
<input type="number" name="system.cost" value="{{system.cost }}" data-dtype="Number" min="1" max="2" />
</div>
</aside>
<main class="editor-wrapper" style="flex:10">
{{editor system.description target="system.description" rollData=rollData button=true owner=owner editable=editable}}
</main>
</div>
</section>
</form>
+2 -4
View File
@@ -16,10 +16,8 @@
<div class="tab flexrow gap-4" data-group="primary" data-tab="description">
<aside style="flex:20%;">
<div class="resource">
<div class="resource">
<label class="resource-label">{{ localize "VERMINE.level"}}</label>
<input type="number" name="system.level.value" value="{{system.level.value }}" data-dtype="Number" min="{{system.level.min }}" max="{{system.level.max }}" />
</div>
<label class="resource-label">{{ localize "VERMINE.level"}}</label>
<input type="number" name="system.level.value" value="{{system.level.value }}" data-dtype="Number" min="{{system.level.min }}" max="{{system.level.max }}" />
</div>
</aside>
<main class="editor-wrapper" style="flex:10">