b7a0e5d034
Les herbes et les ingrédients peuvent être cherchées/tirées
21 lines
568 B
HTML
21 lines
568 B
HTML
<div>
|
|
<img class="chat-icon" src="{{img}}" alt="{{typeName}}" />
|
|
<h4>Table aléatoire: {{typeName}}</h4>
|
|
{{#with (lookup table 0) as |row|}}
|
|
<div>
|
|
{{row.document.pack}}
|
|
</div>
|
|
{{/with}}
|
|
<br>
|
|
</div>
|
|
<div>
|
|
<ul class="flexcol item-list alterne-list">
|
|
{{#each table as |row|}}
|
|
<li class="select-target item list-item" >
|
|
<span>{{row.min}}{{#unless (eq row.min row.max)}}-{{row.max}}{{/unless}} : </span>
|
|
<span>{{linkCompendium row.document.pack row.document.id row.document.name}}</span>
|
|
</li>
|
|
{{/each}}
|
|
</ul>
|
|
</div>
|