Merge branch 'master' of https://git.vrg.party/hiina/minecraft-crawler
All checks were successful
/ deploy (push) Successful in 2s

This commit is contained in:
incidentalstoat 2024-08-22 23:37:21 -05:00
commit d6017890a2
4 changed files with 1419 additions and 269 deletions

View file

@ -107,6 +107,8 @@ mod_categories = [
"reacharound",
"xaeros-world-map",
"xaeros-minimap",
"simple-voice-radio",
"trashslot",
]
),
),
@ -128,6 +130,7 @@ mod_categories = [
"fwaystones",
"explorers-compass",
"natures-compass",
"portable-base-(move-your-base-around)",
]
),
),
@ -189,6 +192,7 @@ mod_categories = [
mod_slugs=OrderedSet(
[
"minecells",
"when-dungeons-arise-seven-seas",
"dungeon-now-loading",
"dungeons-and-taverns",
"wabi-sabi-structures",
@ -216,13 +220,13 @@ mod_categories = [
mod_slugs=OrderedSet(
[
"terralith",
"biomes-o-plenty",
"bingusandfloppa",
"promenade",
"eldritch-end",
"naturalist",
"more-mob-variants",
"valentines-blessing-lilypads-roses",
"nyctophobia",
]
),
),
@ -312,7 +316,7 @@ mod_categories = [
"rebalance",
"protection-balancer",
"starter-kit",
"gravestones",
"yigd",
"fallingtree",
]
),
@ -339,6 +343,7 @@ mod_categories = [
"deuf-refabricated",
"spark",
"modernfix",
"chunky",
]
),
),
@ -433,6 +438,9 @@ mod_categories = [
"azurelib-armor",
"autotag",
"argonauts",
"globalpacks",
"wasabiwhisper-harmonia",
"lexiconfig",
]
),
),
@ -532,14 +540,21 @@ def generate_html(mod_info):
with tag("head"):
doc.stag("meta", charset="utf-8")
with tag("title"):
text("VR Crawler Mod List")
text("/vrg/ Crawler: Mod List")
doc.stag("link", rel="stylesheet", href="pico.red.min.css")
doc.stag("link", rel="stylesheet", href="style.css")
with tag("main", klass="container"):
with tag("header"):
with tag("h1"):
text("VR Crawler Mod List")
with tag("nav"):
with tag("ul"):
with tag("li"):
doc.line("h1", "/vrg/ Crawler")
doc.line("li", "Mod List")
with tag("ul"):
with tag("li"):
doc.line("a", "About", href="index.html")
for category in mod_categories:
with tag("section", klass="mod-category"):
with tag("h2"):

View file

@ -4,13 +4,26 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="pico.red.min.css">
<link rel="stylesheet" href="style.css">
<main class="container">
<header>
<nav>
<ul>
<li>
<h1>/vrg/ Crawler</h1>
</li>
<li>the least bad VR co-op dungeon crawling game</li>
</ul>
<ul>
<li><a href=mods.html>Mod List</a></li>
</ul>
</nav>
</header>
<p>Experience the least bad VR co-op dungeon crawling game.</p>
<h2>What is this?</h2>
<p>
<img id=statusimg src=https://api.mcstatus.io/v2/widget/java/crawler.vrg.party width=430 height=120 />
/vrg/ crawler is a Minecraft server and modpack that converts the game into a co-op dungeon crawling
VR game, to the best of our ability. Think Ancient Dungeon, or Dungeons of Eternity, but good. You may enjoy
this even if you don't like regular Minecraft.
@ -28,7 +41,6 @@
</section>
<section id="download">
<h2>Download</h2>
<p>You have several options:</p>
<div class="grid">
<article>
<details>
@ -49,7 +61,12 @@
<details>
<summary>I have my own autistic minecraft launcher setup, just give me the jars</summary>
<p>import <a href="vr-crawler.mrpack">vr-crawler.mrpack</a> into your
launcher of choice somehow. It's a Modrinth modpack file.</p>
launcher of choice somehow. It's a Modrinth modpack file. You'll also
have to add <code>crawler.vrg.party</code> as a multiplayer server.
Note that if we change things, the pack doesn't automatically update,
so we really recommend using polyMC from the other two options to get that set up.
You can run it portably, no install required, and it won't mess with your existing minecraft
setups.</p>
</details>
</article>
@ -63,8 +80,11 @@
</p>
<p>
If you're entirely new to vivecraft / minecraft, you may have to set up the SteamVR bindings. TODO: link
instructions. Check out <a href="https://www.vivecraft.org/how-to-play/">Vivecraft's How To Play guide</a>
If you're entirely new to vivecraft / minecraft, you may have to set up the SteamVR bindings. With an Index controller
you can use the VR Crawler community binding. Otherwise use SteamVR's binding menu to bind Combat Roll- Roll,
VR Jester - Gesture Listener Trigger, and ImmersiveMC VR Bindings - Ranged Grab in the Modded tab.
<a href="https://steamcommunity.com/sharedfiles/filedetails/?id=2029205314">This</a> explains the process of setting up custom bindings.
Check out <a href="https://www.vivecraft.org/how-to-play/">Vivecraft's How To Play guide</a>
for more basic control info.
</p>

1425
mods.html

File diff suppressed because it is too large Load diff

View file

@ -13,3 +13,13 @@
.mod-description-details {
--pico-spacing: 0;
}
#statusimg {
display: block;
}
@media screen and (min-width: 1000px) {
#statusimg {
float: right;
}
}