-
Notifications
You must be signed in to change notification settings - Fork 2
/
items.html
31 lines (30 loc) · 1.35 KB
/
items.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
---
layout: page
title: Arena Of Evolution Items
menu: Items
---
<p>Items are equipments that can be equipped on your chess pieces to improve their performance on the board. You can find them by defeated Creeps. Creeps are neutral hostile that appear at round 1-3, 10 and every 5 rounds after then. The odds of receiving higher tier items is better the stronger the enemy. There are 5 tiers of item rarity, from common to legendary.</p>
<p>You can equip the item on one of your heroes at any stage of the game, but it only takes affect until the next round. Once item is equipped, they can't be unequipped. However, you can get the item back by selling the unit wearing it.</p>
{% assign items = site.data.items %}
<div class="responsive-table">
<table>
<thead>
<tr>
<th>Item</th>
<th>Name</th>
<th>Value</th>
<th>Type</th>
</tr>
</thead>
<tbody>
{% for item in items %}
<tr>
<td><img class="item item-{{ item.Type | downcase }}" src="/assets/img/items/{{ item.Name }}.png" /></td>
<th>{{ item.Name }}</th>
<td>{{ item.Value | newline_to_br }}</td>
<td>{{ item.Type }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>