V0.05 - Final
This commit is contained in:
parent
6ccd9510c5
commit
d214358adb
|
|
@ -8,3 +8,6 @@
|
|||
# 0.04
|
||||
- Schönere Bilder für Macros der Krittabellen und Würfelmacros
|
||||
- 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
|
||||
|
|
@ -22,12 +22,13 @@
|
|||
<p> </p>
|
||||
<h2>License</h2>
|
||||
<br/>
|
||||
<h2>Midgard<h2>
|
||||
<h2>Midgard</h2>
|
||||
<p>Midgard is the intellectual property of Verlag für Fantasy- und SF-Spiele GbR (VFSF), Stelzenberg, Germany.</p>
|
||||
<br/>
|
||||
<h2>Icons</h2>
|
||||
<p>Icons were taken from <a href="https://game-icons.net/">Game-Icons.net</a> they are under the <a href="https://creativecommons.org/licenses/by/3.0/">CC BY 3.0</a> license. The creators of the icons are not responsible for the use of their art.<p>
|
||||
<p>The following icons were taken:</p>
|
||||
<ul>
|
||||
<li><a href="https://game-icons.net/1x1/delapouite/dice-twenty-faces-twenty.html">Dice 20 faces 20 icon</a> by <a href="https://delapouite.com/">Delapouite</a></li>
|
||||
<li><a href="https://game-icons.net/1x1/delapouite/perspective-dice-five.html">Perspective dice 5 icon</a> by <a href="https://delapouite.com/">Delapouite</a></li>
|
||||
<li><a href="https://game-icons.net/1x1/skoll/d10.html">Perspective dice 5 icon</a> by Skoll</li>
|
||||
|
|
@ -36,4 +37,5 @@
|
|||
<li><a href="https://game-icons.net/1x1/lorc/broken-shield.html">Broken shield icon</a> by <a href="https://lorcblog.blogspot.com/">Lorc</a></li>
|
||||
<li><a href="https://game-icons.net/1x1/delapouite/shield-bash.html">Shield bash icon</a> by <a href="https://delapouite.com/">Delapouite</a></li>
|
||||
<li><a href="https://game-icons.net/1x1/lorc/mushroom-cloud.html">Mushroom cloud icon</a> by <a href="https://lorcblog.blogspot.com/">Lorc</a></li>
|
||||
</ul><br/>
|
||||
<p>No changes were made</p>
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@
|
|||
"midgard5.description": "Beschreibung",
|
||||
"midgard5.item-value": "Wert",
|
||||
"midgard5.item-quantity": "Menge",
|
||||
"midgard5.item-onbody": "Am Körper",
|
||||
"midgard5.item-ismagic": "Ist Magisch",
|
||||
"midgard5.actor-lp": "Lebenspunkte",
|
||||
"midgard5.actor-ap": "Ausdauerpunkte",
|
||||
|
|
|
|||
|
|
@ -13,4 +13,10 @@
|
|||
height: 100%;
|
||||
}
|
||||
}
|
||||
.profile-img {
|
||||
|
||||
height: 64px;
|
||||
width: 64px;
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -22,3 +22,7 @@
|
|||
.midgard5.sheet.character .sheet-content .editor {
|
||||
height: 100%;
|
||||
}
|
||||
.midgard5.sheet.character .profile-img {
|
||||
height: 64px;
|
||||
width: 64px;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
"name": "midgard5",
|
||||
"title": "Midgard 5. Edition",
|
||||
"description": "The German RPG Midgard 5. Edition",
|
||||
"version": 0.04,
|
||||
"version": 0.05,
|
||||
"minimumCoreVersion": "0.7.9",
|
||||
"compatibleCoreVersion": "0.7.9",
|
||||
"templateVersion": 2,
|
||||
|
|
@ -52,7 +52,7 @@
|
|||
"secondaryTokenAttribute": "ap",
|
||||
"url": "https://github.com/hjmaier/midgard5",
|
||||
"manifest": "https://raw.githubusercontent.com/hjmaier/midgard5/main/system.json",
|
||||
"download": "https://github.com/hjmaier/midgard5/archive/V0.04.zip",
|
||||
"download": "https://github.com/hjmaier/midgard5/archive/V0.05.zip",
|
||||
"initiative": "@gw.value + @gw.bonus",
|
||||
"license": "LICENSE.txt"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,6 +20,13 @@
|
|||
"max":20
|
||||
}
|
||||
},
|
||||
"characterHeader": {
|
||||
"es":0,
|
||||
"ep":0,
|
||||
"gg":0,
|
||||
"sg":0,
|
||||
"gp":2
|
||||
},
|
||||
"attributes":{
|
||||
"st": {
|
||||
"value": 50,
|
||||
|
|
@ -63,7 +70,8 @@
|
|||
"templates": [
|
||||
"characterBars",
|
||||
"attributes",
|
||||
"characterDescription"
|
||||
"characterDescription",
|
||||
"characterHeader"
|
||||
]
|
||||
},
|
||||
"npc":{
|
||||
|
|
@ -94,8 +102,9 @@
|
|||
"itemDescription"
|
||||
],
|
||||
"quantity":1,
|
||||
"weight":0,
|
||||
"value":0,
|
||||
"magic":false,
|
||||
"onbody":false,
|
||||
"attributes":{
|
||||
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<form class="actor-sheet {{cssClass}}" autocomplete="off">
|
||||
<header class="sheet-header">
|
||||
<img src="{{actor.img}}" data-edit="img" title="{{actor.name}}" height="64" width="64" />
|
||||
<img class="profile-img" src="{{actor.img}}" data-edit="img" title="{{actor.name}}" />
|
||||
<h1 class="charname"><input name="name" type="text" value="{{actor.name}}" placeholder="Name" /></h1>
|
||||
</header>
|
||||
<div class="sheet-content">
|
||||
|
|
@ -57,7 +57,7 @@
|
|||
</table>
|
||||
{{editor content=data.description target="data.description" button=true owner=owner editable=editable}}
|
||||
</div>
|
||||
{{!-- <section class="items">
|
||||
{{!-- <section class="items">
|
||||
<h3>Owned Items</h3>
|
||||
<ol class="actor-items">
|
||||
{{#each actor.items as |item id|}}
|
||||
|
|
|
|||
|
|
@ -1,27 +1,31 @@
|
|||
<form class="{{cssClass}}" autocomplete="off">
|
||||
<header class="sheet-header">
|
||||
<img src="{{item.img}}" data-edit="img" title="{{item.name}}" height="64" width="64"/>
|
||||
<h1><input name="name" type="text" value="{{item.name}}" placeholder="Name"/></h1>
|
||||
</header>
|
||||
<div class="sheet-content">
|
||||
<table>
|
||||
<tr>
|
||||
<th>{{localize "midgard5.item-quantity"}}</th>
|
||||
<th>{{localize "midgard5.item-value"}}</th>
|
||||
<th>{{localize "midgard5.item-ismagic"}}</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<input name="data.quantity" type="text" value="{{data.quantity}}" data-dtype="Number" />
|
||||
</td>
|
||||
<td>
|
||||
<input name="data.weight" type="text" value="{{data.weight}}" data-dtype="Number" />
|
||||
</td>
|
||||
<td>
|
||||
<input name="data.magic" type="checkbox" {{checked data.magic}} />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
{{editor content=data.description target="data.description" button=true owner=owner editable=editable}}
|
||||
<header class="sheet-header">
|
||||
<img src="{{item.img}}" data-edit="img" title="{{item.name}}" height="64" width="64" />
|
||||
<h1><input name="name" type="text" value="{{item.name}}" placeholder="Name" /></h1>
|
||||
</header>
|
||||
<div class="sheet-content">
|
||||
<table>
|
||||
<tr>
|
||||
<th>{{localize "midgard5.item-quantity"}}</th>
|
||||
<th>{{localize "midgard5.item-value"}}</th>
|
||||
<th>{{localize "midgard5.item-onbody"}}</th>
|
||||
<th>{{localize "midgard5.item-ismagic"}}</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<input name="data.quantity" type="text" value="{{data.quantity}}" data-dtype="Number" />
|
||||
</td>
|
||||
<td>
|
||||
<input name="data.value" type="text" value="{{data.value}}" data-dtype="Number" />
|
||||
</td>
|
||||
<td>
|
||||
<input name="data.onbody" type="checkbox" {{checked data.onbody}} />
|
||||
</td>
|
||||
<td>
|
||||
<input name="data.magic" type="checkbox" {{checked data.magic}} />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
{{editor content=data.description target="data.description" button=true owner=owner editable=editable}}
|
||||
</div>
|
||||
</form>
|
||||
Loading…
Reference in New Issue