-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchangelog.html
More file actions
680 lines (631 loc) Β· 38.2 KB
/
Copy pathchangelog.html
File metadata and controls
680 lines (631 loc) Β· 38.2 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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AlphaMC - Changelog v1.1</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #201731 0%, #140A25 100%);
color: #fff;
min-height: 100vh;
line-height: 1.6;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
}
.header {
text-align: center;
margin-bottom: 3rem;
padding: 2rem;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.2);
}
.server-name {
font-size: 3rem;
font-weight: bold;
color: #ffffff;
margin-bottom: 0.5rem;
letter-spacing: 2px;
}
.version {
font-size: 1.2rem;
color: #a0a0a0;
margin-bottom: 1rem;
font-weight: 300;
}
.subtitle {
font-size: 1.8rem;
color: #e0e0e0;
margin-bottom: 0.5rem;
}
.section {
background: rgba(255, 255, 255, 0.08);
backdrop-filter: blur(10px);
border-radius: 12px;
padding: 2rem;
margin-bottom: 2rem;
border: 1px solid rgba(255, 255, 255, 0.15);
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.section-title {
font-size: 1.8rem;
margin-bottom: 1.5rem;
color: #ffffff;
border-bottom: 2px solid rgba(255, 255, 255, 0.3);
padding-bottom: 0.5rem;
font-weight: 600;
}
.subsection {
margin-bottom: 2rem;
}
.subsection-title {
font-size: 1.4rem;
color: #e0e0e0;
margin-bottom: 1rem;
font-weight: 500;
}
.feature-list {
list-style: none;
}
.feature-item {
margin-bottom: 1.5rem;
padding: 1.2rem;
background: rgba(255, 255, 255, 0.05);
border-radius: 8px;
border-left: 3px solid #8a9ba8;
}
.feature-title {
font-weight: 600;
color: #ffffff;
font-size: 1.1rem;
margin-bottom: 0.5rem;
}
.feature-description {
color: #d0d0d0;
margin-bottom: 0.5rem;
}
.plugin-name {
color: #a0a0a0;
font-style: italic;
font-size: 0.9rem;
}
.plugin-link {
color: #8a9ba8;
text-decoration: none;
transition: color 0.3s ease;
}
.plugin-link:hover {
color: #ffffff;
text-decoration: underline;
}
.sub-features {
margin-top: 1rem;
padding-left: 1rem;
}
.sub-feature {
margin-bottom: 0.8rem;
color: #c0c0c0;
}
.highlight {
color: #ffffff;
font-weight: 600;
}
.footer {
text-align: center;
margin-top: 3rem;
padding: 1.5rem;
background: rgba(255, 255, 255, 0.05);
border-radius: 12px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.changelog-info {
color: #a0a0a0;
font-size: 0.9rem;
margin-top: 1rem;
}
.keybind-dropdown {
margin-top: 1rem;
}
.keybind-toggle {
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 6px;
padding: 0.8rem 1rem;
color: #ffffff;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: all 0.3s ease;
font-weight: 500;
}
.keybind-toggle:hover {
background: rgba(255, 255, 255, 0.15);
border-color: rgba(255, 255, 255, 0.3);
}
.keybind-arrow {
transition: transform 0.3s ease;
font-size: 1.2rem;
}
.keybind-arrow.open {
transform: rotate(180deg);
}
.keybind-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
background: rgba(0, 0, 0, 0.2);
border-radius: 0 0 6px 6px;
border: 1px solid rgba(255, 255, 255, 0.1);
border-top: none;
}
.keybind-content.open {
max-height: 500px;
padding: 1rem;
}
.keybind-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.5rem 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.keybind-item:last-child {
border-bottom: none;
}
.keybind-action {
color: #e0e0e0;
flex: 1;
}
.keybind-key {
background: rgba(255, 255, 255, 0.1);
padding: 0.3rem 0.6rem;
border-radius: 4px;
font-family: 'Courier New', monospace;
font-weight: bold;
color: #ffffff;
margin-left: 1rem;
min-width: 60px;
text-align: center;
}
.command-item {
padding: 0.5rem 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.command-item:last-child {
border-bottom: none;
}
.command-syntax {
font-family: 'Courier New', monospace;
background: rgba(255, 255, 255, 0.1);
padding: 0.3rem 0.6rem;
border-radius: 4px;
color: #ffffff;
display: inline-block;
margin-bottom: 0.3rem;
}
.command-description {
color: #c0c0c0;
font-size: 0.9rem;
}
@media (max-width: 768px) {
.container {
padding: 1rem;
}
.server-name {
font-size: 2.5rem;
}
.section {
padding: 1.5rem;
}
.section-title {
font-size: 1.5rem;
}
}
</style>
</head>
<body>
<div class="container">
<header class="header">
<h1 class="server-name">AlphaMC</h1>
<div class="version">Changelog v1.1</div>
<h2 class="subtitle">New Horse Features & Adventure Gear - The Detailed Guide</h2>
</header>
<main>
<section class="section">
<h3 class="section-title">π΄ Changelog v1.1 - New Horse Features & Adventure Additions</h3>
<div class="subsection">
<h4 class="subsection-title">π€ Quality of Life & Riding Together</h4>
<ul class="feature-list">
<li class="feature-item">
<div class="feature-title">Ride With a Friend</div>
<div class="feature-description">Team up and travel together! One player can control a horse while another rides as a passenger.</div>
<div class="plugin-name">(<a href="https://modrinth.com/mod/kaffees_dual_ride" class="plugin-link" target="_blank">Kaffee's Dual Ride - click for more</a>)</div>
<div class="keybind-dropdown">
<div class="keybind-toggle" onclick="toggleKeybinds('dual-ride')">
<span>π Commands & Controls</span>
<span class="keybind-arrow" id="dual-ride-arrow">βΌ</span>
</div>
<div class="keybind-content" id="dual-ride-content">
<div class="command-item">
<div class="command-syntax">/dualride enable</div>
<div class="command-description">Activates the dual riding feature for the player</div>
</div>
<div class="command-item">
<div class="command-syntax">/dualride disable</div>
<div class="command-description">Turns off the dual riding feature</div>
</div>
<div class="command-item">
<div class="command-syntax">/dualride reset</div>
<div class="command-description">Resets the dual riding configuration to default settings</div>
</div>
<div style="margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.1);">
<div style="color: #a0a0a0; font-size: 0.9rem;"><strong>How to use:</strong> Simply right-click on a mounted horse to join as a passenger!</div>
</div>
</div>
</div>
</li>
<li class="feature-item">
<div class="feature-title">The Horse Whistle</div>
<div class="feature-description">Never lose your steed again. Craft a whistle to call your last-ridden horse to your side, even from a long distance.</div>
<div class="plugin-name">(<a href="https://modrinth.com/datapack/eugenes-whistle-spur" class="plugin-link" target="_blank">Eugene's Horse Whistle - click for more</a>)</div>
<div class="keybind-dropdown">
<div class="keybind-toggle" onclick="toggleKeybinds('horse-whistle')">
<span>π Crafting & Usage</span>
<span class="keybind-arrow" id="horse-whistle-arrow">βΌ</span>
</div>
<div class="keybind-content" id="horse-whistle-content">
<div style="color: #c0c0c0; margin-bottom: 1rem;">
<strong>Crafting Recipe:</strong><br>
Iron Ingot + Feather = Horse Whistle
</div>
<div class="keybind-item">
<span class="keybind-action">Call Your Horse</span>
<span class="keybind-key">H</span>
</div>
<div style="margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.1);">
<div style="color: #a0a0a0; font-size: 0.9rem;"><strong>Note:</strong> The whistle will summon the last horse you rode to your current location.</div>
</div>
</div>
</div>
</li>
<li class="feature-item">
<div class="feature-title">Your Mounts Teleport With You</div>
<div class="feature-description">Your horse (and other pets) will now teleport with you when you use commands like <span class="highlight">/home</span> or <span class="highlight">/tpa</span>, so they'll never be left behind.</div>
<div class="plugin-name">(<a href="https://modrinth.com/mod/followers-teleport-too" class="plugin-link" target="_blank">Followers Teleport Too - click for more</a>)</div>
<div class="keybind-dropdown">
<div class="keybind-toggle" onclick="toggleKeybinds('teleport-followers')">
<span>π Compatible Commands</span>
<span class="keybind-arrow" id="teleport-followers-arrow">βΌ</span>
</div>
<div class="keybind-content" id="teleport-followers-content">
<div style="color: #c0c0c0; margin-bottom: 1rem;">
<strong>Your pets will automatically teleport with you when using:</strong>
</div>
<div class="command-item">
<div class="command-syntax">/home</div>
<div class="command-description">Teleport to your home location</div>
</div>
<div class="command-item">
<div class="command-syntax">/tpa [player]</div>
<div class="command-description">Teleport to another player</div>
</div>
<div class="command-item">
<div class="command-syntax">/spawn</div>
<div class="command-description">Teleport to spawn location</div>
</div>
<div class="command-item">
<div class="command-syntax">/warp [name]</div>
<div class="command-description">Teleport to a designated warp point</div>
</div>
<div style="margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.1);">
<div style="color: #a0a0a0; font-size: 0.9rem;"><strong>Note:</strong> Works automatically - no additional commands needed!</div>
</div>
</div>
</div>
</li>
<li class="feature-item">
<div class="feature-title">Show Some Love</div>
<div class="feature-description">You can now pet your horse! Just sneak and right-click with an empty hand to give them a friendly pat.</div>
<div class="plugin-name">(<a href="https://modrinth.com/mod/pettable" class="plugin-link" target="_blank">Pettable - click for more</a>)</div>
<div class="keybind-dropdown">
<div class="keybind-toggle" onclick="toggleKeybinds('pettable')">
<span>π Pet Controls</span>
<span class="keybind-arrow" id="pettable-arrow">βΌ</span>
</div>
<div class="keybind-content" id="pettable-content">
<div class="keybind-item">
<span class="keybind-action">Pet Your Horse</span>
<span class="keybind-key">Sneak + Right Click</span>
</div>
<div style="margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.1);">
<div style="color: #a0a0a0; font-size: 0.9rem;"><strong>Requirements:</strong> Empty hand, close to your horse</div>
</div>
</div>
</div>
</li>
</ul>
</div>
<div class="subsection">
<h4 class="subsection-title">βοΈ Mounted Combat & Movement Overhaul</h4>
<ul class="feature-list">
<li class="feature-item">
<div class="feature-title">Full Combat Control</div>
<div class="feature-description">Mounted combat is no longer clunky.</div>
<div class="sub-features">
<div class="sub-feature">β’ You can now <span class="highlight">attack at full speed</span> with your sword or axe while on horseback. (<a href="https://modrinth.com/mod/horse-combat-controls" class="plugin-link" target="_blank">Horse Combat Controls - click for more</a>)</div>
<div class="sub-feature">β’ You can aim your bow or crossbow with a <span class="highlight">free-look camera</span> that isn't locked to the horse's direction. This makes you a truly mobile archer! (<a href="https://modrinth.com/mod/horseman" class="plugin-link" target="_blank">Horseman - click for more</a>)</div>
</div>
<div class="keybind-dropdown">
<div class="keybind-toggle" onclick="toggleKeybinds('combat-controls')">
<span>π Combat Controls</span>
<span class="keybind-arrow" id="combat-controls-arrow">βΌ</span>
</div>
<div class="keybind-content" id="combat-controls-content">
<div class="keybind-item">
<span class="keybind-action">Attack with Melee Weapons</span>
<span class="keybind-key">Left Click</span>
</div>
<div class="keybind-item">
<span class="keybind-action">Free-Look Bow Aiming</span>
<span class="keybind-key">Right Click + Mouse</span>
</div>
<div class="keybind-item">
<span class="keybind-action">Auto Sprint</span>
<span class="keybind-key">Y</span>
</div>
<div style="margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.1);">
<div style="color: #a0a0a0; font-size: 0.9rem;"><strong>Note:</strong> No speed penalty when attacking while mounted!</div>
</div>
</div>
</div>
</li>
<li class="feature-item">
<div class="feature-title">Improved Riding and Navigation</div>
<div class="feature-description">Navigate the world with ease and comfort on horseback.</div>
<div class="sub-features">
<div class="sub-feature">β’ <span class="highlight">Swimming:</span> Ridden horses can now swim, allowing you to cross rivers and lakes without having to dismount.</div>
<div class="sub-feature">β’ <span class="highlight">Mining Speed:</span> You can now mine at your normal speed while mounted, removing the usual block break speed penalty.</div>
<div class="sub-feature">β’ <span class="highlight">Independent Camera:</span> When the horse is not moving, you can move your camera independently of the horse up to a certain angle.</div>
<div class="sub-feature">β’ <span class="highlight">Horse Summoning:</span> You can bind a horse to a Copper Horn and then use the horn to summon that horse from anywhere in the world.</div>
<div class="sub-feature">β’ <span class="highlight">Fast Hitching:</span> You can now leash a horse to a fence with a single click while mounted.</div>
<div class="sub-feature">β’ <span class="highlight">Horse Wandering:</span> Saddled horses will not wander too far from where they were left by their owner.</div>
<div class="sub-feature">β’ <span class="highlight">Horse Stats:</span> When you hold a food item the horse likes, a tooltip with its stats will be displayed.</div>
<div class="sub-feature">β’ <span class="highlight">Heads Down:</span> The horse's head position is lowered and rotated forward, slightly improving your visibility.</div>
<div class="sub-feature">β’ <span class="highlight">Transparent Horse:</span> The horse becomes partially transparent when you look down, allowing you to see your footing.</div>
<div class="sub-feature">β’ <span class="highlight">No Rearing:</span> Prevents horses from rearing (bucking) while you are mounted.</div>
</div>
<div class="plugin-name">(<a href="https://modrinth.com/mod/horseman" class="plugin-link" target="_blank">Horseman - click for more</a>)</div>
<div class="keybind-dropdown">
<div class="keybind-toggle" onclick="toggleKeybinds('horseman-controls')">
<span>π Horseman Controls & Features</span>
<span class="keybind-arrow" id="horseman-controls-arrow">βΌ</span>
</div>
<div class="keybind-content" id="horseman-controls-content">
<div class="keybind-item">
<span class="keybind-action">Horse Swimming</span>
<span class="keybind-key">Spacebar</span>
</div>
<div class="keybind-item">
<span class="keybind-action">Quick Fence Hitching</span>
<span class="keybind-key">Right Click</span>
</div>
<div style="margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.1);">
<div style="color: #a0a0a0; font-size: 0.9rem;">
<strong>Automatic Features:</strong><br>
β’ Independent camera movement when horse is stationary<br>
β’ Horse becomes transparent when looking down<br>
β’ No rearing while mounted<br>
β’ Horse stats tooltip when holding food
</div>
</div>
</div>
</div>
</li>
</ul>
</div>
<div class="subsection">
<h4 class="subsection-title">π Adventure & Storage</h4>
<ul class="feature-list">
<li class="feature-item">
<div class="feature-title">Traveler's Backpack</div>
<div class="feature-description">Embark on your adventures fully prepared with a feature-rich backpack system!</div>
<div class="sub-features">
<div class="sub-feature">β’ <span class="highlight">Massive Storage:</span> Carry up to 81 extra items in your wearable backpack - perfect for long journeys and exploration.</div>
<div class="sub-feature">β’ <span class="highlight">Built-in Fluid Tanks:</span> Two integrated tanks can store water, lava, or any other liquid for easy access during your travels.</div>
<div class="sub-feature">β’ <span class="highlight">Tool Integration:</span> Built-in crafting table and furnace let you craft and smelt items on the go without setting up a base.</div>
<div class="sub-feature">β’ <span class="highlight">Sleep Anywhere:</span> The backpack includes a sleeping bag, so you can sleep outdoors without needing a bed.</div>
<div class="sub-feature">β’ <span class="highlight">Multiple Variants:</span> Choose from different backpack designs and colors to match your style and adventure needs.</div>
</div>
<div class="plugin-name">(<a href="https://modrinth.com/mod/travelersbackpack" class="plugin-link" target="_blank">Traveler's Backpack - click for more</a> | <a href="https://github.com/Tiviacz1337/Travelers-Backpack/wiki" class="plugin-link" target="_blank">Wiki Home</a>)</div>
<div class="keybind-dropdown">
<div class="keybind-toggle" onclick="toggleKeybinds('travelers-backpack')">
<span>π Backpack Controls</span>
<span class="keybind-arrow" id="travelers-backpack-arrow">βΌ</span>
</div>
<div class="keybind-content" id="travelers-backpack-content">
<div class="keybind-item">
<span class="keybind-action">Open Backpack Inventory</span>
<span class="keybind-key">B</span>
</div>
<div class="keybind-item">
<span class="keybind-action">Switch Tank (with Hose)</span>
<span class="keybind-key">N</span>
</div>
<div class="keybind-item">
<span class="keybind-action">Change Hose Mode</span>
<span class="keybind-key">Shift + Scroll Wheel</span>
</div>
<div class="keybind-item">
<span class="keybind-action">Equip/Unequip Backpack</span>
<span class="keybind-key">Right Click</span>
</div>
<div class="keybind-item">
<span class="keybind-action">Use Sleeping Bag</span>
<span class="keybind-key">Right Click</span>
</div>
<div style="margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.1);">
<div style="color: #a0a0a0; font-size: 0.9rem;">
<strong>Crafting:</strong> 8 Leather + 1 Chest = Basic Backpack<br>
<strong>Note:</strong> All keybinds are configurable in Options > Controls
</div>
</div>
</div>
</div>
</li>
</ul>
</div>
<div class="subsection">
<h4 class="subsection-title">π Upgrading, Stats & Gear (The Best Stuff!)</h4>
<ul class="feature-list">
<li class="feature-item">
<div class="feature-title">Horse Leveling & Special Abilities</div>
<div class="feature-description">Your horse now gains experience as you ride it and will <span class="highlight">level up</span>!</div>
<div class="sub-features">
<div class="sub-feature">β’ Higher levels unlock powerful passive skills like <span class="highlight">Water Walking</span>, <span class="highlight">Feather Falling</span>, or <span class="highlight">Increased Damage</span>.</div>
<div class="sub-feature">β’ A custom nameplate above your horse now shows its <span class="highlight">name, current health, and level</span>.</div>
</div>
<div class="plugin-name">(<a href="https://modrinth.com/mod/superb-steeds" class="plugin-link" target="_blank">Superb Steeds - click for more</a>)</div>
<div class="keybind-dropdown">
<div class="keybind-toggle" onclick="toggleKeybinds('superb-steeds')">
<span>π Leveling System</span>
<span class="keybind-arrow" id="superb-steeds-arrow">βΌ</span>
</div>
<div class="keybind-content" id="superb-steeds-content">
<div style="color: #c0c0c0; margin-bottom: 1rem;">
<strong>How Leveling Works:</strong>
</div>
<div class="command-item">
<div style="color: #e0e0e0; font-weight: 500;">π Riding Experience</div>
<div class="command-description">Your horse gains XP automatically while you ride it</div>
</div>
<div class="command-item">
<div style="color: #e0e0e0; font-weight: 500;">βοΈ Combat Experience</div>
<div class="command-description">Horses gain XP when you fight enemies while mounted</div>
</div>
<div class="command-item">
<div style="color: #e0e0e0; font-weight: 500;">π Jump Experience</div>
<div class="command-description">Jumping with your horse also grants experience</div>
</div>
<div style="margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.1);">
<div style="color: #a0a0a0; font-size: 0.9rem;">
<strong>Unlockable Abilities:</strong> Water Walking, Feather Falling, Increased Damage, Speed Boost, Health Regeneration, and more!
</div>
</div>
</div>
</div>
</li>
<li class="feature-item">
<div class="feature-title">New Equipment - Saddlebags & Horseshoes!</div>
<div class="sub-features">
<div class="sub-feature">β’ <span class="highlight">SADDLEBAGS:</span> This is a game-changer. You can now craft and equip saddlebags to <span class="highlight">give your horse its own inventory</span>, perfect for long adventures!</div>
<div class="sub-feature">β’ <span class="highlight">HORSESHOES:</span> Craft special horseshoes to permanently boost your horse's <span class="highlight">Speed, Health, or Jump Height</span>.</div>
</div>
<div class="plugin-name">(<a href="https://www.curseforge.com/minecraft/mc-mods/horse-expert" class="plugin-link" target="_blank">Horse Expert - click for more</a>)</div>
<div class="keybind-dropdown">
<div class="keybind-toggle" onclick="toggleKeybinds('horse-stats')">
<span>π Stats & Information</span>
<span class="keybind-arrow" id="horse-stats-arrow">βΌ</span>
</div>
<div class="keybind-content" id="horse-stats-content">
<div class="keybind-item">
<span class="keybind-action">View Detailed Horse Stats</span>
<span class="keybind-key">Hold Food Item</span>
</div>
<div style="margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.1);">
<div style="color: #a0a0a0; font-size: 0.9rem;">
<strong>Visible Stats Include:</strong><br>
β’ Speed (in blocks per second)<br>
β’ Jump Height (in blocks)<br>
β’ Health Points<br>
β’ Equipment bonuses from horseshoes
</div>
</div>
</div>
</div>
<div class="keybind-dropdown">
<div class="keybind-toggle" onclick="toggleKeybinds('horse-expert')">
<span>π Equipment & Stats</span>
<span class="keybind-arrow" id="horse-expert-arrow">βΌ</span>
</div>
<div class="keybind-content" id="horse-expert-content">
<div style="color: #c0c0c0; margin-bottom: 1rem;">
<strong>Saddlebags & Horseshoes:</strong>
</div>
<div class="keybind-item">
<span class="keybind-action">Equip Saddlebags</span>
<span class="keybind-key">Right Click</span>
</div>
<div class="keybind-item">
<span class="keybind-action">Access Saddlebag Inventory</span>
<span class="keybind-key">Shift + Right Click</span>
</div>
<div class="keybind-item">
<span class="keybind-action">Equip Horseshoes</span>
<span class="keybind-key">Right Click on Horse</span>
</div>
<div class="keybind-item">
<span class="keybind-action">View Horse Stats</span>
<span class="keybind-key">Hold Apple/Carrot</span>
</div>
<div class="keybind-item">
<span class="keybind-action">View Stats with Monocle</span>
<span class="keybind-key">Right Click with Monocle</span>
</div>
<div style="margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.1);">
<div style="color: #a0a0a0; font-size: 0.9rem;">
<strong>Horseshoe Types:</strong><br>
β’ Iron Horseshoes: +10% Speed<br>
β’ Golden Horseshoes: +15% Health<br>
β’ Diamond Horseshoes: +20% Jump Height<br><br>
<strong>Monocle:</strong> Craft with Glass Pane + Gold Ingot for detailed stats viewing
</div>
</div>
</div>
</div>
</li>
<li class="feature-item">
<div class="feature-title">Advanced Stats & Breeding</div>
<div class="sub-features">
<div class="sub-feature">β’ You can now see a horse's exact stats, including <span class="highlight">Speed (in blocks/sec), Jump Height (in blocks), and Health</span>. No more guesswork!</div>
</div>
<div class="plugin-name">(<a href="https://www.curseforge.com/minecraft/mc-mods/horse-expert" class="plugin-link" target="_blank">Horse Expert - click for more</a>)</div>
</li>
</ul>
</div>
</section>
</main>
<section class="section">
<h3 class="section-title">π Changelog v1.0</h3>
<p style="color: #a0a0a0; font-size: 1.1rem; text-align: center; padding: 2rem;">
bro fr read allat
</p>
</section>
</div>
<script>
function toggleKeybinds(id) {
const content = document.getElementById(id + '-content');
const arrow = document.getElementById(id + '-arrow');
if (content.classList.contains('open')) {
content.classList.remove('open');
arrow.classList.remove('open');
} else {
content.classList.add('open');
arrow.classList.add('open');
}
}
</script>
</body>
</html>