-
Notifications
You must be signed in to change notification settings - Fork 0
/
gtnh.html
92 lines (85 loc) · 5.9 KB
/
gtnh.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>
<title>CS 347 Project 1 - GregTech Minecraft Modpack Info</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/gallery.css">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
</head>
<body>
<header>
<img src="https://gregtech.overminddl1.com/static/images/logo_gt_site.svg" alt="GregTech logo">
<h1>GregTech Modpack Informational Website</h1>
</header>
<nav>
<ul class="navlist">
<li class="navitem"><a href="index.html">Home</a></li>
<li class="navitem"><a href="gtnh.html">GregTech New Horizons</a></li>
<li class="navitem"><a href="impact.html">GT Impact</a></li>
<li class="navitem"><a href="interactions.html">FTB Interactions</a></li>
<li class="navitem"><a href="omnifactory.html">Omnifactory</a></li>
</ul>
</nav>
<main>
<h2>GregTech New Horizons</h2>
<div class="modpack-info">
<h3>General Information</h3>
<div class="infobox">
<ul>
<li>Minecraft: 1.7.10</li>
<li>GregTech: 5 Unofficial</li>
<li>Difficulty: 5/5 (Ultra Hard)</li>
<li>Accessibility: 2/5 (Generally not for Beginners)</li>
<li>Magic: Yes</li>
<li>Quests: Yes</li>
<li>Survival/Combat: Yes</li>
</ul>
</div>
<p>Click <a href="https://gtnh.miraheze.org/wiki/Main_Page">Here</a> to visit the GregTech New Horizons Wiki or go <a href="http://downloads.gtnewhorizons.com/">Here</a> to download the modpack for yourself!</p>
</div>
<div class="modpack-desc">
<h3>Pack Description</h3>
<p>GregTech New Horizons is one of the most difficult GregTech Modpacks. Featuring not only GregTech 5 Unofficial, but also several custom mods adding even more content, this modpack will keep you occupied for a LONG time. GregTech New Horizons changes most in-game crafting recipes, even those of items in Vanilla Minecraft. Want to make a door? You'll need wood, but also iron screws and rings, which require tools such as a Hammer, File, and Saw. While this may seem annoying at first, as you progress into the electrical ages of GregTech, earlier items gradually become easier.</p>
<p>GregTech New Horizons also features mods such as Applied Energistics 2 and Steve's Factory Manager, to assist in fully automating your ever-growing factory.</p>
<p>Want to become a master mage? GregTech New Horizons also features magical themed mods such as Thaumcraft, Witchery, and Blood Magic. However, magical progression will build off the various tiers of technology, as well as exploration through the mysterious Twilight Forest dimension.</p>
<p>What is the goal of all this? Well, after much upgrading of your factory's infrastructure, and the (hopefully automatic) collection of millions of raw materials, you can craft the famed Stargate, an item once thought to be impossible to obtain. However, Russian player Houstonruss proved in Spring 2021 that it is, indeed, possible, by crafting the first two Stargates of any GregTech New Horizons player, and thus completing the objective, all via his factory, known as the "Big-Flex Gigaplex".</p>
</div>
<div class="modpack-gallery">
<h3>Screenshots</h3>
<div class="slideshow-container">
<!-- Full-width images with number and caption text -->
<div class="myslides fade">
<div class="numbertext">1 / 3</div>
<img src="https://cdn.discordapp.com/attachments/777653235359416330/823916934352732220/2021-03-22_23.34.05.png" alt="Early-Game Base" style="width:100%">
<div class="text">Early-Game Base, Courtesy of Bean Bagel on Discord</div>
</div>
<div class="myslides fade">
<div class="numbertext">2 / 3</div>
<img src="https://cdn.discordapp.com/attachments/777653235359416330/796363421041557556/unknown.png" alt="Cleanroom" style="width:100%">
<div class="text">Cleanroom for Circuits, Courtesy of gordominossi on Discord</div>
</div>
<div class="myslides fade">
<div class="numbertext">3 / 3</div>
<img src="https://cdn.discordapp.com/attachments/777653235359416330/796566621514367076/2021-01-01_18.21.46.png" alt="Factory" style="width:100%">
<div class="text">A Well-Built Factory, Courtesy of Melkutus on Discord</div>
</div>
<!-- Next and previous buttons -->
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
</div>
<br>
<!-- The dots/circles -->
<div style="text-align:center">
<span class="dot" onclick="currentSlide(1)"></span>
<span class="dot" onclick="currentSlide(2)"></span>
<span class="dot" onclick="currentSlide(3)"></span>
</div>
</div>
</main>
<footer>© Jarod Reichel 2021</footer>
<script src="js/gallery.js"></script>
</body>
</html>