HelloLuvrynn/hytale-horizons-modpack-mayhem
0
1<!DOCTYPE html>2<html lang="en" class="scroll-smooth">3<head>4 <meta charset="UTF-8">5 <meta name="viewport" content="width=device-width, initial-scale=1.0">6 <title>Patch Notes | Hytale Horizons</title>7 <link rel="stylesheet" href="style.css">8 <script src="https://cdn.tailwindcss.com"></script>9 <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>10</head>11<body class="bg-white font-sans antialiased">12 <custom-navbar></custom-navbar>13 <main class="container">14 <h1 class="text-4xl font-bold mb-6 sketch-text">LAIM Patch Notes</h1>15 <div class="sketch-line mb-8"></div>16 <div class="grid gap-6">17 <!-- v4.0.0 -->18 <a href="patch-note-detail.html?version=v4.0.0" class="block bg-white rounded-lg p-6 border-2 border-black shadow-[4px_4px_0px_0px_rgba(0,0,0,1)] hover:shadow-[6px_6px_0px_0px_rgba(0,0,0,1)] transition-all">19 <div class="flex justify-between items-center mb-4">20 <h2 class="text-2xl font-semibold">v4.0.0</h2>21 <span class="text-gray-500">Posted: January 13, 2026 - 4:05 PM EST</span>22 </div>23 <ul class="list-disc pl-5 space-y-2 mb-4">24 <li>Added <code>Forbidden Potions</code> with 15 new potion types</li>25 <li>Added <code>Better Babies</code> update backport</li>26 <li>Added <code>YUNGNICKYOUNG's Cave Biomes</code> with new blocks and mobs</li>27 <li>Added <code>The Lost Castle</code> structure variant</li>28 </ul>29 <div class="text-blue-600 hover:text-blue-800 font-medium">View Full Patch Notes →</div>30 </a>31 <!-- v3.2.0 -->32<a href="patch-note-detail.html?version=v3.2.0" class="sketch-border bg-white p-6">33 <div class="flex justify-between items-center mb-4">34 <h2 class="text-2xl font-semibold">v3.2.0</h2>35 <span class="text-gray-600">Posted: January 13, 2026 - 4:05 PM EST</span>36 </div>37 <ul class="list-disc pl-5 space-y-2 mb-4">38 <li>Configured <code>Custom Mob Attributes</code></li>39 <li>Bugfix <code>Obscure Tooltips</code> performing a "supernova" effect</li>40 </ul>41 <div class="font-medium underline">View Full Patch Notes →</div>42 </a>43<!-- v3.1.2 -->44 <a href="patch-note-detail.html?version=v3.1.2" class="block bg-white rounded-lg p-6 border-2 border-black shadow-[4px_4px_0px_0px_rgba(0,0,0,1)] hover:shadow-[6px_6px_0px_0px_rgba(0,0,0,1)] transition-all">45<div class="flex justify-between items-center mb-4">46<h2 class="text-2xl font-semibold">v3.1.2</h2>47 <span class="text-gray-500">Posted: January 13, 2026 - 4:05 PM EST</span>48 </div>49 <ul class="list-disc pl-5 space-y-2 mb-4">50 <li>Configured <code>Mob Attributes</code></li>51 <li>Adjusted Zombie stats specifically</li>52 </ul>53 <div class="text-blue-600 hover:text-blue-800 font-medium">View Full Patch Notes →</div>54 </a>55 <!-- v3.1.1 -->56 <a href="patch-note-detail.html?version=v3.1.1" class="block bg-white rounded-lg p-6 border-2 border-black shadow-[4px_4px_0px_0px_rgba(0,0,0,1)] hover:shadow-[6px_6px_0px_0px_rgba(0,0,0,1)] transition-all">57<div class="flex justify-between items-center mb-4">58<h2 class="text-2xl font-semibold">v3.1.1</h2>59 <span class="text-gray-500">Posted: January 13, 2026 - 4:05 PM EST</span>60 </div>61 <ul class="list-disc pl-5 space-y-2 mb-4">62 <li>Removed performance mods</li>63 <li>Updated <code>ImmediatelyFast</code></li>64 </ul>65 <div class="text-blue-600 hover:text-blue-800 font-medium">View Full Patch Notes →</div>66 </a>67 <!-- v3.1.0 -->68 <a href="patch-note-detail.html?version=v3.1.0" class="block bg-white rounded-lg p-6 border-2 border-black shadow-[4px_4px_0px_0px_rgba(0,0,0,1)] hover:shadow-[6px_6px_0px_0px_rgba(0,0,0,1)] transition-all">69<div class="flex justify-between items-center mb-4">70<h2 class="text-2xl font-semibold">v3.1.0</h2>71 <span class="text-gray-500">Posted: January 13, 2026 - 4:05 PM EST</span>72 </div>73 <ul class="list-disc pl-5 space-y-2 mb-4">74 <li>Added <code>Pillager Caravans</code></li>75 <li>Major <code>Custom Mob Attributes</code> overhaul</li>76 </ul>77 <div class="text-blue-600 hover:text-blue-800 font-medium">View Full Patch Notes →</div>78 </a>79</div>80</div>81 </main>82 83 <custom-footer></custom-footer>84 85 <script src="components/navbar.js"></script>86 <script src="components/footer.js"></script>87 <script src="script.js"></script>88 <style>89 code {90 background-color: #f3f4f6;91 padding: 0.2em 0.4em;92 border-radius: 0.25rem;93 font-family: monospace;94 font-size: 0.9em;95 }96 </style>97<script>feather.replace();</script>98</body>99</html>