-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (83 loc) · 3.5 KB
/
index.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Own cheat sheet</title>
<link rel="stylesheet" href="style.css" type="text/css" >
</head>
<body>
<header>
<h1>Minecraft enchanting and potion recipes</h1>
</header>
<section>
<h3>Best armour enchants</h3>
<table>
<thead>
<tr>
<td>Armour piece</td>
<td> Available options </td>
<td>Picture</td>
<td>Enchantments</td>
<td>Extra uses</td>
</tr>
</thead>
<tbody>
<tr>
<td rowspan="2">Helmet</td>
<td>Netherite</td>
<td><img src="neth_helm.png" alt="netherite helmet" /></td>
<td><p>Protection 4, Unbreaking 3, Mending, Aqua affinity, respiration, thorns3</p></td>
<td></td>
</tr>
<tr>
<td>Turtle helmet</td>
<td><img src="turt_helm.png" alt="turtle helmet" /></td>
<td><p>Protection 4, Unbreaking 3, Mending, Aqua affinity, respiration, thorns3</p></td>
<td>Gives water breathing for 10 seconds everytime we enter water for the cost of half an armour bar</td>
</tr>
<tr>
<td rowspan="2">ChestPiece</td>
<td>Netherite</td>
<td><img src="neth_chest.png" alt="netherite chestplate" /></td>
<td><p>Protection 4, Unbreaking 3, Mending, thorns3</p></td>
<td></td>
</tr>
<tr>
<td>Elytra</td>
<td><img src="Elytra.png" alt="Elytra" /></td>
<td><p>Unbreaking 3, Mending</p></td>
<td>Ability to glide and fly with rockets</td>
</tr>
<tr>
<td rowspan="2">leggings</td>
<td>Netherite</td>
<td><img src="neth_legs.png" alt="netherite leggings" /></td>
<td><p>Protection 4, Unbreaking 3, Mending, thorns3</p></td>
<td></td>
</tr>
<tr>
<td>Golden leggings</td>
<td><img src="gold_legs.png" alt="golden leggings" /></td>
<td><p>Protection 4, Unbreaking 3, Mending, thorns3</p></td>
<td>protection from piglins when in nether</td>
</tr>
<tr>
<td rowspan="2">Boots</td>
<td>Netherite</td>
<td><img src="neth_legs.png" alt="netherite leggings" /></td>
<td><p>Protection 4, Unbreaking 3, Mending, thorns3, Depth strider 3, Feather falling 4, Soul speed 3</p></td>
<td></td>
</tr>
<tr>
<td>Leather boots</td>
<td><img src="lether_boots.png" alt="leather boots" /></td>
<td><p>Protection 4, Unbreaking 3, Mending, thorns3, Depth strider 3, Feather falling 4, Soul speed 3</p></td>
<td>Light boots to walk on snow</td>
</tr>
</tbody>
</table>
</section>
</body>
</html>