Merge pull request #17 from hjmaier/V0.06

V0.06
This commit is contained in:
hjmaier 2021-02-19 23:38:07 +01:00 committed by GitHub
commit 72bf04b53f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
16 changed files with 28 additions and 10 deletions

View File

@ -10,4 +10,7 @@
- Macros auf Crit Tabellen funktionieren jetzt korrekt - Macros auf Crit Tabellen funktionieren jetzt korrekt
# 0.05 # 0.05
- Flag für Items: Am Körper getragen - 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
- Midgard-Karten hinzugefügt

View File

@ -18,6 +18,7 @@
<li>Tables for critical rolls (already implemented in a rudimentary way)</li> <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 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>Modification of the dice roller (detection of critical rolls and practice points)</li>
<li>Midgard Maps</li>
</ul> </ul>
<p>&nbsp;</p> <p>&nbsp;</p>
<h2>License</h2> <h2>License</h2>

View File

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

Before

Width:  |  Height:  |  Size: 880 B

After

Width:  |  Height:  |  Size: 880 B

View File

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

BIN
assets/maps/midgard_v1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.5 MiB

BIN
assets/maps/midgard_v2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 MiB

View File

@ -14,9 +14,7 @@
} }
} }
.profile-img { .profile-img {
height: 64px; height: 64px;
width: 64px; width: 64px;
} }
} }

View File

@ -13,4 +13,8 @@
height: 100%; height: 100%;
} }
} }
.item-img {
height: 64px;
width: 64px;
}
} }

View File

@ -10,6 +10,10 @@
.midgard5.sheet.item .sheet-content .editor { .midgard5.sheet.item .sheet-content .editor {
height: 100%; height: 100%;
} }
.midgard5.sheet.item .item-img {
height: 64px;
width: 64px;
}
.midgard5.sheet.character form { .midgard5.sheet.character form {
display: flex; display: flex;
flex-direction: column; flex-direction: column;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -2,7 +2,7 @@
"name": "midgard5", "name": "midgard5",
"title": "Midgard 5. Edition", "title": "Midgard 5. Edition",
"description": "The German RPG Midgard 5. Edition", "description": "The German RPG Midgard 5. Edition",
"version": 0.05, "version": 0.06,
"minimumCoreVersion": "0.7.9", "minimumCoreVersion": "0.7.9",
"compatibleCoreVersion": "0.7.9", "compatibleCoreVersion": "0.7.9",
"templateVersion": 2, "templateVersion": 2,
@ -37,7 +37,13 @@
"label": "Standardwürfel", "label": "Standardwürfel",
"path": "./packs/macros/makros-standardwurfel.db", "path": "./packs/macros/makros-standardwurfel.db",
"entity": "Macro" "entity": "Macro"
} },
{
"name": "scenes-midgard-karten",
"label": "Midgard-Karten",
"path": "./packs/scenes/scenes-midgard-karten.db",
"entity": "Scene"
}
], ],
"languages": [ "languages": [
{ {
@ -52,7 +58,7 @@
"secondaryTokenAttribute": "ap", "secondaryTokenAttribute": "ap",
"url": "https://github.com/hjmaier/midgard5", "url": "https://github.com/hjmaier/midgard5",
"manifest": "https://raw.githubusercontent.com/hjmaier/midgard5/main/system.json", "manifest": "https://raw.githubusercontent.com/hjmaier/midgard5/main/system.json",
"download": "https://github.com/hjmaier/midgard5/archive/V0.05.zip", "download": "https://github.com/hjmaier/midgard5/archive/V0.06.zip",
"initiative": "@gw.value + @gw.bonus", "initiative": "@gw.value + @gw.bonus",
"license": "LICENSE.txt" "license": "LICENSE.txt"
} }

View File

@ -1,6 +1,6 @@
<form class="{{cssClass}}" autocomplete="off"> <form class="{{cssClass}}" autocomplete="off">
<header class="sheet-header"> <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> <h1><input name="name" type="text" value="{{item.name}}" placeholder="Name" /></h1>
</header> </header>
<div class="sheet-content"> <div class="sheet-content">