nereare_grimoire 1.13.10 → 1.13.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_layouts/armor.html +1 -1
- data/_layouts/item.html +1 -1
- data/_layouts/settlement.html +5 -3
- data/_layouts/weapon.html +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c8616a5141026e1d3ef6da60dbbc2f2158d6ba8b09ac1ab6d4b8d15282e2eea4
|
|
4
|
+
data.tar.gz: 1546036eab9b140f4119924b3c6909be6658b633b0a924cc5964cd2e66a937be
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 93a2a81f39f71d7e0790fa60df223b4b17dff1b6f2b07a87c70f781c44c0f030ee6734ea6ace4cd4abe6da913770b567525527d8e204952b8c3d543a626322ec
|
|
7
|
+
data.tar.gz: 962576f4e574e6f2c06922745eed45cafe5aed3d4b1a0adc4011eaa7f6184ef34b8391a741a7f4320d77001062b121529ae86fd62afca7234e59f1562e27c2c2
|
data/_layouts/armor.html
CHANGED
|
@@ -15,7 +15,7 @@ layout: default
|
|
|
15
15
|
<h2>{{ page.item.name | default: 'Armor' }}</h2>
|
|
16
16
|
<p>{{ page.item.type | default: 'Light' }} Armor{% if page.item.rarity %}, {{ page.item.rarity }}{% endif %}{% if page.item.attunement %} (Requires attunement by {{ page.item.attunement }}){% endif %}</p>
|
|
17
17
|
<p><strong>Weight:</strong> {{ page.item.weight }}</p>
|
|
18
|
-
<p><strong>Base Value:</strong> {{ page.item.value }}gp</p>
|
|
18
|
+
<p><strong>Base Value:</strong> {{ page.item.value | pretty_number }}gp</p>
|
|
19
19
|
<p><strong>Armor Class:</strong> {{ page.item.ac.base }}{% if page.item.ac.dex > 0 %} + Dex Mod. (Max {{ page.item.ac.dex }}){% endif %}</p>
|
|
20
20
|
{% if page.item.str %}
|
|
21
21
|
<p><strong>Min Strength</strong> {{ page.item.str }}</p>
|
data/_layouts/item.html
CHANGED
|
@@ -15,7 +15,7 @@ layout: default
|
|
|
15
15
|
<h2>{{ page.item.name | default: 'Item' }}</h2>
|
|
16
16
|
<p>{{ page.item.type | default: 'Gadget' }}{% if page.item.rarity %}, {{ page.item.rarity }}{% endif %}{% if page.item.attunement %} (Requires attunement by {{ page.item.attunement }}){% endif %}</p>
|
|
17
17
|
<p><strong>Weight:</strong> {{ page.item.weight }}</p>
|
|
18
|
-
<p><strong>Base Value:</strong> {{ page.item.value }}gp</p>
|
|
18
|
+
<p><strong>Base Value:</strong> {{ page.item.value | pretty_number }}gp</p>
|
|
19
19
|
{% if page.item.charges %}
|
|
20
20
|
<p><strong>Charges:</strong> {{ page.item.charges.number }} (Regains {{ page.item.charges.regain }} {{ page.item.charges.reset }})</p>
|
|
21
21
|
{% endif %}
|
data/_layouts/settlement.html
CHANGED
|
@@ -22,7 +22,9 @@ layout: default
|
|
|
22
22
|
<div class="building">
|
|
23
23
|
<h5>{{ shop.name }}</h5>
|
|
24
24
|
<p class="type">{{ shop.type }}</p>
|
|
25
|
-
|
|
25
|
+
{% if shop.owner %}
|
|
26
|
+
<p><strong>Owner:</strong> {{ shop.owner.name }}, {{ shop.owner.gender }} {{ shop.owner.race }}, {% if shop.owner.level %}{{ shop.owner.level | ordinal }}-level{% endif %} {{ shop.owner.class }}</p>
|
|
27
|
+
{% endif %}
|
|
26
28
|
<p><strong>Location:</strong> {{ shop.location }}</p>
|
|
27
29
|
<p><strong>Description:</strong> {{ shop.desc }}</p>
|
|
28
30
|
<h6>Transactions</h6>
|
|
@@ -59,7 +61,7 @@ layout: default
|
|
|
59
61
|
<h6>Inhabitants</h6>
|
|
60
62
|
<ul>
|
|
61
63
|
{% for person in house.people %}
|
|
62
|
-
<li><strong>{{ person.name }}:</strong> {{ person.gender }} {{ person.race }}, {{ person.level | ordinal }}-level {{ person.class }}{% if person.owner %}, <strong>owner</strong>{% endif %}.</li>
|
|
64
|
+
<li><strong>{{ person.name }}:</strong> {{ person.gender }} {{ person.race }}, {% if person.level %}{{ person.level | ordinal }}-level{% endif %} {{ person.class }}{% if person.owner %}, <strong>owner</strong>{% endif %}.</li>
|
|
63
65
|
{% endfor %}
|
|
64
66
|
</ul>
|
|
65
67
|
{% assign: is = house.items | join: '' %}
|
|
@@ -104,7 +106,7 @@ layout: default
|
|
|
104
106
|
<h6>Authorities</h6>
|
|
105
107
|
<ul>
|
|
106
108
|
{% for authority in page.settlement.authorities %}
|
|
107
|
-
<li><strong>{{ authority.name }}:</strong> {{ authority.title }}
|
|
109
|
+
<li><strong>{{ authority.name }}:</strong> {{ authority.title }} ({% if authority.level %}{{ authority.level | ordinal }}-level {% endif %}{{ authority.class }})</li>
|
|
108
110
|
{% endfor %}
|
|
109
111
|
</ul>
|
|
110
112
|
{% endif %}
|
data/_layouts/weapon.html
CHANGED
|
@@ -15,7 +15,7 @@ layout: default
|
|
|
15
15
|
<h2>{{ page.item.name | default: 'Weapon' }}</h2>
|
|
16
16
|
<p>{{ page.item.type | default: 'Melee' }}{% if page.item.rarity %}, {{ page.item.rarity }}{% endif %}{% if page.item.attunement %} (Requires attunement by {{ page.item.attunement }}){% endif %}</p>
|
|
17
17
|
<p><strong>Weight:</strong> {{ page.item.weight }}</p>
|
|
18
|
-
<p><strong>Base Value:</strong> {{ page.item.value }}gp</p>
|
|
18
|
+
<p><strong>Base Value:</strong> {{ page.item.value | pretty_number }}gp</p>
|
|
19
19
|
{% assing: damages = page.item.damage | join: ' • ' %}
|
|
20
20
|
<p><strong>Damage:</strong> {{ damages }}</p>
|
|
21
21
|
{% if page.item.charges %}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: nereare_grimoire
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.13.
|
|
4
|
+
version: 1.13.13
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Igor Padoim
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-09-
|
|
11
|
+
date: 2020-09-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: html-proofer
|