diff --git a/system/templates/actors/npc/narrative.html b/system/templates/actors/npc/narrative.html
index e96e781..4777fd3 100644
--- a/system/templates/actors/npc/narrative.html
+++ b/system/templates/actors/npc/narrative.html
@@ -27,4 +27,52 @@
{{/ifCond}}
{{/each}}
+
+{{!-- item-pattern --}}
+
+
+
+ {{#each actor.items as |pattern id|}}
+ {{#ifCond pattern.data.type '==' 'item_pattern'}}
+ {{> 'systems/l5r5e/templates/items/item-pattern/item-pattern-entry.html' pattern=pattern id=id editable=../options.editable}}
+ {{/ifCond}}
+ {{/each}}
+
+
+{{!-- signature-scroll --}}
+
+
+
+ {{#each actor.items as |scroll id|}}
+ {{#ifCond scroll.data.type '==' 'signature_scroll'}}
+ {{> 'systems/l5r5e/templates/items/signature-scroll/signature-scroll-entry.html' scroll=scroll id=id editable=../options.editable}}
+ {{/ifCond}}
+ {{/each}}
+
+
+{{!-- bonds --}}
+
+
+
+ {{#each actor.items as |bond id|}}
+ {{#ifCond bond.data.type '==' 'bond'}}
+ {{> 'systems/l5r5e/templates/items/bond/bond-entry.html' bond=bond id=id editable=../options.editable}}
+ {{/ifCond}}
+ {{/each}}
+
\ No newline at end of file
diff --git a/system/templates/items/advancement/advancement-entry.html b/system/templates/items/advancement/advancement-entry.html
index dbd521e..f5bd1cb 100644
--- a/system/templates/items/advancement/advancement-entry.html
+++ b/system/templates/items/advancement/advancement-entry.html
@@ -1,10 +1,9 @@
- dsfj,sdifjsjsdiojidfj
diff --git a/system/templates/items/advancement/advancements.html b/system/templates/items/advancement/advancements.html
deleted file mode 100644
index a32d27a..0000000
--- a/system/templates/items/advancement/advancements.html
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
- {{#each actor.items as |item id|}}
- {{#ifCond item.type '==' 'advancement'}}
- {{> 'systems/l5r5e/templates/items/advancement/advancement-entry.html' advancement=item id=id}}
- {{/ifCond}}
- {{/each}}
-
-
\ No newline at end of file
diff --git a/system/templates/items/bond/bond-entry.html b/system/templates/items/bond/bond-entry.html
new file mode 100644
index 0000000..807fe47
--- /dev/null
+++ b/system/templates/items/bond/bond-entry.html
@@ -0,0 +1,18 @@
+
+
+ {{#if bond.data.data.bond_type}}
+
+ {{bond.data.data.bond_type}} {{bond.data.data.rank}}
+
+ {{/if}}
+ {{#if bond.data.data.description}}
+ {{{bond.data.data.description}}}
+ {{/if}}
+
\ No newline at end of file
diff --git a/system/templates/items/bond/bond-sheet.html b/system/templates/items/bond/bond-sheet.html
new file mode 100644
index 0000000..bfad0e0
--- /dev/null
+++ b/system/templates/items/bond/bond-sheet.html
@@ -0,0 +1,33 @@
+
\ No newline at end of file
diff --git a/system/templates/items/item-pattern/item-pattern-entry.html b/system/templates/items/item-pattern/item-pattern-entry.html
new file mode 100644
index 0000000..4f3cda7
--- /dev/null
+++ b/system/templates/items/item-pattern/item-pattern-entry.html
@@ -0,0 +1,13 @@
+
+
+ {{#if pattern.data.data.description}}
+ {{{pattern.data.data.description}}}
+ {{/if}}
+
\ No newline at end of file
diff --git a/system/templates/items/item-pattern/item-pattern-sheet.html b/system/templates/items/item-pattern/item-pattern-sheet.html
new file mode 100644
index 0000000..7647c1b
--- /dev/null
+++ b/system/templates/items/item-pattern/item-pattern-sheet.html
@@ -0,0 +1,33 @@
+
\ No newline at end of file
diff --git a/system/templates/items/peculiarity/peculiarities.html b/system/templates/items/peculiarity/peculiarities.html
deleted file mode 100644
index 8abe718..0000000
--- a/system/templates/items/peculiarity/peculiarities.html
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
- {{#each actor.items as |item id|}}
- {{#ifCond item.type '==' 'peculiarity'}}
- {{> 'systems/l5r5e/templates/items/peculiarity/peculiarity-entry.html' peculiarity=item id=id}}
- {{/ifCond}}
- {{/each}}
-
-
\ No newline at end of file
diff --git a/system/templates/items/signature-scroll/signature-scroll-entry.html b/system/templates/items/signature-scroll/signature-scroll-entry.html
new file mode 100644
index 0000000..e61e8c0
--- /dev/null
+++ b/system/templates/items/signature-scroll/signature-scroll-entry.html
@@ -0,0 +1,13 @@
+
+
+ {{#if scroll.data.data.description}}
+ {{{scroll.data.data.description}}}
+ {{/if}}
+
\ No newline at end of file
diff --git a/system/templates/items/signature-scroll/signature-scroll-sheet.html b/system/templates/items/signature-scroll/signature-scroll-sheet.html
new file mode 100644
index 0000000..523e7fd
--- /dev/null
+++ b/system/templates/items/signature-scroll/signature-scroll-sheet.html
@@ -0,0 +1,29 @@
+
\ No newline at end of file
diff --git a/system/templates/items/title/title-entry.html b/system/templates/items/title/title-entry.html
new file mode 100644
index 0000000..20ac86f
--- /dev/null
+++ b/system/templates/items/title/title-entry.html
@@ -0,0 +1,13 @@
+
+
+ {{#if title.data.description}}
+ {{{title.data.description}}}
+ {{/if}}
+
\ No newline at end of file
diff --git a/system/templates/items/title/title-sheet.html b/system/templates/items/title/title-sheet.html
new file mode 100644
index 0000000..d0bae96
--- /dev/null
+++ b/system/templates/items/title/title-sheet.html
@@ -0,0 +1,34 @@
+
\ No newline at end of file