Vereinfachter-NPC/Kreaturen-Bogen (#107)
Ich habe mal den ersten Entwurf eines NPC Bogens fertiggestellt. Ist jetzt ein eigener Actor Type geworden und nicht nur ein alternativer Char Bogen: Einfach beim Erstellen eines neuen Actors NPC wählen. Co-authored-by: Ender <harald@drueppels.de> Co-authored-by: LeFrique <lefrique@live.de> Co-authored-by: Byroks <byroks@gmail.com> Reviewed-on: #107 Reviewed-by: Le-Frique <lefrique@live.de>
This commit was merged in pull request #107.
This commit is contained in:
@@ -234,7 +234,7 @@
|
||||
<th class="title center">{{localize "midgard5.capacity"}}</th>
|
||||
<th class="title center"><img src="/systems/midgard5/assets/icons/icon/battle-gear.svg" class="table-icon"></th>
|
||||
<th class="title"><img src="/icons/svg/d20.svg" class="table-icon"></th>
|
||||
<td><a class="title add-container"><i class="fa-regular fa-plus"></i></a></th>
|
||||
<th><a class="title add-container"><i class="fa-regular fa-plus"></i></a></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="items-list">
|
||||
@@ -289,7 +289,7 @@
|
||||
<th class="title center">{{localize "midgard5.item-weight"}}</th>
|
||||
<th class="title"><img src="/systems/midgard5/assets/icons/icon/battle-gear.svg" class="table-icon"></th>
|
||||
<th class="title"><img src="/icons/svg/d20.svg" class="table-icon"></th></th>
|
||||
<td><a class="title add-item"><i class="fa-regular fa-plus"></i></a></th>
|
||||
<th><a class="title add-item"><i class="fa-regular fa-plus"></i></a></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="items-list">
|
||||
@@ -345,7 +345,7 @@
|
||||
<th class="title center">{{localize "midgard5.item-value"}}</th>
|
||||
<th class="title center">{{localize "midgard5.item-weight"}}</th>
|
||||
<th class="title"><img src="/systems/midgard5/assets/icons/icon/battle-gear.svg" class="table-icon"></th>
|
||||
<td><a class="title add-weapon"><i class="fa-regular fa-plus"></i></a></th>
|
||||
<th><a class="title add-weapon"><i class="fa-regular fa-plus"></i></a></th>
|
||||
|
||||
</tr>
|
||||
</thead>
|
||||
@@ -392,7 +392,7 @@
|
||||
<th class="title center">{{localize "midgard5.item-value"}}</th>
|
||||
<th class="title center">{{localize "midgard5.item-weight"}}</th>
|
||||
<th class="title"><img src="/systems/midgard5/assets/icons/icon/battle-gear.svg" class="table-icon"></th>
|
||||
<td><a class="title add-defensiveWeapon"><i class="fa-regular fa-plus"></i></a></th>
|
||||
<th><a class="title add-defensiveWeapon"><i class="fa-regular fa-plus"></i></a></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="items-list">
|
||||
@@ -438,7 +438,7 @@
|
||||
<th class="title center">{{localize "midgard5.item-value"}}</th>
|
||||
<th class="title center">{{localize "midgard5.item-weight"}}</th>
|
||||
<th class="title"><img src="/systems/midgard5/assets/icons/icon/battle-gear.svg" class="table-icon"></th>
|
||||
<td><a class="title add-armor"><i class="fa-regular fa-plus"></i></a></th>
|
||||
<th><a class="title add-armor"><i class="fa-regular fa-plus"></i></a></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="items-list">
|
||||
|
||||
@@ -49,18 +49,6 @@
|
||||
</table>
|
||||
|
||||
<table style="width: 100%;">
|
||||
<tr>
|
||||
<td class="attribute">{{localize "midgard5.actor-st"}}</td>
|
||||
<td class="attribute">{{localize "midgard5.actor-gs"}}</td>
|
||||
<td class="attribute">{{localize "midgard5.actor-gw"}}</td>
|
||||
<td class="attribute">{{localize "midgard5.actor-ko"}}</td>
|
||||
<td class="attribute">{{localize "midgard5.actor-in"}}</td>
|
||||
<td class="attribute">{{localize "midgard5.actor-zt"}}</td>
|
||||
<td class="attribute">{{localize "midgard5.actor-au"}}</td>
|
||||
<td class="attribute">{{localize "midgard5.actor-pa"}}</td>
|
||||
<td class="attribute">{{localize "midgard5.actor-wk"}}</td>
|
||||
<td class="attribute">{{localize "midgard5.actor-git"}}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="attribute-value roll-attribute-button" data-attribute="st" data-value="{{data.calc.attributes.st.value}}">{{data.calc.attributes.st.value}}</td>
|
||||
<td class="attribute-value roll-attribute-button" data-attribute="gs" data-value="{{data.calc.attributes.gs.value}}">{{data.calc.attributes.gs.value}}</td>
|
||||
@@ -73,6 +61,18 @@
|
||||
<td class="attribute-value roll-attribute-button" data-attribute="wk" data-value="{{data.calc.attributes.wk.value}}">{{data.calc.attributes.wk.value}}</td>
|
||||
<td class="attribute-value roll-attribute-button" data-attribute="git" data-value="{{data.calc.stats.poisonResistance.value}}">{{data.calc.stats.poisonResistance.value}}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="attribute">{{localize "midgard5.actor-st"}}</td>
|
||||
<td class="attribute">{{localize "midgard5.actor-gs"}}</td>
|
||||
<td class="attribute">{{localize "midgard5.actor-gw"}}</td>
|
||||
<td class="attribute">{{localize "midgard5.actor-ko"}}</td>
|
||||
<td class="attribute">{{localize "midgard5.actor-in"}}</td>
|
||||
<td class="attribute">{{localize "midgard5.actor-zt"}}</td>
|
||||
<td class="attribute">{{localize "midgard5.actor-au"}}</td>
|
||||
<td class="attribute">{{localize "midgard5.actor-pa"}}</td>
|
||||
<td class="attribute">{{localize "midgard5.actor-wk"}}</td>
|
||||
<td class="attribute">{{localize "midgard5.actor-git"}}</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -77,6 +77,7 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{#if (eq data.types.actor)}}
|
||||
<div class="flexcolumn-1">
|
||||
<div class="flexpart">
|
||||
<div class="flexpart-header">{{localize "midgard5.pp"}} {{localize "midgard5.spells"}}</div>
|
||||
@@ -103,4 +104,5 @@
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
{{/if}}
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user