-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
291 lines (258 loc) · 9.73 KB
/
about.html
File metadata and controls
291 lines (258 loc) · 9.73 KB
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About — HyClans Plugin</title>
<link rel="icon" type="image/png" href="images/logo.png" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Unbounded:wght@300;400;700&family=Roboto+Condensed:wght@300;400;700&display=swap" rel="stylesheet">
<style>
* { margin:0; padding:0; box-sizing:border-box; }
body {
font-family: 'Roboto Condensed', sans-serif;
background:#0b1220;
color:#e6e6e6;
overflow-x:hidden;
}
a {
color: #ffffff;
text-decoration: none;
position: relative;
transition: color 0.2s ease;
font-weight: 500;
}
a::after {
content: "";
position: absolute;
width: 0;
height: 2px;
left: 0;
bottom: -2px;
background: #6de0ff;
transition: width 0.3s ease;
}
a:hover { color: #3db8ff; }
a:hover::after { width: 100%; }
nav {
display:flex; justify-content:space-between; align-items:center;
padding:1.2rem 3rem; position:fixed; width:100%; top:0;
z-index:1000; backdrop-filter:blur(10px);
background:rgba(5,10,20,0.4);
border-bottom:1px solid rgba(255,255,255,0.05);
}
.logo { display:flex; align-items:center; gap:12px; font-family:'Unbounded'; font-size:1.4rem; color:#c9d3ff; }
.logo-nav { width:58px; height:58px; background:url('images/logo.png') center/cover no-repeat; border-radius:8px; }
.nav-links { display:flex; gap:2rem; }
header { height:90px; }
.section {
padding:5rem 3rem; max-width:1100px; margin:0 auto;
}
.section h2 {
font-family:'Unbounded'; font-size:2.4rem; margin-bottom:1.4rem;
color:rgba(230,235,255,0.9);
}
.section p {
font-size:1.15rem; color:rgba(210,220,245,0.9); line-height:1.6;
}
/* ---------- TABS SYSTEM ---------- */
.tabs {
margin-top:3rem;
display:flex;
gap:1rem;
border-bottom:1px solid rgba(255,255,255,0.1);
padding-bottom:1rem;
}
.tab {
padding:0.6rem 1.2rem;
cursor:pointer;
font-weight:600;
border-radius:8px;
transition:0.2s ease;
background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.08);
}
.tab:hover {
background:rgba(109,224,255,0.12);
border-color:rgba(109,224,255,0.25);
}
.tab.active {
background:linear-gradient(90deg,#3db8ff,#6ef7ff);
color:#000;
border-color:transparent;
}
.tab-content { display:none; margin-top:2rem; animation:fadeIn 0.4s ease; }
.tab-content.active { display:block; }
@keyframes fadeIn {
from { opacity:0; transform:translateY(10px); }
to { opacity:1; transform:translateY(0); }
}
/* ---------- TEAM TABLE ---------- */
table {
width:100%;
margin-top:2rem;
border-collapse:collapse;
background:rgba(255,255,255,0.03);
border:1px solid rgba(255,255,255,0.05);
border-radius:10px;
overflow:hidden;
}
th, td {
padding:1rem 1.2rem;
text-align:left;
border-bottom:1px solid rgba(255,255,255,0.05);
}
th {
background:rgba(255,255,255,0.06);
font-weight:700;
font-family:'Unbounded';
}
tr:hover {
background:rgba(109,224,255,0.08);
}
</style>
</head>
<body>
<header>
<nav>
<div class="logo">
<div class="logo-nav"></div>
HYCLANS
</div>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="downloads.html">Downloads</a>
<a href="wiki.html">Wiki</a>
<a href="https://discord.gg/EDaYFTkB66">Discord</a>
</div>
</nav>
</header>
<!-- MAIN SECTION -->
<section class="section">
<h2>Plugin Features</h2>
<p>Explore core systems that power the HyClans plugin experience.</p>
<!-- TABS -->
<div class="tabs">
<div class="tab active" data-tab="essence">Essence</div>
<div class="tab" data-tab="world">World</div>
<div class="tab" data-tab="clans">Clans</div>
<div class="tab" data-tab="combat">Combat</div>
<div class="tab" data-tab="items">Items</div>
</div>
<!-- TAB CONTENT -->
<div class="tab-content" id="world">
<h3>World of HyClans</h3>
<p>
To be decided.
</p>
</div>
<div class="tab-content active" id="essence">
<h3>The Essence Economy</h3>
<p>
Essence is the spiritual lifeblood of HyClans — a shimmering energy that flows through every creature,
structure, and shard of magic in the realm. It fuels progression, empowers clans, and acts as the core
currency of the world. When you fight, explore, craft, or conquer, you shape your destiny through Essence.
</p>
<p>
Inspired by soul-based systems like <em>Dark Souls</em>, Essence carries risk, reward, and weight.
Every player must decide how boldly they adventure… because every death has a cost.
</p>
<h4 style="margin-top:1.5rem;">How Essence Is Earned</h4>
<ul style="margin-left:1.4rem; line-height:1.7;">
<li><strong>Defeating mobs</strong> — the stronger the enemy, the more Essence it releases.</li>
<li><strong>Slaying players</strong> — claiming their stored Essence in battle.</li>
<li><strong>Exploring dangerous regions</strong> — corrupted zones spill raw Essence into the air.</li>
<li><strong>Gathering rare resources</strong> — crystals, relics, and ancient minerals infused with power.</li>
<li><strong>Completing clan missions</strong> — raids, escorts, defenses, and dungeon assaults.</li>
</ul>
<h4 style="margin-top:1.5rem;">Death, Loss & Recovery</h4>
<p>
When a player dies, they drop an <strong>Essence Fragment</strong> at the place they fell.
</p>
<ul style="margin-left:1.4rem; line-height:1.7;">
<li>Your stored Essence becomes locked inside the Fragment.</li>
<li>You must return to reclaim it — alive.</li>
<li>If you die again before recovering it, the Essence is <strong>lost forever</strong>.</li>
<li>Enemy players can destroy or steal certain types of Fragments depending on zone rules.</li>
</ul>
<h4 style="margin-top:1.5rem;">Types of Essence</h4>
<ul style="margin-left:1.4rem; line-height:1.7;">
<li><strong>Raw Essence</strong> — dropped by mobs; common but essential.</li>
<li><strong>Refined Essence</strong> — crafted or processed at clan structures; required for mid-tier gear.</li>
<li><strong>Pure Essence</strong> — rare energy found in dungeons, bosses, and world events.</li>
<li><strong>Corrupted Essence</strong> — unstable, powerful, and often dangerous to use without purification.</li>
</ul>
<h4 style="margin-top:1.5rem;">What Essence Is Used For</h4>
<ul style="margin-left:1.4rem; line-height:1.7;">
<li><strong>Upgrading equipment</strong> — improve weapons, armor, tools, and magical items.</li>
<li><strong>Clan base advancement</strong> — strengthen walls, unlock utilities, or build new structures.</li>
<li><strong>Personal stat progression</strong> — increase stamina, power, durability, or magic-related attributes.</li>
<li><strong>Crafting & enchanting</strong> — infuse items with Essence-based effects or abilities.</li>
<li><strong>Fast travel & rituals</strong> — certain ancient waystones require Essence to activate.</li>
</ul>
<h4 style="margin-top:1.5rem;">A Living, Risk-Reward Economy</h4>
<p>
Essence ties together every system in HyClans — combat, exploration, crafting, PvP, and clan progression.
Those who learn to gather it, protect it, and use it wisely will rise above all others.
</p>
<p>
But fortune favors the bold — and punishes the careless.
</p>
</div>
<div class="tab-content" id="clans">
<h3>Clan System</h3>
<p>
To be decided.
</p>
</div>
<div class="tab-content" id="combat">
<h3>Combat</h3>
<p>
To be decided.
</p>
</div>
<div class="tab-content" id="items">
<h3>Items & Gear</h3>
<p>
To be decided.
</p>
</div>
</section>
<!-- TEAM TABLE -->
<section class="section">
<h2>Meet the Team</h2>
<table>
<tr>
<th>Name</th>
<th>Role</th>
<th>Description</th>
</tr>
<tr>
<td>Scape</td>
<td>Founder / Owner</td>
<td>Leads development, direction, long-term project vision.</td>
</tr>
<tr>
<td>Grayvox</td>
<td>Owner</td>
<td>Designs core gameplay systems, backend, and custom server mechanics.</td>
</tr>
</table>
</section>
<script>
// Tab Functionality
const tabs = document.querySelectorAll(".tab");
const contents = document.querySelectorAll(".tab-content");
tabs.forEach(tab => {
tab.addEventListener("click", () => {
tabs.forEach(t => t.classList.remove("active"));
contents.forEach(c => c.classList.remove("active"));
tab.classList.add("active");
document.getElementById(tab.dataset.tab).classList.add("active");
});
});
</script>
</body>
</html>