V0.06 Midgard-Karten
|
|
@ -10,4 +10,6 @@
|
|||
- Macros auf Crit Tabellen funktionieren jetzt korrekt
|
||||
# 0.05
|
||||
- Flag für Items: Am Körper getragen
|
||||
- Anpassungen, damit das Modul Tokenizer verwendet werden kann
|
||||
- Anpassungen, damit das Modul Tokenizer verwendet werden kann
|
||||
# 0.06
|
||||
- Fehler in Krit-Tabellen korrigiert
|
||||
|
|
@ -18,6 +18,7 @@
|
|||
<li>Tables for critical rolls (already implemented in a rudimentary way)</li>
|
||||
<li>Modification of the standard combat tracker to fit the Midgard specific battle round rules</li>
|
||||
<li>Modification of the dice roller (detection of critical rolls and practice points)</li>
|
||||
<li>Midgard Maps</li>
|
||||
</ul>
|
||||
<p> </p>
|
||||
<h2>License</h2>
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 880 B After Width: | Height: | Size: 880 B |
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 9.5 MiB |
|
After Width: | Height: | Size: 6.4 MiB |
|
|
@ -14,9 +14,7 @@
|
|||
}
|
||||
}
|
||||
.profile-img {
|
||||
|
||||
height: 64px;
|
||||
width: 64px;
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -13,4 +13,8 @@
|
|||
height: 100%;
|
||||
}
|
||||
}
|
||||
.item-img {
|
||||
height: 64px;
|
||||
width: 64px;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -10,6 +10,10 @@
|
|||
.midgard5.sheet.item .sheet-content .editor {
|
||||
height: 100%;
|
||||
}
|
||||
.midgard5.sheet.item .item-img {
|
||||
height: 64px;
|
||||
width: 64px;
|
||||
}
|
||||
.midgard5.sheet.character form {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
|
|
|||
|
|
@ -37,7 +37,13 @@
|
|||
"label": "Standardwürfel",
|
||||
"path": "./packs/macros/makros-standardwurfel.db",
|
||||
"entity": "Macro"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "scenes-midgard-karten",
|
||||
"label": "Midgard-Karten",
|
||||
"path": "./packs/scenes/scenes-midgard-karten.db",
|
||||
"entity": "Scene"
|
||||
}
|
||||
],
|
||||
"languages": [
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<form class="{{cssClass}}" autocomplete="off">
|
||||
<header class="sheet-header">
|
||||
<img src="{{item.img}}" data-edit="img" title="{{item.name}}" height="64" width="64" />
|
||||
<img class="item-img" src="{{item.img}}" data-edit="img" title="{{item.name}}" />
|
||||
<h1><input name="name" type="text" value="{{item.name}}" placeholder="Name" /></h1>
|
||||
</header>
|
||||
<div class="sheet-content">
|
||||
|
|
|
|||