-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfo.html
99 lines (82 loc) · 4.48 KB
/
info.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
93
94
95
96
97
98
99
<!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>Server Information</title>
<link href="assets/css/default.css" rel="stylesheet">
<link href="assets/css/info.css" rel="stylesheet">
<link rel="icon"
type="image/png"
href="assets/img/icon.png"
>
</head>
<body>
<!-- Container for my header -->
<div id="headerContainer">
<a id="logo" href="index.html"><img src="assets/img/TerpCraft.png" alt="This image is not available for some reason." title="TerpCraft Logo"></a>
<table id="headerTable">
<tr>
<td class="giantText boldText TerpCraft"> TerpCraft</td>
</tr>
<tr>
<td class="bigText"> Serving the <span class="DC">D</span><span class="Maryland">M</span><span class="Virginia">V</span> since 2015</td>
</tr>
</table>
<div class="navButtons">
<a class="omegaText" href="dynamicMap.html"> Dynamic Map </a>
</div>
<div class="navButtons">
<a class="omegaText" href="rules.html"> Rules </a>
</div>
<div class="navButtons">
<a class="omegaText" href="info.html"> Info </a>
</div>
<div id="endButton">
<a class="omegaText" href="about.html"> About Us </a>
</div>
</div>
<!-- Container for the image at the top of the page -->
<img class="topPicture" src="assets/img/UNArena.png" alt="This image is not available for some reason." title="A Tree, South of Ostverland">
<main>
<div id="contentBackground">
<div id="content">
<div class="newLine sectionHeading stickyHeading">
<h1>Server Information</h1>
</div>
<p class="newLine bigText textAligner"> This server is equipped with a large number of datapacks. Each datapack is listed and described below. Important datapacks are bolded. </p>
<dl class="newLine bigText lists">
<dt> Apiarist Suit </dt>
<dd> Wearing chainmail armor makes you invulnerable to bees and prevents you from aggroing them </dd>
<dt> Beehive_Lore </dt>
<dd> Bee nests and beehives have the number of bees and the honey level written in an item tooltip. Scroll over the item in your inventory to see these values. </dd>
<dt><strong>Disenchanting</strong></dt>
<dd>Dropping an enchanted item together with a book and quill on top of an anvil removes the enchantment from the item and turns the book and quill into an enchantment book with those enchantments on it.</dd>
<dt><strong>Effective Netherite Armour</strong></dt>
<dd>Wearing a full set of Netherite Armor makes you fireproof.</dd>
<dt>Shulker Shells</dt>
<dd>Shulkers always drop two shells.</dd>
<dt>Shulker Respawning</dt>
<dd>Shulkers respawn inside end cities</dd>
<dt>Silk_Touch_Amethyst</dt>
<dd>You can use silk touch tools to mine Budding Amethyst blocks. The block will drop in item form.</dd>
<dt><strong>Custom Crafting</strong></dt>
<dd>A number of different custom item recipes have been added through this datapack
<ul>
<li>Horse Armor (all types)</li>
<li> Red dye (from beetroot) </li>
<li> Saddles (from leather and tripwire hooks) </li>
<li> Tridents (from prismarine crystals and shards) </li>
</ul>
</dd>
<dt><strong>Villager Leashes</strong></dt>
<dd>You can use leads on villagers.</dd>
<dt><strong>Cuttable-wood</strong></dt>
<dd>You can use a stonecutter to cut wood (it saves resources).</dd>
</dl>
</div>
</div>
</main>
</body>
</html>