first commit

This commit is contained in:
Soph :3 2025-09-29 20:51:35 +03:00
commit 6746064104
73 changed files with 3137 additions and 0 deletions

BIN
LV Modpaka.zip Normal file

Binary file not shown.

442
fast-toml.js Normal file
View file

@ -0,0 +1,442 @@
window.TOML = (function () {
"use strict";
let e = "",
t = 0;
function i(e, t = 0) {
let i;
for (; (i = e[t++]) && (" " == i || "\t" == i || "\r" == i); );
return t - 1;
}
function n(e) {
switch (e[0]) {
case void 0:
return "";
case '"':
return (function (e) {
let t,
i = 0,
n = "";
for (; (t = e.indexOf("\\", i) + 1); ) {
switch (((n += e.slice(i, t - 1)), e[t])) {
case "\\":
n += "\\";
break;
case '"':
n += '"';
break;
case "\r":
"\n" == e[t + 1] && t++;
case "\n":
break;
case "b":
n += "\b";
break;
case "t":
n += "\t";
break;
case "n":
n += "\n";
break;
case "f":
n += "\f";
break;
case "r":
n += "\r";
break;
case "u":
((n += String.fromCharCode(parseInt(e.substr(t + 1, 4), 16))),
(t += 4));
break;
case "U":
((n += String.fromCharCode(parseInt(e.substr(t + 1, 8), 16))),
(t += 8));
break;
default:
throw r(e[t]);
}
i = t + 1;
}
return n + e.slice(i);
})(e.slice(1, -1));
case "'":
return e.slice(1, -1);
case "0":
case "1":
case "2":
case "3":
case "4":
case "5":
case "6":
case "7":
case "8":
case "9":
case "+":
case "-":
case ".":
let t = e;
if ((-1 != t.indexOf("_") && (t = t.replace(/_/g, "")), !isNaN(t)))
return +t;
if ("-" == e[4] && "-" == e[7]) {
let t = new Date(e);
if ("Invalid Date" != t.toString()) return t;
} else if (":" == e[2] && ":" == e[5] && e.length >= 7) {
let t = new Date("0000-01-01T" + e + "Z");
if ("Invalid Date" != t.toString()) return t;
}
return e;
}
switch (e) {
case "true":
return !0;
case "false":
return !1;
case "nan":
case "NaN":
return !1;
case "null":
return null;
case "inf":
case "+inf":
case "Infinity":
case "+Infinity":
return 1 / 0;
case "-inf":
case "-Infinity":
return -1 / 0;
}
return e;
}
function r(i) {
let n = (function () {
let i = e[t],
n = t;
"\n" == i && n--;
let r = 1,
s = e.lastIndexOf("\n", n),
a = e.indexOf("\n", n);
-1 == a && (a = 1 / 0);
("," != i && "\n" != i) || (n = s + 1);
if (-1 == s)
return {
line: r,
column: n + 1,
position: n,
lineContent: e.slice(0, a).trim(),
};
const c = n - s + 1,
o = e.slice(s + 1, a).trim();
r++;
for (; -1 != (s = e.lastIndexOf("\n", s - 1)); ) r++;
return { line: r, column: c, position: n, lineContent: o };
})(),
r = String(n.line);
return (
(i += "\n" + r + " | " + n.lineContent + "\n"),
(i += " ".repeat(r.length + n.column + 2) + "^"),
SyntaxError(i)
);
}
function s(e, i = 0, n = !1) {
let a,
c = e[i],
o = c,
f = c,
l = !0,
u = !1;
switch (c) {
case '"':
case "'":
if (
((a = i + 1),
n && e[i + 1] == c && e[i + 2] == c
? ((f = c + c + c), (a += 2))
: (u = !0),
"'" == c)
)
a = e.indexOf(f, a) + 1;
else
for (; (a = e.indexOf(f, a) + 1); ) {
let t = !0,
i = a - 1;
for (; "\\" == e[--i]; ) t = !t;
if (t) break;
}
if (!a) throw r("Missing " + f + " closer");
if (c != f) a += 2;
else if (u) {
let n = e.indexOf("\n", i + 1) + 1;
if (n && n < a)
throw (
(t = n - 2),
r("Forbidden end-of-line character in single-line string")
);
}
return a;
case "(":
f = ")";
break;
case "{":
f = "}";
break;
case "[":
f = "]";
break;
case "<":
f = ">";
break;
default:
l = !1;
}
let h = 0;
for (; (c = e[++i]); )
if (c == f) {
if (0 == h) return i + 1;
h--;
} else if ('"' == c || "'" == c) {
i = s(e, i, n) - 1;
} else l && c == o && h++;
throw r("Missing " + f);
}
function a(e) {
"string" != typeof e && (e = String(e));
let t,
i,
n = -1,
a = "",
c = [];
for (; (i = e[++n]); )
switch (i) {
case ".":
if (!a) throw r('Unexpected "."');
(c.push(a), (a = ""));
continue;
case '"':
case "'":
if (((t = s(e, n)), t == n + 2)) throw r("Empty string key");
((a += e.slice(n + 1, t - 1)), (n = t - 1));
continue;
default:
a += i;
}
return (a && c.push(a), c);
}
function c(e, t = []) {
const i = t.pop();
for (let i of t) {
if ("object" != typeof e) {
throw r(
'["' +
t.slice(0, t.indexOf(i) + 1).join('"].["') +
'"]' +
" must be an object",
);
}
(void 0 === e[i] && (e[i] = {}),
(e = e[i]) instanceof Array && (e = e[e.length - 1]));
}
return [e, i];
}
class o {
constructor() {
((this.root = {}), (this.data = this.root), (this.inlineScopeList = []));
}
get isRoot() {
return this.data == this.root;
}
set(e, t) {
let [i, n] = c(this.data, a(e));
if ("string" == typeof i)
throw "Wtf the scope is a string. Please report the bug";
if (n in i) throw r(`Re-writing the key '${e}'`);
return ((i[n] = t), t);
}
push(e) {
if (!(this.data instanceof Array)) {
if (!this.isRoot) throw r("Missing key");
((this.data = Object.assign([], this.data)), (this.root = this.data));
}
return (this.data.push(e), this);
}
use(e) {
return (
(this.data = (function (e, t = []) {
for (let i of t) {
if (void 0 === e) e = lastData[lastElt] = {};
else if ("object" != typeof e) {
throw r(
'["' +
t.slice(0, t.indexOf(i) + 1).join('"].["') +
'"]' +
" must be an object",
);
}
(void 0 === e[i] && (e[i] = {}),
(e = e[i]) instanceof Array && (e = e[e.length - 1]));
}
return e;
})(this.root, a(e))),
this
);
}
useArray(e) {
let [t, i] = c(this.root, a(e));
return (
(this.data = {}),
void 0 === t[i] && (t[i] = []),
t[i].push(this.data),
this
);
}
enter(e, t) {
return (
this.inlineScopeList.push(this.data),
this.set(e, t),
(this.data = t),
this
);
}
enterArray(e) {
return (
this.inlineScopeList.push(this.data),
this.push(e),
(this.data = e),
this
);
}
exit() {
return ((this.data = this.inlineScopeList.pop()), this);
}
}
function f(a) {
"string" != typeof a && (a = String(a));
const c = new o(),
f = [];
((e = a), (t = 0));
let l,
u,
h = "",
d = "",
p = e[0],
w = !0;
const g = () => {
if (((h = h.trimEnd()), w)) h && c.push(n(h));
else {
if (!h) throw r("Expected key before =");
if (!d) throw r("Expected value after =");
c.set(h, n(d.trimEnd()));
}
((h = ""), (d = ""), (w = !0));
};
do {
switch (p) {
case " ":
w ? h && (h += p) : d && (d += p);
case "\t":
case "\r":
continue;
case "#":
((t = e.indexOf("\n", t + 1) - 1), -2 == t && (t = 1 / 0));
continue;
case '"':
case "'":
if (!w && d) {
d += p;
continue;
}
let n = e[t + 1] == p && e[t + 2] == p;
if (((l = s(e, t, !0)), w)) {
if (h) throw r("Unexpected " + p);
((h += n ? e.slice(t + 2, l - 2) : e.slice(t, l)), (t = l));
} else
((d = e.slice(t, l)),
(t = l),
n &&
((d = d.slice(2, -2)),
"\n" == d[1]
? (d = d[0] + d.slice(2))
: "\r" == d[1] && "\n" == d[2] && (d = d[0] + d.slice(3))));
if (
((t = i(e, t)),
(p = e[t]),
p &&
"," != p &&
"\n" != p &&
"#" != p &&
"}" != p &&
"]" != p &&
"=" != p)
)
throw r("Unexpected character after end of string");
t--;
continue;
case "\n":
case ",":
case void 0:
g();
continue;
case "[":
case "{":
if (((u = "[" == p ? "]" : "}"), w && !f.length)) {
if (h) throw r("Unexpected " + p);
if (((l = s(e, t)), "[" == p && "[" == e[t + 1])) {
if ("]" != e[l - 2]) throw r("Missing ]]");
c.useArray(e.slice(t + 2, l - 2));
} else c.use(e.slice(t + 1, l - 1));
t = l;
} else if (w) {
if (h) throw r("Unexpected " + p);
(c.enterArray("[" == p ? [] : {}), f.push(u));
} else {
if (d) throw r("Unexpected " + p);
(c.enter(h.trimEnd(), "[" == p ? [] : {}),
f.push(u),
(h = ""),
(w = !0));
}
continue;
case "]":
case "}":
if ((h && g(), f.pop() != p)) throw r("Unexpected " + p);
if (
(c.exit(),
(t = i(e, t + 1)),
(p = e[t]),
p && "," != p && "\n" != p && "#" != p && "}" != p && "]" != p)
)
throw r("Unexpected character after end of scope");
t--;
continue;
case "=":
if (!w) throw r("Unexpected " + p);
if (!h) throw r("Missing key before " + p);
w = !1;
continue;
default:
w ? (h += p) : (d += p);
}
} while ((p = e[++t]) || h);
if (f.length) throw r("Missing " + f.pop());
return c.root;
}
let l = null,
u = null;
function h() {
let e = "";
for (let t of arguments) e += "string" == typeof t ? t : t[0];
return f(e);
}
return (
(h.parse = f),
(h.parseFile = async function (e) {
if ((l || (l = require("fs")), !u)) {
const { promisify: e } = require("util");
u = e(l.readFile);
}
return f(await u(e));
}),
(h.parseFileSync = function (e) {
return (l || (l = require("fs")), f(l.readFileSync(e)));
}),
h
);
})();

Binary file not shown.

BIN
files/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

208
index.html Normal file
View file

@ -0,0 +1,208 @@
<div id="app">
<header
style="
display: flex;
align-items: center;
background: linear-gradient(
90deg,
#b22234 0%,
#ffffff 50%,
#b22234 100%
);
padding: 1rem;
"
>
<img
src="https://upload.wikimedia.org/wikipedia/commons/8/84/Flag_of_Latvia.svg"
alt="Latvian Flag"
style="height: 40px; margin-right: 1rem"
/>
<h1 style="margin: 0; font-family: &quot;Segoe UI&quot;, sans-serif">
LV Modpaka's serveris
</h1>
</header>
<nav
style="display: flex; gap: 1rem; background: #eee; padding: 0.5rem 1rem"
>
<button
v-on:click="page = 'home'"
:class="{active: page === 'home'}"
style="
border: none;
background: none;
cursor: pointer;
font-size: 1rem;
"
>
Mājas
</button>
<button
v-on:click="page = 'docs'"
:class="{active: page === 'docs'}"
style="
border: none;
background: none;
cursor: pointer;
font-size: 1rem;
"
>
Dokumentācija
</button>
</nav>
<main style="padding: 2rem">
<section v-if="page === 'home'">
<div
style="display: flex; align-items: center; margin-bottom: 2rem"
>
<a href="/LV%20Modpaka.zip" target="_blank">
<h2 style="margin: 0">Lejupielādē šeit!</h2>
</a>
</div>
<h3>Galvanās fīčas</h3>
<ul>
<li>
<strong>Veiktspējas modifikācijas:</strong> Mēs izmantojam
<em>Sodium</em> un <em>Lithium</em>, lai nodrošinātu
vienmērīgu spēles gaitu, kā arī <em>C2ME</em> un
<em>EntityCulling</em>, lai nodrošinātu ātrdarbību pat tad,
ja spēlē piedalās daudz spēlētāju un ir daudz būvju.
</li>
<li>
<strong>Tehnoloģijas un automatizācija:</strong>
Modifikācijas, piemēram, <em>CC: Tweaked</em> (programmējami
datori), <em>Simple Copper Pipes</em>,
<em>Large Fluid Tank</em> un <em>Energized Power</em>, ļauj
jums būvēt visdažādākās mašīnas un ierīces.
</li>
<li>
<strong>Dekorēšana un dzīves kvalitāte:</strong>
<em>Cooking for Blockheads</em> padara virtuves patiesi
lietderīgas, <em>Vanilla Backpacks</em> un
<em>Item Collectors</em> palīdz ar uzglabāšanu, bet
<em>Jade</em> sniedz informāciju par visu, ko tu apskati.
</li>
<li>
<strong>Pasaule un izpēte:</strong>
<em>Oh The Biomes You'll Go</em> un
<em>Serene Seasons</em> pievieno jaunas biomas un sezonas
izmaiņas, tādējādi pasaule šķiet svaiga un dzīva.
</li>
<li>
<strong>Jautras papildfunkcijas:</strong> Vēlies sēdēt uz
kāpnēm? <em>Sit!</em> ļauj to darīt.
<em>Mutant Monsters</em> pievieno dažus jaunos savvaļas
mobus, un <em>Xaero's Minimap</em> palīdz tev nekad
neapmaldīties.
</li>
<li>
<strong>Anti-Grief & Server Tools:</strong>
<em>Anti-Xray</em> un
<em>Convenient MobGriefing</em> nodrošina taisnīgumu un
jautrību visiem.
</li>
</ul>
<h3>Kapēc pievienoties?</h3>
<p>
Mēs izveidojām šo modpack, lai tas būtu vieta, kur tu vari
izpaust savu radošumu ar tehnoloģiju palīdzību, būvēt skaistas
bāzes un izpētīt pasauli, kas pastāvīgi mainās. Neatkarīgi no
tā, vai tev patīk automatizācija, lauksaimniecība, dekorēšana
vai vienkārši atpūta, šeit tu atradīsi kaut ko sev piemērotu.
Turklāt mēs cenšamies nodrošināt draudzīgu vidi bez kavēšanās,
lai jūs varētu patiesi baudīt spēli kopā ar citiem.
Pievienojieties mums un redziet, ko jūs varat uzcelt!
</p>
<div
style="
margin-top: 2rem;
border-top: 1px solid #ccc;
padding-top: 1rem;
"
>
<strong>labs ass serveris bruh dont fw me</strong>
</div>
</section>
<section v-if="page === 'docs'">
<h2>Modu Dokumentācija</h2>
<p>Atrodi linkus priekš visiem mūsu modiem šeit:</p>
<ul>
<li v-for="mod in mods" :key="mod.name">
<a :href="mod.link" target="_blank">{{ mod.name }}</a>
</li>
</ul>
</section>
</main>
</div>
<script src="https://cdn.jsdelivr.net/npm/vue@2.7.14/dist/vue.min.js"></script>
<script src="/fast-toml.js"></script>
<script type="module">
new Vue({
el: "#app",
data: {
page: "home",
mods: [],
},
created: function () {
var self = this;
// Fetch index.toml
fetch("modpack/index.toml")
.then(function (response) {
return response.text();
})
.then(function (indexTomlText) {
var indexData = TOML.parse(indexTomlText);
// indexData.files is an array of mod file objects
var modFiles = (indexData.files || []).filter(function (f) {
return (
f.file &&
f.file.startsWith("mods/") &&
f.file.endsWith(".pw.toml")
);
});
// For each mod file, fetch and parse its TOML
var modPromises = modFiles.map(function (modFile) {
var modTomlPath = "modpack/" + modFile.file;
return fetch(modTomlPath)
.then(function (response) {
return response.text();
})
.then(function (modTomlText) {
var modData = TOML.parse(modTomlText);
var modrinth =
modData.update && modData.update.modrinth;
if (modData.side == "server") {
return null;
}
if (modrinth && modrinth["mod-id"]) {
return {
name:
modData.name || modrinth["mod-id"],
link:
"https://modrinth.com/mod/" +
modrinth["mod-id"],
};
} else {
// fallback: just show name, no link
return {
name: modData.name || modFile.file,
link: "#",
};
}
})
.catch(function (err) {
// If mod TOML fails, skip it
return null;
});
});
Promise.all(modPromises).then(function (modsArr) {
// Filter out nulls (failed loads)
self.mods = modsArr.filter(function (m) {
return m;
});
});
});
},
});
</script>

View file

@ -0,0 +1,5 @@
type = custom_gui_screens
overridden_screens {
}

View file

@ -0,0 +1,5 @@
type = customizablemenus
net.minecraft.class_442 {
}

View file

@ -0,0 +1,934 @@
type = fancymenu_layout
layout-meta {
identifier = title_screen
render_custom_elements_behind_vanilla = true
last_edited_time = 1759149783098
is_enabled = true
randommode = false
randomgroup = 1
randomonlyfirsttime = false
layout_index = 0
[loading_requirement_container_meta:0aa52589-3afd-4690-9312-2d10e6f898e8-1759148630246] = [groups:][instances:]
}
customization {
action = backgroundoptions
keepaspectratio = false
}
scroll_list_customization {
preserve_scroll_list_header_footer_aspect_ratio = true
render_scroll_list_header_shadow = true
render_scroll_list_footer_shadow = true
show_scroll_list_header_footer_preview_in_editor = false
repeat_scroll_list_header_texture = false
repeat_scroll_list_footer_texture = false
show_screen_background_overlay_on_custom_background = false
apply_vanilla_background_blur = false
}
layout_action_executable_blocks {
}
element {
button_element_executable_block_identifier = 69022e25-a91c-4916-881e-5aa736e990b9-1759148582585
[executable_action_instance:8980ffa1-31e8-48e7-87ff-3fd731ef2830-1759148745895][action_type:joinserver] = vps.sad.ovh:4242
[executable_block:69022e25-a91c-4916-881e-5aa736e990b9-1759148582585][type:generic] = [executables:8980ffa1-31e8-48e7-87ff-3fd731ef2830-1759148745895;]
restartbackgroundanimations = true
nine_slice_custom_background = false
nine_slice_border_x = 5
nine_slice_border_y = 5
label = Play the server. :)
navigatable = true
widget_active_state_requirement_container_identifier = 71ae7473-1245-4f6b-bb74-b943e70c0d94-1759148582585
[loading_requirement_container_meta:71ae7473-1245-4f6b-bb74-b943e70c0d94-1759148582585] = [groups:][instances:]
is_template = false
template_apply_width = false
template_apply_height = false
template_apply_posx = false
template_apply_posy = false
template_apply_opacity = false
template_apply_visibility = false
template_apply_label = false
template_share_with = buttons
nine_slice_slider_handle = false
nine_slice_slider_handle_border_x = 5
nine_slice_slider_handle_border_y = 5
element_type = custom_button
instance_identifier = 5d69343a-c857-4379-b536-56081947054a-1759148582585
appearance_delay = no_delay
appearance_delay_seconds = 1.0
fade_in_v2 = no_fading
fade_in_speed = 1.0
fade_out = no_fading
fade_out_speed = 1.0
base_opacity = 1.0
auto_sizing = false
auto_sizing_base_screen_width = 1281
auto_sizing_base_screen_height = 726
sticky_anchor = false
anchor_point = mid-centered
x = -100
y = -17
width = 200
height = 20
stretch_x = false
stretch_y = false
stay_on_screen = true
element_loading_requirement_container_identifier = 854a0fa4-4630-4640-9b6c-dbb112ebd665-1759148582585
[loading_requirement_container_meta:854a0fa4-4630-4640-9b6c-dbb112ebd665-1759148582585] = [groups:][instances:]
enable_parallax = false
parallax_intensity_v2 = 0.5
invert_parallax = false
animated_offset_x = 0
animated_offset_y = 0
load_once_per_session = false
in_editor_color = #FFC800FF
layer_hidden_in_editor = false
}
element {
button_element_executable_block_identifier = 7fa9f7d0-d864-4b6b-b8b6-df887b32e064-1759148662955
[executable_action_instance:22618991-6036-44d6-a7c9-28e6ad4ba96a-1759148711117][action_type:openlink] = https://lvpack.sad.ovh
[executable_block:7fa9f7d0-d864-4b6b-b8b6-df887b32e064-1759148662955][type:generic] = [executables:22618991-6036-44d6-a7c9-28e6ad4ba96a-1759148711117;]
restartbackgroundanimations = true
nine_slice_custom_background = false
nine_slice_border_x = 5
nine_slice_border_y = 5
label = Website
navigatable = true
widget_active_state_requirement_container_identifier = e0dc7a55-099f-484d-a2af-731f0afdb540-1759148662955
[loading_requirement_container_meta:e0dc7a55-099f-484d-a2af-731f0afdb540-1759148662955] = [groups:][instances:]
is_template = false
template_apply_width = false
template_apply_height = false
template_apply_posx = false
template_apply_posy = false
template_apply_opacity = false
template_apply_visibility = false
template_apply_label = false
template_share_with = buttons
nine_slice_slider_handle = false
nine_slice_slider_handle_border_x = 5
nine_slice_slider_handle_border_y = 5
element_type = custom_button
instance_identifier = 41269ba5-7391-4ec3-9d60-05913a14c594-1759148662955
appearance_delay = no_delay
appearance_delay_seconds = 1.0
fade_in_v2 = no_fading
fade_in_speed = 1.0
fade_out = no_fading
fade_out_speed = 1.0
base_opacity = 1.0
auto_sizing = false
auto_sizing_base_screen_width = 1281
auto_sizing_base_screen_height = 726
sticky_anchor = false
anchor_point = element
anchor_point_element = 5d69343a-c857-4379-b536-56081947054a-1759148582585
x = 2
y = 23
width = 200
height = 20
stretch_x = false
stretch_y = false
stay_on_screen = true
element_loading_requirement_container_identifier = 843cd1a5-19fa-48e8-a486-21b7275ae90f-1759148662955
[loading_requirement_container_meta:843cd1a5-19fa-48e8-a486-21b7275ae90f-1759148662955] = [groups:][instances:]
enable_parallax = false
parallax_intensity_v2 = 0.5
invert_parallax = false
animated_offset_x = 0
animated_offset_y = 0
load_once_per_session = false
in_editor_color = #FFC800FF
layer_hidden_in_editor = false
}
element {
source = [source:web]https://lvpack.sad.ovh/files/logo.png
repeat_texture = false
nine_slice_texture = false
nine_slice_texture_border_x = 5
nine_slice_texture_border_y = 5
image_tint = #FFFFFF
restart_animated_on_menu_load = false
element_type = image
instance_identifier = 4e41648b-10c0-4198-a69e-3e7d208c35b7-1759149101794
appearance_delay = no_delay
appearance_delay_seconds = 1.0
fade_in_v2 = no_fading
fade_in_speed = 1.0
fade_out = no_fading
fade_out_speed = 1.0
base_opacity = 1.0
auto_sizing = false
auto_sizing_base_screen_width = 1281
auto_sizing_base_screen_height = 726
sticky_anchor = false
anchor_point = mid-centered
x = -120
y = -77
width = 247
height = 37
stretch_x = false
stretch_y = false
stay_on_screen = true
element_loading_requirement_container_identifier = df19518a-edb2-416e-b404-28efd8f7ddcd-1759149101794
[loading_requirement_container_meta:df19518a-edb2-416e-b404-28efd8f7ddcd-1759149101794] = [groups:][instances:]
enable_parallax = false
parallax_intensity_v2 = 0.5
invert_parallax = false
animated_offset_x = 0
animated_offset_y = 0
load_once_per_session = false
in_editor_color = #FFC800FF
layer_hidden_in_editor = false
}
vanilla_button {
button_element_executable_block_identifier = 7cee9c32-a9b7-4ea8-abfb-72093a0ebd2b-1759148383721
[executable_block:7cee9c32-a9b7-4ea8-abfb-72093a0ebd2b-1759148383721][type:generic] = [executables:]
restartbackgroundanimations = true
nine_slice_custom_background = false
nine_slice_border_x = 5
nine_slice_border_y = 5
navigatable = true
widget_active_state_requirement_container_identifier = 5c442494-4f40-4159-a51f-d0d25a2dd28e-1759148383721
[loading_requirement_container_meta:5c442494-4f40-4159-a51f-d0d25a2dd28e-1759148383721] = [groups:][instances:]
is_template = false
template_apply_width = false
template_apply_height = false
template_apply_posx = false
template_apply_posy = false
template_apply_opacity = false
template_apply_visibility = false
template_apply_label = false
template_share_with = buttons
nine_slice_slider_handle = false
nine_slice_slider_handle_border_x = 5
nine_slice_slider_handle_border_y = 5
element_type = vanilla_button
instance_identifier = mc_titlescreen_quit_button
appearance_delay = no_delay
appearance_delay_seconds = 1.0
fade_in_v2 = no_fading
fade_in_speed = 1.0
fade_out = no_fading
fade_out_speed = 1.0
base_opacity = 1.0
auto_sizing = false
auto_sizing_base_screen_width = 0
auto_sizing_base_screen_height = 0
sticky_anchor = false
anchor_point = vanilla
x = 215
y = 204
width = 98
height = 20
stretch_x = false
stretch_y = false
stay_on_screen = true
element_loading_requirement_container_identifier = a361ec17-cc2d-4826-9144-563b279683c7-1759148383721
[loading_requirement_container_meta:a361ec17-cc2d-4826-9144-563b279683c7-1759148383721] = [groups:][instances:]
enable_parallax = false
parallax_intensity_v2 = 0.5
invert_parallax = false
animated_offset_x = 0
animated_offset_y = 0
load_once_per_session = false
in_editor_color = #FFC800FF
layer_hidden_in_editor = false
is_hidden = false
automated_button_clicks = 0
}
vanilla_button {
button_element_executable_block_identifier = 24c17131-f7a4-48f0-ad3d-35c7906f6067-1759148383721
[executable_block:24c17131-f7a4-48f0-ad3d-35c7906f6067-1759148383721][type:generic] = [executables:]
restartbackgroundanimations = true
nine_slice_custom_background = false
nine_slice_border_x = 5
nine_slice_border_y = 5
navigatable = true
widget_active_state_requirement_container_identifier = 7b40bee6-8d21-4de9-99e1-8dedfb24b001-1759148383721
[loading_requirement_container_meta:7b40bee6-8d21-4de9-99e1-8dedfb24b001-1759148383721] = [groups:][instances:]
is_template = false
template_apply_width = false
template_apply_height = false
template_apply_posx = false
template_apply_posy = false
template_apply_opacity = false
template_apply_visibility = false
template_apply_label = false
template_share_with = buttons
nine_slice_slider_handle = false
nine_slice_slider_handle_border_x = 5
nine_slice_slider_handle_border_y = 5
element_type = vanilla_button
instance_identifier = mc_titlescreen_options_button
appearance_delay = no_delay
appearance_delay_seconds = 1.0
fade_in_v2 = no_fading
fade_in_speed = 1.0
fade_out = no_fading
fade_out_speed = 1.0
base_opacity = 1.0
auto_sizing = false
auto_sizing_base_screen_width = 1281
auto_sizing_base_screen_height = 726
sticky_anchor = false
anchor_point = vanilla
x = 113
y = 204
width = 98
height = 20
stretch_x = false
stretch_y = false
stay_on_screen = true
element_loading_requirement_container_identifier = bcaaa37b-2ec4-4144-9a8f-b88fd7bff0b5-1759148383721
[loading_requirement_container_meta:bcaaa37b-2ec4-4144-9a8f-b88fd7bff0b5-1759148383721] = [groups:][instances:]
enable_parallax = false
parallax_intensity_v2 = 0.5
invert_parallax = false
animated_offset_x = 0
animated_offset_y = 0
load_once_per_session = false
in_editor_color = #FFC800FF
layer_hidden_in_editor = false
is_hidden = false
automated_button_clicks = 0
}
vanilla_button {
button_element_executable_block_identifier = f7303ee3-b6dd-4ed4-ad7d-2a0e99d25573-1759148383721
[executable_block:f7303ee3-b6dd-4ed4-ad7d-2a0e99d25573-1759148383721][type:generic] = [executables:]
restartbackgroundanimations = true
nine_slice_custom_background = false
nine_slice_border_x = 5
nine_slice_border_y = 5
navigatable = true
widget_active_state_requirement_container_identifier = c86ab769-858b-4d38-be9b-9157a8d73c4f-1759148383721
[loading_requirement_container_meta:c86ab769-858b-4d38-be9b-9157a8d73c4f-1759148383721] = [groups:][instances:]
is_template = false
template_apply_width = false
template_apply_height = false
template_apply_posx = false
template_apply_posy = false
template_apply_opacity = false
template_apply_visibility = false
template_apply_label = false
template_share_with = buttons
nine_slice_slider_handle = false
nine_slice_slider_handle_border_x = 5
nine_slice_slider_handle_border_y = 5
element_type = vanilla_button
instance_identifier = modmenu_titlescreen_mods_button
appearance_delay = no_delay
appearance_delay_seconds = 1.0
fade_in_v2 = no_fading
fade_in_speed = 1.0
fade_out = no_fading
fade_out_speed = 1.0
base_opacity = 1.0
auto_sizing = false
auto_sizing_base_screen_width = 1281
auto_sizing_base_screen_height = 726
sticky_anchor = false
anchor_point = mid-centered
x = -100
y = 30
width = 200
height = 20
stretch_x = false
stretch_y = false
stay_on_screen = true
element_loading_requirement_container_identifier = 60efb0c3-68a5-44c2-9f61-68ca98653c71-1759148383721
[loading_requirement_container_meta:60efb0c3-68a5-44c2-9f61-68ca98653c71-1759148383721] = [groups:][instances:]
enable_parallax = false
parallax_intensity_v2 = 0.5
invert_parallax = false
animated_offset_x = 0
animated_offset_y = 0
load_once_per_session = false
in_editor_color = #FFC800FF
layer_hidden_in_editor = false
is_hidden = false
automated_button_clicks = 0
}
vanilla_button {
button_element_executable_block_identifier = 4063057f-ea2c-47cd-906c-1ee57f5c33fe-1759148383721
[executable_block:4063057f-ea2c-47cd-906c-1ee57f5c33fe-1759148383721][type:generic] = [executables:]
restartbackgroundanimations = true
nine_slice_custom_background = false
nine_slice_border_x = 5
nine_slice_border_y = 5
label = M%!n!%
navigatable = true
widget_active_state_requirement_container_identifier = 114bc5b7-9c72-4e39-b9b9-8d163e3d9bc5-1759148383721
[loading_requirement_container_meta:114bc5b7-9c72-4e39-b9b9-8d163e3d9bc5-1759148383721] = [groups:][instances:]
is_template = false
template_apply_width = false
template_apply_height = false
template_apply_posx = false
template_apply_posy = false
template_apply_opacity = false
template_apply_visibility = false
template_apply_label = false
template_share_with = buttons
nine_slice_slider_handle = false
nine_slice_slider_handle_border_x = 5
nine_slice_slider_handle_border_y = 5
element_type = vanilla_button
instance_identifier = mc_titlescreen_multiplayer_button
appearance_delay = no_delay
appearance_delay_seconds = 1.0
fade_in_v2 = no_fading
fade_in_speed = 1.0
fade_out = no_fading
fade_out_speed = 1.0
base_opacity = 1.0
auto_sizing = false
auto_sizing_base_screen_width = 1281
auto_sizing_base_screen_height = 726
sticky_anchor = false
anchor_point = element
anchor_point_element = mc_titlescreen_singleplayer_button
x = 226
y = 0
width = 20
height = 20
stretch_x = false
stretch_y = false
stay_on_screen = true
element_loading_requirement_container_identifier = 1d19fcc5-a531-4442-9565-b768df25655c-1759148383721
[loading_requirement_container_meta:1d19fcc5-a531-4442-9565-b768df25655c-1759148383721] = [groups:][instances:]
enable_parallax = false
parallax_intensity_v2 = 0.5
invert_parallax = false
animated_offset_x = 0
animated_offset_y = 0
load_once_per_session = false
in_editor_color = #FFC800FF
layer_hidden_in_editor = false
is_hidden = false
automated_button_clicks = 0
}
vanilla_button {
button_element_executable_block_identifier = bd5b265d-d649-4155-956a-b7961686fdf1-1759148383720
[executable_block:bd5b265d-d649-4155-956a-b7961686fdf1-1759148383720][type:generic] = [executables:]
restartbackgroundanimations = true
nine_slice_custom_background = false
nine_slice_border_x = 5
nine_slice_border_y = 5
label = S
navigatable = true
widget_active_state_requirement_container_identifier = 8c0fcca0-8a83-48ae-9dd9-0a4f4317e279-1759148383720
[loading_requirement_container_meta:8c0fcca0-8a83-48ae-9dd9-0a4f4317e279-1759148383720] = [groups:][instances:]
is_template = false
template_apply_width = false
template_apply_height = false
template_apply_posx = false
template_apply_posy = false
template_apply_opacity = false
template_apply_visibility = false
template_apply_label = false
template_share_with = buttons
nine_slice_slider_handle = false
nine_slice_slider_handle_border_x = 5
nine_slice_slider_handle_border_y = 5
element_type = vanilla_button
instance_identifier = mc_titlescreen_singleplayer_button
appearance_delay = no_delay
appearance_delay_seconds = 1.0
fade_in_v2 = no_fading
fade_in_speed = 1.0
fade_out = no_fading
fade_out_speed = 1.0
base_opacity = 1.0
auto_sizing = false
auto_sizing_base_screen_width = 1281
auto_sizing_base_screen_height = 726
sticky_anchor = false
anchor_point = element
anchor_point_element = 5d69343a-c857-4379-b536-56081947054a-1759148582585
x = -23
y = 0
width = 20
height = 20
stretch_x = false
stretch_y = false
stay_on_screen = true
element_loading_requirement_container_identifier = 275a2d64-925e-48b8-a81c-ef5abe5d48be-1759148383720
[loading_requirement_container_meta:275a2d64-925e-48b8-a81c-ef5abe5d48be-1759148383720] = [groups:][instances:]
enable_parallax = false
parallax_intensity_v2 = 0.5
invert_parallax = false
animated_offset_x = 0
animated_offset_y = 0
load_once_per_session = false
in_editor_color = #FFC800FF
layer_hidden_in_editor = false
is_hidden = false
automated_button_clicks = 0
}
vanilla_button {
button_element_executable_block_identifier = 4f21cb52-7c06-4fdc-aec9-ffc5ee72ece5-1759148383721
[executable_block:4f21cb52-7c06-4fdc-aec9-ffc5ee72ece5-1759148383721][type:generic] = [executables:]
restartbackgroundanimations = true
nine_slice_custom_background = false
nine_slice_border_x = 5
nine_slice_border_y = 5
navigatable = true
widget_active_state_requirement_container_identifier = a9863ac4-6d14-407a-a9a1-c44369d4fd4e-1759148383721
[loading_requirement_container_meta:a9863ac4-6d14-407a-a9a1-c44369d4fd4e-1759148383721] = [groups:][instances:]
is_template = false
template_apply_width = false
template_apply_height = false
template_apply_posx = false
template_apply_posy = false
template_apply_opacity = false
template_apply_visibility = false
template_apply_label = false
template_share_with = buttons
nine_slice_slider_handle = false
nine_slice_slider_handle_border_x = 5
nine_slice_slider_handle_border_y = 5
element_type = vanilla_button
instance_identifier = mc_titlescreen_realms_button
appearance_delay = no_delay
appearance_delay_seconds = 1.0
fade_in_v2 = no_fading
fade_in_speed = 1.0
fade_out = no_fading
fade_out_speed = 1.0
base_opacity = 1.0
auto_sizing = false
auto_sizing_base_screen_width = 1281
auto_sizing_base_screen_height = 726
sticky_anchor = false
anchor_point = vanilla
x = 113
y = 144
width = 200
height = 20
stretch_x = false
stretch_y = false
stay_on_screen = true
element_loading_requirement_container_identifier = 7c322680-c215-41d7-b375-e725aa5bccf4-1759148383721
[loading_requirement_container_meta:7c322680-c215-41d7-b375-e725aa5bccf4-1759148383721] = [groups:][instances:]
enable_parallax = false
parallax_intensity_v2 = 0.5
invert_parallax = false
animated_offset_x = 0
animated_offset_y = 0
load_once_per_session = false
in_editor_color = #FFC800FF
layer_hidden_in_editor = false
is_hidden = true
automated_button_clicks = 0
}
vanilla_button {
button_element_executable_block_identifier = 05b3be9a-1402-4042-bfb2-4530e27a102c-1759148383722
[executable_block:05b3be9a-1402-4042-bfb2-4530e27a102c-1759148383722][type:generic] = [executables:]
restartbackgroundanimations = true
nine_slice_custom_background = false
nine_slice_border_x = 5
nine_slice_border_y = 5
navigatable = true
widget_active_state_requirement_container_identifier = 933428d1-3fa3-4694-9c5e-ae8ed61626e6-1759148383722
[loading_requirement_container_meta:933428d1-3fa3-4694-9c5e-ae8ed61626e6-1759148383722] = [groups:][instances:]
is_template = false
template_apply_width = false
template_apply_height = false
template_apply_posx = false
template_apply_posy = false
template_apply_opacity = false
template_apply_visibility = false
template_apply_label = false
template_share_with = buttons
nine_slice_slider_handle = false
nine_slice_slider_handle_border_x = 5
nine_slice_slider_handle_border_y = 5
element_type = vanilla_button
instance_identifier = minecraft_realms_notification_icons_widget
appearance_delay = no_delay
appearance_delay_seconds = 1.0
fade_in_v2 = no_fading
fade_in_speed = 1.0
fade_out = no_fading
fade_out_speed = 1.0
base_opacity = 1.0
auto_sizing = false
auto_sizing_base_screen_width = 1281
auto_sizing_base_screen_height = 726
sticky_anchor = false
anchor_point = vanilla
x = 248
y = 158
width = 62
height = 18
stretch_x = false
stretch_y = false
stay_on_screen = true
element_loading_requirement_container_identifier = 7b07ddec-0bc9-4bb8-b1fb-e5f2976a871d-1759148383722
[loading_requirement_container_meta:7b07ddec-0bc9-4bb8-b1fb-e5f2976a871d-1759148383722] = [groups:][instances:]
enable_parallax = false
parallax_intensity_v2 = 0.5
invert_parallax = false
animated_offset_x = 0
animated_offset_y = 0
load_once_per_session = false
in_editor_color = #FFC800FF
layer_hidden_in_editor = false
is_hidden = true
automated_button_clicks = 0
}
vanilla_button {
button_element_executable_block_identifier = 4c76e65f-66dd-4702-9fca-0a92c6c5b6a6-1759148383722
[executable_block:4c76e65f-66dd-4702-9fca-0a92c6c5b6a6-1759148383722][type:generic] = [executables:]
restartbackgroundanimations = true
nine_slice_custom_background = false
nine_slice_border_x = 5
nine_slice_border_y = 5
navigatable = true
widget_active_state_requirement_container_identifier = ba1c9ff9-dac8-4406-8fbd-019ba4bcd8f1-1759148383722
[loading_requirement_container_meta:ba1c9ff9-dac8-4406-8fbd-019ba4bcd8f1-1759148383722] = [groups:][instances:]
is_template = false
template_apply_width = false
template_apply_height = false
template_apply_posx = false
template_apply_posy = false
template_apply_opacity = false
template_apply_visibility = false
template_apply_label = false
template_share_with = buttons
nine_slice_slider_handle = false
nine_slice_slider_handle_border_x = 5
nine_slice_slider_handle_border_y = 5
element_type = vanilla_button
instance_identifier = minecraft_branding_widget
appearance_delay = no_delay
appearance_delay_seconds = 1.0
fade_in_v2 = no_fading
fade_in_speed = 1.0
fade_out = no_fading
fade_out_speed = 1.0
base_opacity = 1.0
auto_sizing = false
auto_sizing_base_screen_width = 1281
auto_sizing_base_screen_height = 726
sticky_anchor = false
anchor_point = vanilla
x = 2
y = 232
width = 165
height = 9
stretch_x = false
stretch_y = false
stay_on_screen = true
element_loading_requirement_container_identifier = 18db6820-744e-449a-8e1d-0092eea7b104-1759148383722
[loading_requirement_container_meta:18db6820-744e-449a-8e1d-0092eea7b104-1759148383722] = [groups:][instances:]
enable_parallax = false
parallax_intensity_v2 = 0.5
invert_parallax = false
animated_offset_x = 0
animated_offset_y = 0
load_once_per_session = false
in_editor_color = #FFC800FF
layer_hidden_in_editor = false
is_hidden = false
automated_button_clicks = 0
}
vanilla_button {
button_element_executable_block_identifier = ff50edeb-5ccd-4a72-9eec-4127e225fb98-1759148383721
[executable_block:ff50edeb-5ccd-4a72-9eec-4127e225fb98-1759148383721][type:generic] = [executables:]
restartbackgroundanimations = true
nine_slice_custom_background = false
nine_slice_border_x = 5
nine_slice_border_y = 5
navigatable = true
widget_active_state_requirement_container_identifier = 13920ded-c701-4c9d-8407-71460c255a1d-1759148383721
[loading_requirement_container_meta:13920ded-c701-4c9d-8407-71460c255a1d-1759148383721] = [groups:][instances:]
is_template = false
template_apply_width = false
template_apply_height = false
template_apply_posx = false
template_apply_posy = false
template_apply_opacity = false
template_apply_visibility = false
template_apply_label = false
template_share_with = buttons
nine_slice_slider_handle = false
nine_slice_slider_handle_border_x = 5
nine_slice_slider_handle_border_y = 5
element_type = vanilla_button
instance_identifier = 604394
appearance_delay = no_delay
appearance_delay_seconds = 1.0
fade_in_v2 = no_fading
fade_in_speed = 1.0
fade_out = no_fading
fade_out_speed = 1.0
base_opacity = 1.0
auto_sizing = false
auto_sizing_base_screen_width = 0
auto_sizing_base_screen_height = 0
sticky_anchor = false
anchor_point = vanilla
x = 317
y = 204
width = 20
height = 20
stretch_x = false
stretch_y = false
stay_on_screen = true
element_loading_requirement_container_identifier = f72955da-5a3e-47b7-a84f-d51c6011978d-1759148383721
[loading_requirement_container_meta:f72955da-5a3e-47b7-a84f-d51c6011978d-1759148383721] = [groups:][instances:]
enable_parallax = false
parallax_intensity_v2 = 0.5
invert_parallax = false
animated_offset_x = 0
animated_offset_y = 0
load_once_per_session = false
in_editor_color = #FFC800FF
layer_hidden_in_editor = false
is_hidden = false
automated_button_clicks = 0
}
vanilla_button {
button_element_executable_block_identifier = e156bced-f978-4aa6-9d2f-070a1b7e8317-1759148383722
[executable_block:e156bced-f978-4aa6-9d2f-070a1b7e8317-1759148383722][type:generic] = [executables:]
restartbackgroundanimations = true
nine_slice_custom_background = false
nine_slice_border_x = 5
nine_slice_border_y = 5
navigatable = true
widget_active_state_requirement_container_identifier = b0610c28-e78e-4097-a4e0-27a62930206c-1759148383722
[loading_requirement_container_meta:b0610c28-e78e-4097-a4e0-27a62930206c-1759148383722] = [groups:][instances:]
is_template = false
template_apply_width = false
template_apply_height = false
template_apply_posx = false
template_apply_posy = false
template_apply_opacity = false
template_apply_visibility = false
template_apply_label = false
template_share_with = buttons
nine_slice_slider_handle = false
nine_slice_slider_handle_border_x = 5
nine_slice_slider_handle_border_y = 5
element_type = vanilla_button
instance_identifier = minecraft_logo_widget
appearance_delay = no_delay
appearance_delay_seconds = 1.0
fade_in_v2 = no_fading
fade_in_speed = 1.0
fade_out = no_fading
fade_out_speed = 1.0
base_opacity = 1.0
auto_sizing = false
auto_sizing_base_screen_width = 1281
auto_sizing_base_screen_height = 726
sticky_anchor = false
anchor_point = vanilla
x = 85
y = 30
width = 256
height = 51
stretch_x = false
stretch_y = false
stay_on_screen = true
element_loading_requirement_container_identifier = 072b1463-9dfe-475b-b855-c23fbda5fd39-1759148383721
[loading_requirement_container_meta:072b1463-9dfe-475b-b855-c23fbda5fd39-1759148383721] = [groups:][instances:]
enable_parallax = false
parallax_intensity_v2 = 0.5
invert_parallax = false
animated_offset_x = 0
animated_offset_y = 0
load_once_per_session = false
in_editor_color = #FFC800FF
layer_hidden_in_editor = false
is_hidden = true
automated_button_clicks = 0
}
vanilla_button {
button_element_executable_block_identifier = 8152860c-1baa-4229-9d11-4edc8989fe69-1759148383721
[executable_block:8152860c-1baa-4229-9d11-4edc8989fe69-1759148383721][type:generic] = [executables:]
restartbackgroundanimations = true
nine_slice_custom_background = false
nine_slice_border_x = 5
nine_slice_border_y = 5
navigatable = true
widget_active_state_requirement_container_identifier = 60b8a82f-7887-468b-b4a2-02849601ee7e-1759148383721
[loading_requirement_container_meta:60b8a82f-7887-468b-b4a2-02849601ee7e-1759148383721] = [groups:][instances:]
is_template = false
template_apply_width = false
template_apply_height = false
template_apply_posx = false
template_apply_posy = false
template_apply_opacity = false
template_apply_visibility = false
template_apply_label = false
template_share_with = buttons
nine_slice_slider_handle = false
nine_slice_slider_handle_border_x = 5
nine_slice_slider_handle_border_y = 5
element_type = vanilla_button
instance_identifier = title_screen_copyright_button
appearance_delay = no_delay
appearance_delay_seconds = 1.0
fade_in_v2 = no_fading
fade_in_speed = 1.0
fade_out = no_fading
fade_out_speed = 1.0
base_opacity = 1.0
auto_sizing = false
auto_sizing_base_screen_width = 1281
auto_sizing_base_screen_height = 726
sticky_anchor = false
anchor_point = vanilla
x = 229
y = 232
width = 196
height = 10
stretch_x = false
stretch_y = false
stay_on_screen = true
element_loading_requirement_container_identifier = f3a5e709-d667-4606-b059-ad5afff3bd30-1759148383721
[loading_requirement_container_meta:f3a5e709-d667-4606-b059-ad5afff3bd30-1759148383721] = [groups:][instances:]
enable_parallax = false
parallax_intensity_v2 = 0.5
invert_parallax = false
animated_offset_x = 0
animated_offset_y = 0
load_once_per_session = false
in_editor_color = #FFC800FF
layer_hidden_in_editor = false
is_hidden = false
automated_button_clicks = 0
}
vanilla_button {
button_element_executable_block_identifier = 67f68ce4-5719-48e4-a9c2-15ed4e767d7d-1759148383721
[executable_block:67f68ce4-5719-48e4-a9c2-15ed4e767d7d-1759148383721][type:generic] = [executables:]
restartbackgroundanimations = true
nine_slice_custom_background = false
nine_slice_border_x = 5
nine_slice_border_y = 5
navigatable = true
widget_active_state_requirement_container_identifier = 2e08cdcc-870b-4494-b900-852223957bfe-1759148383721
[loading_requirement_container_meta:2e08cdcc-870b-4494-b900-852223957bfe-1759148383721] = [groups:][instances:]
is_template = false
template_apply_width = false
template_apply_height = false
template_apply_posx = false
template_apply_posy = false
template_apply_opacity = false
template_apply_visibility = false
template_apply_label = false
template_share_with = buttons
nine_slice_slider_handle = false
nine_slice_slider_handle_border_x = 5
nine_slice_slider_handle_border_y = 5
element_type = vanilla_button
instance_identifier = 376394
appearance_delay = no_delay
appearance_delay_seconds = 1.0
fade_in_v2 = no_fading
fade_in_speed = 1.0
fade_out = no_fading
fade_out_speed = 1.0
base_opacity = 1.0
auto_sizing = false
auto_sizing_base_screen_width = 0
auto_sizing_base_screen_height = 0
sticky_anchor = false
anchor_point = vanilla
x = 89
y = 204
width = 20
height = 20
stretch_x = false
stretch_y = false
stay_on_screen = true
element_loading_requirement_container_identifier = e3db0b4d-52c1-4221-b0e5-ce4f0d7c93db-1759148383721
[loading_requirement_container_meta:e3db0b4d-52c1-4221-b0e5-ce4f0d7c93db-1759148383721] = [groups:][instances:]
enable_parallax = false
parallax_intensity_v2 = 0.5
invert_parallax = false
animated_offset_x = 0
animated_offset_y = 0
load_once_per_session = false
in_editor_color = #FFC800FF
layer_hidden_in_editor = false
is_hidden = false
automated_button_clicks = 0
}
vanilla_button {
button_element_executable_block_identifier = 1959b6be-77a7-480d-bf56-866f69f87bca-1759148383722
[executable_block:1959b6be-77a7-480d-bf56-866f69f87bca-1759148383722][type:generic] = [executables:]
restartbackgroundanimations = true
nine_slice_custom_background = false
nine_slice_border_x = 5
nine_slice_border_y = 5
navigatable = true
widget_active_state_requirement_container_identifier = c0244e6d-3ed4-4b71-a8fe-e30788a0641c-1759148383722
[loading_requirement_container_meta:c0244e6d-3ed4-4b71-a8fe-e30788a0641c-1759148383722] = [groups:][instances:]
is_template = false
template_apply_width = false
template_apply_height = false
template_apply_posx = false
template_apply_posy = false
template_apply_opacity = false
template_apply_visibility = false
template_apply_label = false
template_share_with = buttons
nine_slice_slider_handle = false
nine_slice_slider_handle_border_x = 5
nine_slice_slider_handle_border_y = 5
element_type = vanilla_button
instance_identifier = minecraft_splash_widget
appearance_delay = no_delay
appearance_delay_seconds = 1.0
fade_in_v2 = no_fading
fade_in_speed = 1.0
fade_out = no_fading
fade_out_speed = 1.0
base_opacity = 1.0
auto_sizing = false
auto_sizing_base_screen_width = 1281
auto_sizing_base_screen_height = 726
sticky_anchor = false
anchor_point = element
anchor_point_element = 4e41648b-10c0-4198-a69e-3e7d208c35b7-1759149101794
x = 183
y = 10
width = 100
height = 40
stretch_x = false
stretch_y = false
stay_on_screen = true
element_loading_requirement_container_identifier = 950a7d60-2dc9-4d8a-b762-0d468236305f-1759148383722
[loading_requirement_container_meta:950a7d60-2dc9-4d8a-b762-0d468236305f-1759148383722] = [groups:][instances:]
enable_parallax = false
parallax_intensity_v2 = 0.5
invert_parallax = false
animated_offset_x = 0
animated_offset_y = 0
load_once_per_session = false
in_editor_color = #FFC800FF
layer_hidden_in_editor = false
is_hidden = false
automated_button_clicks = 0
}

View file

@ -0,0 +1,12 @@
type = layout_editor_widget_settings
settings {
offset_x = -212.0
offset_y = 306.0
inner_width = 200.0
inner_height = 300.0
snapping_side = top-right
expanded = true
visible = true
}

View file

@ -0,0 +1,3 @@
##[legacy]
B:custom_guis_ported = 'true';

View file

@ -0,0 +1,93 @@
##[general]
I:default_gui_scale = '-1';
B:play_vanilla_menu_music = 'true';
B:force_fullscreen = 'false';
##[customization]
B:modpack_mode = 'false';
B:show_customization_overlay = 'false';
B:advanced_customization_mode = 'false';
##[loading]
S:preload_resources = '';
S:custom_game_intro_skip_text = '';
B:allow_game_intro_skip = 'true';
S:game_intro_animation_name = '';
B:game_intro_fade_out = 'true';
##[window]
B:show_custom_window_icon = 'false';
S:custom_window_icon_macos = '';
S:custom_window_icon_32 = '';
S:custom_window_title = '';
S:custom_window_icon_16 = '';
##[multiplayer_screen]
B:show_multiplayer_screen_server_icons = 'true';
##[singleplayer_screen]
B:show_singleplayer_screen_world_icons = 'true';
##[layout_editor]
B:layout_editor_grid_snapping = 'true';
B:anchor_overlay_change_anchor_on_area_hover = 'true';
B:show_layout_editor_grid = 'true';
B:anchor_overlay_change_anchor_on_element_hover = 'true';
S:anchor_overlay_visibility_mode = 'dragging';
B:anchor_overlay_show_all_connection_lines = 'false';
F:layout_editor_grid_snapping_strength = '1.0';
S:anchor_overlay_color_base_override = '';
I:layout_editor_grid_size = '10';
B:invert_anchor_overlay_color = 'false';
B:enable_buddy = 'true';
S:anchor_overlay_color_border_override = '';
F:anchor_overlay_opacity_normal = '0.5';
F:anchor_overlay_opacity_busy = '0.7';
D:anchor_overlay_hover_charging_time_seconds = '2.0';
##[ui]
I:context_menu_hover_open_speed = '1';
S:ui_theme = 'dark';
F:ui_scale = '4.0';
B:play_ui_click_sounds = 'true';
B:enable_ui_text_shadow = 'false';
##[debug_overlay]
B:debug_overlay_show_basic_screen_category = 'true';
B:debug_overlay_show_system_category = 'true';
B:debug_overlay_show_advanced_screen_category = 'true';
B:show_debug_overlay = 'false';
B:debug_overlay_show_resources_category = 'true';
##[tutorial]
B:show_welcome_screen = 'false';
##[keyframe_editor]
B:arrow_keys_move_preview = 'false';
##[advanced]
L:placeholder_caching_duration_ms = '30';
L:requirement_caching_duration_ms = '0';

View file

@ -0,0 +1,181 @@
{
"identifier": "dark",
"display_name": "fancymenu.ui.themes.dark",
"menu_bar_bottom_line_color": {
"hex": "#5D6164FF"
},
"layout_editor_mouse_selection_rectangle_color": {
"hex": "#0394FCFF"
},
"layout_editor_grid_color_normal": {
"hex": "#BA79F164"
},
"layout_editor_grid_color_center": {
"hex": "#5B5EFF64"
},
"layout_editor_element_border_color_normal": {
"hex": "#0394FCFF"
},
"layout_editor_element_border_color_selected": {
"hex": "#03DBFCFF"
},
"layout_editor_element_dragging_not_allowed_color": {
"hex": "#E83609C8"
},
"layout_editor_anchor_point_overlay_color_base": {
"hex": "#25B479FF"
},
"layout_editor_anchor_point_overlay_color_border": {
"hex": "#114F34FF"
},
"layout_editor_close_icon_color": {
"hex": "#DA3C1EFF"
},
"scroll_grabber_color_normal": {
"hex": "#595B5D64"
},
"scroll_grabber_color_hover": {
"hex": "#66686864"
},
"screen_background_color": {
"hex": "#3C3F41FF"
},
"screen_background_color_darker": {
"hex": "#262626FF"
},
"element_border_color_normal": {
"hex": "#5D6164FF"
},
"element_border_color_hover": {
"hex": "#5D6164FF"
},
"element_background_color_normal": {
"hex": "#474747FF"
},
"element_background_color_hover": {
"hex": "#539CD4FF"
},
"slider_handle_color_normal": {
"hex": "#4784B4FF"
},
"slider_handle_color_hover": {
"hex": "#539CD4FF"
},
"area_background_color": {
"hex": "#2B2B2BFF"
},
"edit_box_background_color": {
"hex": "#2B2B2BFF"
},
"edit_box_border_color_normal": {
"hex": "#5D6164FF"
},
"edit_box_border_color_focused": {
"hex": "#5D6164FF"
},
"list_entry_color_selected_hovered": {
"hex": "#323232FF"
},
"text_editor_sidebar_color": {
"hex": "#313335FF"
},
"text_editor_line_number_text_color_normal": {
"hex": "#5B5C5EFF"
},
"text_editor_line_number_text_color_selected": {
"hex": "#899396FF"
},
"listing_dot_color_1": {
"hex": "#3E86A0FF"
},
"listing_dot_color_2": {
"hex": "#AD6C79FF"
},
"listing_dot_color_3": {
"hex": "#AA823FFF"
},
"suggestions_background_color": {
"hex": "#474747FF"
},
"suggestions_text_color_normal": {
"hex": "#CEDDEDFF"
},
"suggestions_text_color_selected": {
"hex": "#64A5ECFF"
},
"ui_texture_color": {
"hex": "#FFFFFFFF"
},
"generic_text_base_color": {
"hex": "#FFFFFFFF"
},
"element_label_color_normal": {
"hex": "#CEDDEDFF"
},
"element_label_color_inactive": {
"hex": "#717577FF"
},
"edit_box_text_color_normal": {
"hex": "#CEDDEDFF"
},
"edit_box_text_color_uneditable": {
"hex": "#717577FF"
},
"edit_box_suggestion_text_color": {
"hex": "#808080FF"
},
"description_area_text_color": {
"hex": "#CEDDEDFF"
},
"text_editor_text_color": {
"hex": "#9EAAB8FF"
},
"success_text_color": {
"hex": "#31CE05FF"
},
"error_text_color": {
"hex": "#ED4545FF"
},
"warning_text_color": {
"hex": "#E59B12FF"
},
"text_editor_text_formatting_nested_text_color_1": {
"hex": "#EB7F7FFF"
},
"text_editor_text_formatting_nested_text_color_2": {
"hex": "#EBC97FFF"
},
"text_editor_text_formatting_nested_text_color_3": {
"hex": "#BEEB7FFF"
},
"text_editor_text_formatting_nested_text_color_4": {
"hex": "#7FEBE6FF"
},
"text_editor_text_formatting_nested_text_color_5": {
"hex": "#7F9EEBFF"
},
"text_editor_text_formatting_nested_text_color_6": {
"hex": "#967FEBFF"
},
"text_editor_text_formatting_nested_text_color_7": {
"hex": "#D47FEBFF"
},
"text_editor_text_formatting_nested_text_color_8": {
"hex": "#F53636FF"
},
"text_editor_text_formatting_nested_text_color_9": {
"hex": "#F59236FF"
},
"text_editor_text_formatting_nested_text_color_10": {
"hex": "#F5E536FF"
},
"text_editor_text_formatting_nested_text_color_11": {
"hex": "#69F536FF"
},
"text_editor_text_formatting_nested_text_color_12": {
"hex": "#3689F5FF"
},
"text_editor_text_formatting_brackets_color": {
"hex": "#FCDF03FF"
}
}

View file

@ -0,0 +1,181 @@
{
"identifier": "light",
"display_name": "fancymenu.ui.themes.light",
"menu_bar_bottom_line_color": {
"hex": "#777777FF"
},
"layout_editor_mouse_selection_rectangle_color": {
"hex": "#0394FCFF"
},
"layout_editor_grid_color_normal": {
"hex": "#BA79F164"
},
"layout_editor_grid_color_center": {
"hex": "#5B5EFF64"
},
"layout_editor_element_border_color_normal": {
"hex": "#0394FCFF"
},
"layout_editor_element_border_color_selected": {
"hex": "#03DBFCFF"
},
"layout_editor_element_dragging_not_allowed_color": {
"hex": "#E83609C8"
},
"layout_editor_anchor_point_overlay_color_base": {
"hex": "#25B479FF"
},
"layout_editor_anchor_point_overlay_color_border": {
"hex": "#114F34FF"
},
"layout_editor_close_icon_color": {
"hex": "#932813FF"
},
"scroll_grabber_color_normal": {
"hex": "#595B5D64"
},
"scroll_grabber_color_hover": {
"hex": "#66686864"
},
"screen_background_color": {
"hex": "#B2B2B2FF"
},
"screen_background_color_darker": {
"hex": "#ADADADFF"
},
"element_border_color_normal": {
"hex": "#777777FF"
},
"element_border_color_hover": {
"hex": "#777777FF"
},
"element_background_color_normal": {
"hex": "#CBCBCBFF"
},
"element_background_color_hover": {
"hex": "#AFAFAFFF"
},
"slider_handle_color_normal": {
"hex": "#858484FF"
},
"slider_handle_color_hover": {
"hex": "#A2A2A2FF"
},
"area_background_color": {
"hex": "#CBCBCBFF"
},
"edit_box_background_color": {
"hex": "#CBCBCBFF"
},
"edit_box_border_color_normal": {
"hex": "#383838FF"
},
"edit_box_border_color_focused": {
"hex": "#444444FF"
},
"list_entry_color_selected_hovered": {
"hex": "#AFAFAFFF"
},
"text_editor_sidebar_color": {
"hex": "#A4A4A4FF"
},
"text_editor_line_number_text_color_normal": {
"hex": "#696969FF"
},
"text_editor_line_number_text_color_selected": {
"hex": "#464646FF"
},
"listing_dot_color_1": {
"hex": "#438DD0FF"
},
"listing_dot_color_2": {
"hex": "#AB3950FF"
},
"listing_dot_color_3": {
"hex": "#B2740CFF"
},
"suggestions_background_color": {
"hex": "#A2A2A2FF"
},
"suggestions_text_color_normal": {
"hex": "#2D2D2DFF"
},
"suggestions_text_color_selected": {
"hex": "#205EA2FF"
},
"ui_texture_color": {
"hex": "#2D2D2DFF"
},
"generic_text_base_color": {
"hex": "#252525FF"
},
"element_label_color_normal": {
"hex": "#2D2D2DFF"
},
"element_label_color_inactive": {
"hex": "#8A8989FF"
},
"edit_box_text_color_normal": {
"hex": "#2D2D2DFF"
},
"edit_box_text_color_uneditable": {
"hex": "#8A8989FF"
},
"edit_box_suggestion_text_color": {
"hex": "#8A8989FF"
},
"description_area_text_color": {
"hex": "#2D2D2DFF"
},
"text_editor_text_color": {
"hex": "#484E53FF"
},
"success_text_color": {
"hex": "#197E02FF"
},
"error_text_color": {
"hex": "#A41B1BFF"
},
"warning_text_color": {
"hex": "#9B6105FF"
},
"text_editor_text_formatting_nested_text_color_1": {
"hex": "#A10F0FFF"
},
"text_editor_text_formatting_nested_text_color_2": {
"hex": "#B27D09FF"
},
"text_editor_text_formatting_nested_text_color_3": {
"hex": "#66A80AFF"
},
"text_editor_text_formatting_nested_text_color_4": {
"hex": "#089891FF"
},
"text_editor_text_formatting_nested_text_color_5": {
"hex": "#072E8DFF"
},
"text_editor_text_formatting_nested_text_color_6": {
"hex": "#26069DFF"
},
"text_editor_text_formatting_nested_text_color_7": {
"hex": "#6A0685FF"
},
"text_editor_text_formatting_nested_text_color_8": {
"hex": "#730303FF"
},
"text_editor_text_formatting_nested_text_color_9": {
"hex": "#854306FF"
},
"text_editor_text_formatting_nested_text_color_10": {
"hex": "#918504FF"
},
"text_editor_text_formatting_nested_text_color_11": {
"hex": "#267A07FF"
},
"text_editor_text_formatting_nested_text_color_12": {
"hex": "#363CF5FF"
},
"text_editor_text_formatting_brackets_color": {
"hex": "#FF3A0064"
}
}

View file

@ -0,0 +1,2 @@
type = user_variables

322
modpack/index.toml Normal file
View file

@ -0,0 +1,322 @@
hash-format = "sha256"
[[files]]
file = "config/fancymenu/custom_gui_screens.txt"
hash = "ff492043eaf454c46e949d5eef32ece90cc5a19feb50a161dd29a43b5732c880"
[[files]]
file = "config/fancymenu/customizablemenus.txt"
hash = "6f839fad9a09709e9c2d1b269218da6a515ea31495575de5bdbc901147740327"
[[files]]
file = "config/fancymenu/customization/title_screen_layout.txt"
hash = "55308f9b22a4e7b5e14368e36d5e3e763bc132a61711e7b2d1c534a2f8340c75"
[[files]]
file = "config/fancymenu/layout_editor/widgets/element_layer_control.lewidget"
hash = "c29d70cb4c437304198a51c02e638016f6df8049f2eebccb2e1a49fca759a852"
[[files]]
file = "config/fancymenu/legacy_checklist.txt"
hash = "9a25d3dc708e43eabafce5479a13c02dae15bc7f673afb2745b8b2ba48a97dc0"
[[files]]
file = "config/fancymenu/options.txt"
hash = "3a0cd8e2ca66e6fe06d89d57fc71fd75f4b5650e9844aed7b3e2633fd2fa9b18"
[[files]]
file = "config/fancymenu/ui_themes/dark.json"
hash = "45541e5c5019585b9c4ff114aed530826129e8a7ac6866b5d5fe41dd278abae4"
[[files]]
file = "config/fancymenu/ui_themes/light.json"
hash = "6954379d658fdf496f162792a3244f0f08635858ed4b0553a718a7ef63b8a620"
[[files]]
file = "config/fancymenu/user_variables.db"
hash = "3d7d4cda73d6bde134a568ccbe4e8d2e7fbe701570012b71fa45acdb2258c823"
[[files]]
file = "mods/3dskinlayers.pw.toml"
hash = "7cfd3485931eb237e346fbda606b4b28663e9d3b3efa56d37c69355681f0a1d8"
metafile = true
[[files]]
file = "mods/anti-xray.pw.toml"
hash = "54094fe0d14e59b037f1efda0200ab9723b86eb51fb644d726f28b97261a72f8"
metafile = true
[[files]]
file = "mods/appleskin.pw.toml"
hash = "c22ebc9646c063a5c53acae5b49a0b54f8b21500ecc79a9c52b142775512b2d6"
metafile = true
[[files]]
file = "mods/automatic-potato.pw.toml"
hash = "be64079e6b07ea060e3f9b375d5e888cf941880619cdd7eba922f68419922d8e"
metafile = true
[[files]]
file = "mods/balm.pw.toml"
hash = "307857742e77d6a95af92b963f890459aa62ddce3fe9bf707a91484f86c97ceb"
metafile = true
[[files]]
file = "mods/c2me-fabric.pw.toml"
hash = "bef59bd827f573cb042f18ac04c23fa917878660c5922a775a7eafdc3fef5726"
metafile = true
[[files]]
file = "mods/cc-tweaked.pw.toml"
hash = "18f9e66d50c38fca6d079e8b6c01feb62f2966bac7f0aff94eb3f62e75dc7d4f"
metafile = true
[[files]]
file = "mods/chested-companions.pw.toml"
hash = "c2c488f661fe99fad03fbdfd1f9c811317f764ca90aca929a01a9038d60eb9ef"
metafile = true
[[files]]
file = "mods/collective.pw.toml"
hash = "df6bd40c17e1d41acb88646d0335de236840d9b4e4747ee4551eb0ea82b305f5"
metafile = true
[[files]]
file = "mods/convenient-mobgriefing.pw.toml"
hash = "30572b894b2e3a4f87968217718446f1018e67a5b6efdfe5c925e4f8c5da4f6e"
metafile = true
[[files]]
file = "mods/cooking-for-blockheads.pw.toml"
hash = "00abfe584bdf19c447d6647ef6f7b1ef37ee0d767e31b3f0538a278992a6c059"
metafile = true
[[files]]
file = "mods/corgilib.pw.toml"
hash = "a6558ac1a7aeac97e3a37a4f31b194e40b695ed3582a15328602723041045db8"
metafile = true
[[files]]
file = "mods/energized-power.pw.toml"
hash = "ca02da2e15c8fcb0aab806c04a7bfe2bffabc505f102e14332283cde1c49e964"
metafile = true
[[files]]
file = "mods/entityculling.pw.toml"
hash = "dff937930734d00e3cd2c644d20d5015df3ad53cc9d23fae2704326774cadbad"
metafile = true
[[files]]
file = "mods/fabric-api.pw.toml"
hash = "f9b05ef1c6fb7e4d1c44b9468d7deacfe493d9f34182587e21ef1cb696fc677e"
metafile = true
[[files]]
file = "mods/fancymenu.pw.toml"
hash = "36fad6f62eac7f80e5a0323f2b226070c48be0b3b4d6de00c8c1f08b5712f619"
metafile = true
[[files]]
file = "mods/figura.pw.toml"
hash = "94680beaf66d376c026c7cc0825a2500c69630540bf835ad1a617d3cd6daa702"
metafile = true
[[files]]
file = "mods/forge-config-api-port.pw.toml"
hash = "2df76fcc5bacce682495502f342be0c1f74a33bf0835d80dd0d3d5fc0d2f3b19"
metafile = true
[[files]]
file = "mods/frozenlib.pw.toml"
hash = "a345a9324a410d042f527a6da333ce58f265d1eca2789ed7113a7c8b780ee278"
metafile = true
[[files]]
file = "mods/geckolib.pw.toml"
hash = "364288dc3923f02c34b1affd304cc28b6bcf2992678a80101c4d9ac95a0ea02f"
metafile = true
[[files]]
file = "mods/glitchcore.pw.toml"
hash = "1e4e37a781f247c943ccfd23d3a6cdf317297a4ef43743fe5141d1f16e81876b"
metafile = true
[[files]]
file = "mods/growableores.pw.toml"
hash = "f505005ce258e4676c9135ee1aec77fcf8351dc7dde5b8835c466c7e03b530d6"
metafile = true
[[files]]
file = "mods/item-collectors.pw.toml"
hash = "bb0b92175c863c9ff548d4ba054ce778a3f615cff98ac5b2ec811ba0caac2d07"
metafile = true
[[files]]
file = "mods/jade.pw.toml"
hash = "e5506cea71f62e147a45e6c72a55a430fce5937024f648c819c15dc14b500462"
metafile = true
[[files]]
file = "mods/konkrete.pw.toml"
hash = "76776cceeb1cc6201e1a91d589345e7c302be9ca083386a682178eb79fca88a4"
metafile = true
[[files]]
file = "mods/lambdynamiclights.pw.toml"
hash = "362ca9cd123e8fd64b8fc097dcdcbfe2ca2bf5dc18357848a1d16a025cad46c6"
metafile = true
[[files]]
file = "mods/large-fluid-tank.pw.toml"
hash = "a3cdc6f2369554b560aa3901c6d07660738870f28900a67b73221ee674932ddb"
metafile = true
[[files]]
file = "mods/lithium.pw.toml"
hash = "e10c94949bb58b8cfa9993a9f60c9283d5858d4d55fc450dbff2953644f45047"
metafile = true
[[files]]
file = "mods/melody.pw.toml"
hash = "b7a1e9b50adf036a01e662bd72927aacf39058b606216c415c5e7a158acf53a9"
metafile = true
[[files]]
file = "mods/mine-spawners.pw.toml"
hash = "65c1c0b3739a92dfd6a8fc9e6f23a24ab03e4f0dfd432a3f1183a98a8583c6a1"
metafile = true
[[files]]
file = "mods/mob-heads.pw.toml"
hash = "7cab9067f384e635d8f9321103865f4280235d18a6140db5e9e66d564409caf7"
metafile = true
[[files]]
file = "mods/mob-lassos.pw.toml"
hash = "aca901c6b94138cc51ef071b182d3a89e07cbbaac4382ea410e66c2ed6d0eb1f"
metafile = true
[[files]]
file = "mods/modmenu.pw.toml"
hash = "6eea5e1db3dbca126b82f211bf0d2fcf2cf13097023fdef3dd668e48581a73d0"
metafile = true
[[files]]
file = "mods/mutant-monsters.pw.toml"
hash = "27e831fd1b4c353112f03373b33fba5ecb6608229c510cd1a6cb2d8f4265a722"
metafile = true
[[files]]
file = "mods/my_totem_doll.pw.toml"
hash = "d5c8a515987ea81c2e8eb838b01cd027e0b743269e17589ec7bfa16ea8e295e2"
metafile = true
[[files]]
file = "mods/oh-the-biomes-weve-gone.pw.toml"
hash = "812f4e05ecbc6348ac29cccbb6ea5e05880c6d8ea702e9949a11a9e0290f4e99"
metafile = true
[[files]]
file = "mods/oh-the-trees-youll-grow.pw.toml"
hash = "27d2eb2131d2b9654e4e8f888e1a7568e5dea29448d5cef79fbdf7ba6ea8b754"
metafile = true
[[files]]
file = "mods/otterlib.pw.toml"
hash = "68124e36e8ef53b38e446c2d8ddbbcb788dda5030361262b55b0036beeb27ba2"
metafile = true
[[files]]
file = "mods/placeholder-api.pw.toml"
hash = "0993352e081593fca386a8a4e6473ece541a27e018c8384239f27f79d73133a0"
metafile = true
[[files]]
file = "mods/puzzles-lib.pw.toml"
hash = "d47c73ae52d88b862864a9d8387c93cbeffe2513abff18c3c3c3c450eb4cbdd2"
metafile = true
[[files]]
file = "mods/scalable-cats-force.pw.toml"
hash = "94348eb859cbe4152cbc2f665da89414667d566ca1ed80fff45acea942bb8e69"
metafile = true
[[files]]
file = "mods/serene-seasons.pw.toml"
hash = "e3eabb9d68f1b7bfc48bdd7846d0b743f3b5fbeaeebf63fecf1ced3d79acdc7e"
metafile = true
[[files]]
file = "mods/shulker-drops-two.pw.toml"
hash = "a8ed6d57daec8b95c9e96b6036f51e0054210137c7f9447c698eba31a92baca8"
metafile = true
[[files]]
file = "mods/simple-copper-pipes.pw.toml"
hash = "2bb2bda45ff0a09aa3b9c6b346182191673d86ac98984751d61ec6945c9d8834"
metafile = true
[[files]]
file = "mods/sit!.pw.toml"
hash = "b989e91c873b314ec3dc5a820d2c7643e723a21daf30f054669924418324c427"
metafile = true
[[files]]
file = "mods/sodium.pw.toml"
hash = "1745f4ec1732e16be5f2c88780a66ca2a94c76c06c5e862db0b2c6cf63b16a47"
metafile = true
[[files]]
file = "mods/sound-physics-remastered.pw.toml"
hash = "eb8174f1f5671399d4f057451e8425b4996577ea4534c39d88e573e13ecd3e0a"
metafile = true
[[files]]
file = "mods/stellarity.pw.toml"
hash = "c36849082c02213b10cef25d61e9bfb25dfb5c7cc4822fd69efd4dd89382f4b1"
metafile = true
[[files]]
file = "mods/supermartijn642s-config-lib.pw.toml"
hash = "8e009ac87710fbd8f5990285d36ab2b4755e932664ca1bcb9cdfac116d6e3b6d"
metafile = true
[[files]]
file = "mods/supermartijn642s-core-lib.pw.toml"
hash = "a21afaf5777783244b77cd9b4333759bfa94ddd3ddc359f1a00355100430f177"
metafile = true
[[files]]
file = "mods/terrablender.pw.toml"
hash = "b59f4d3368c4e6fa4dd27fda4e9983aecababd81ee27e104084c77eefba83f49"
metafile = true
[[files]]
file = "mods/tesseract.pw.toml"
hash = "25c84ef61117880eb5747fab1c0307390c6132422d4f92c974e5d138fe922858"
metafile = true
[[files]]
file = "mods/trash-cans.pw.toml"
hash = "9239555187f50289032bcaa6285bd8766ea465dc8e0f9015a22314ed8078cae5"
metafile = true
[[files]]
file = "mods/vanilla-backpacks.pw.toml"
hash = "ac5791d6434a4dd551851bb9c8aa3b4e76962520d132de27be683e2c08c1c752"
metafile = true
[[files]]
file = "mods/wormhole.pw.toml"
hash = "b03855bf6f1d2aa8d8ccff4af5ae383355ef20a0c7dc975e26b9e8138a37b0b2"
metafile = true
[[files]]
file = "mods/xaeros-minimap.pw.toml"
hash = "72ddbc276a2fd7aca5443c0501a59ec96d0d6090917a99a30dc71abd0dd3785d"
metafile = true
[[files]]
file = "resourcepacks/stellarity-rp.pw.toml"
hash = "1822c138d4f03ed2505afb9d19ce9e1180806a11dc978a5812a7e4d48ef561c5"
metafile = true

View file

@ -0,0 +1,13 @@
name = "3D Skin Layers"
filename = "skinlayers3d-fabric-1.9.0-mc1.21.6.jar"
side = "client"
[download]
url = "https://cdn.modrinth.com/data/zV5r3pPn/versions/nprDnVnJ/skinlayers3d-fabric-1.9.0-mc1.21.6.jar"
hash-format = "sha512"
hash = "17974abddf9ff24e63cbba477dc4d705e941c273cd186def2288e1976402c2cffb3dc8cc766c985dfc48f5482b9b399e0c873aeee7c18367258de90c59adbf83"
[update]
[update.modrinth]
mod-id = "zV5r3pPn"
version = "nprDnVnJ"

View file

@ -0,0 +1,13 @@
name = "AntiXray"
filename = "antixray-fabric-1.4.10+1.21.6.jar"
side = "server"
[download]
url = "https://cdn.modrinth.com/data/sml2FMaA/versions/8oiUayeD/antixray-fabric-1.4.10%2B1.21.6.jar"
hash-format = "sha512"
hash = "e62a530c286c67f7221871609760896740261444172d941d958af892eb7ccb2d659318ed1352eb7805a1f858039ebc6ad6d5f83eb0b75632a61109aff9178bcb"
[update]
[update.modrinth]
mod-id = "sml2FMaA"
version = "8oiUayeD"

View file

@ -0,0 +1,13 @@
name = "AppleSkin"
filename = "appleskin-fabric-mc1.21.6-3.0.6.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/EsAfCjCV/versions/YAjCkZ29/appleskin-fabric-mc1.21.6-3.0.6.jar"
hash-format = "sha512"
hash = "e36c78b036676b3fac1ec3edefdcf014ccde8ce65fd3e9c1c2f9a7bbc7c94185168a2cd6c8c27564e9204cd892bfbaae9989830d1acea83e6f37187b7a43ad7d"
[update]
[update.modrinth]
mod-id = "EsAfCjCV"
version = "YAjCkZ29"

View file

@ -0,0 +1,13 @@
name = "automatic-potato"
filename = "VersionCheckerMod-2.5.0.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/fLArsyMM/versions/oFGgQUPZ/VersionCheckerMod-2.5.0.jar"
hash-format = "sha512"
hash = "7e00814ca9c69b0276676f4f1a6b3941d97fe869a4c815759d0cf95bf518b926fa2aaf7f444e266b82be2d90e325889123780be2efe7b1f18cd4e5114c4af6dd"
[update]
[update.modrinth]
mod-id = "fLArsyMM"
version = "oFGgQUPZ"

13
modpack/mods/balm.pw.toml Normal file
View file

@ -0,0 +1,13 @@
name = "Balm"
filename = "balm-fabric-1.21.8-21.8.8.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/MBAkmtvl/versions/c8Bb5uUc/balm-fabric-1.21.8-21.8.8.jar"
hash-format = "sha512"
hash = "9abb52110b4c1190192672590ee9c36d06b437379d25911a4bcd8990e041574a40f7c37caab11872f0f15d84cc34c34dc74af26c1dabc73b231af4d3d546a5bb"
[update]
[update.modrinth]
mod-id = "MBAkmtvl"
version = "c8Bb5uUc"

View file

@ -0,0 +1,13 @@
name = "Concurrent Chunk Management Engine (Fabric)"
filename = "c2me-fabric-mc1.21.8-0.3.5+alpha.0.8.jar"
side = "server"
[download]
url = "https://cdn.modrinth.com/data/VSNURh3q/versions/7lwPGYpL/c2me-fabric-mc1.21.8-0.3.5%2Balpha.0.8.jar"
hash-format = "sha512"
hash = "d02ce60e3816326657e40a4cff8e1fdaea1911d8b429e82b23cde997f61c78ed0f68f32f7f57a58069cda624b688cabb863cba17a3d251eed32d6b17dabf70fc"
[update]
[update.modrinth]
mod-id = "VSNURh3q"
version = "7lwPGYpL"

View file

@ -0,0 +1,13 @@
name = "CC: Tweaked"
filename = "cc-tweaked-1.21.8-fabric-1.116.1.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/gu7yAYhd/versions/Xt7jKPpO/cc-tweaked-1.21.8-fabric-1.116.1.jar"
hash-format = "sha512"
hash = "2f4d57b80ae0710672e0fffaaa204f3369bec1ae38e93d2d1598e3b711fc453b520b555a14d1913272fea9eea7d40b76b4ec319bc006d93c349b0faab91c2404"
[update]
[update.modrinth]
mod-id = "gu7yAYhd"
version = "Xt7jKPpO"

View file

@ -0,0 +1,13 @@
name = "Chested Companions"
filename = "chestedcompanions-1.3.3-1.21.8-FABRIC.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/yCDkPh3W/versions/kwPH5Xlr/chestedcompanions-1.3.3-1.21.8-FABRIC.jar"
hash-format = "sha512"
hash = "1e7266f5257d825db7a86190fe4bcc4c100fa5b8d7576c6ae9de31d9f2693c9f04bd4d4fb59c780ac78daf03844fe8798637e3a6576aefb685b538af2b97c77c"
[update]
[update.modrinth]
mod-id = "yCDkPh3W"
version = "kwPH5Xlr"

View file

@ -0,0 +1,13 @@
name = "Collective"
filename = "collective-1.21.8-8.4.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/e0M1UDsY/versions/mld0ZPD9/collective-1.21.8-8.4.jar"
hash-format = "sha512"
hash = "ef5fc74d45e6528fd3a358bff1ad038ace3cda1a3cd20ac91fe8a5215c39ca51f6d1e2c63f04df4bdb5c44d7798233cf6e71c03737badf677357f0a8f2bddcc9"
[update]
[update.modrinth]
mod-id = "e0M1UDsY"
version = "mld0ZPD9"

View file

@ -0,0 +1,13 @@
name = "Convenient mobGriefing"
filename = "convenient-mobgriefing-2.1.5.jar"
side = "server"
[download]
url = "https://cdn.modrinth.com/data/FJI3H6YI/versions/iQ4OSZrU/convenient-mobgriefing-2.1.5.jar"
hash-format = "sha512"
hash = "36086a5bcba40d241ccd6b531de61118143b0ba8c0960792a134a395b5287fbc1df0bf824bed0624f0c6800443428cbe1a7d3d34edfd5b463baa68bdb575f2cb"
[update]
[update.modrinth]
mod-id = "FJI3H6YI"
version = "iQ4OSZrU"

View file

@ -0,0 +1,13 @@
name = "Cooking for Blockheads"
filename = "cookingforblockheads-fabric-1.21.8-21.8.3.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/vJnhuDde/versions/az1U2pjU/cookingforblockheads-fabric-1.21.8-21.8.3.jar"
hash-format = "sha512"
hash = "12991c2e7f44d7ed5dcc6a3bea06b8beff4d8866d6809f6ef7d7da98648e52a1a59cd30ab7283e719d4fe4cf91951e14154837f7412ba9c74bef345f934504ca"
[update]
[update.modrinth]
mod-id = "vJnhuDde"
version = "az1U2pjU"

View file

@ -0,0 +1,13 @@
name = "CorgiLib"
filename = "Corgilib-Fabric-1.21.8-7.0.0.0.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/ziOp6EO8/versions/EEKzC8dG/Corgilib-Fabric-1.21.8-7.0.0.0.jar"
hash-format = "sha512"
hash = "fde0b6fd447f022b54f55ba5d1b0cba924717e2f8d89822e6a3501a441d2385cde7c7fd464bd45aa77c20f721325ef537c45aadf93a4f1dec0a9b733a5892cca"
[update]
[update.modrinth]
mod-id = "ziOp6EO8"
version = "EEKzC8dG"

View file

@ -0,0 +1,13 @@
name = "Energized Power"
filename = "energizedpower-1.21.8-2.15.3-fabric.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/6pku8gW1/versions/IueG1V66/energizedpower-1.21.8-2.15.3-fabric.jar"
hash-format = "sha512"
hash = "d6b1a4e98353266ecb5c3f9fb12cdad591242f9827842681d9ec8acb8d2b9c74547e1ac333cce7c6a07fc3c5b25f45105d68ef9666729bd89b71e031216ac5fd"
[update]
[update.modrinth]
mod-id = "6pku8gW1"
version = "IueG1V66"

View file

@ -0,0 +1,13 @@
name = "Entity Culling"
filename = "entityculling-fabric-1.8.2-mc1.21.6.jar"
side = "client"
[download]
url = "https://cdn.modrinth.com/data/NNAgCjsB/versions/5wVZFo2d/entityculling-fabric-1.8.2-mc1.21.6.jar"
hash-format = "sha512"
hash = "528236d3d68ab4338dd0e1b3016a2381c6f341fb2b0854f93013c968710d9263f118a226abf422a6f43bb9ff7252833abf228f82dc47a099d83cf7848c55b9a7"
[update]
[update.modrinth]
mod-id = "NNAgCjsB"
version = "5wVZFo2d"

View file

@ -0,0 +1,13 @@
name = "Fabric API"
filename = "fabric-api-0.133.4+1.21.8.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/P7dR8mSH/versions/CF23l2iP/fabric-api-0.133.4%2B1.21.8.jar"
hash-format = "sha512"
hash = "e3cc9f8f60d655c916b2d31ca2a77fc15187e443e3bb8a5977dcff7a704401e8a39d633e12a649207a5923e540b6474e90f08c95655d07ae1c790d5c8aff41a5"
[update]
[update.modrinth]
mod-id = "P7dR8mSH"
version = "CF23l2iP"

View file

@ -0,0 +1,13 @@
name = "FancyMenu"
filename = "fancymenu_fabric_3.7.1_MC_1.21.8.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/Wq5SjeWM/versions/vikmNv2I/fancymenu_fabric_3.7.1_MC_1.21.8.jar"
hash-format = "sha512"
hash = "40f805625818be21e111d46ef9cdc28d651d69d71ae87fc594fab7e821b22fe2c055768ff7aa148c247bf51292dfcf95bb1e048165f1d4292fbc8bf4a10e66c6"
[update]
[update.modrinth]
mod-id = "Wq5SjeWM"
version = "vikmNv2I"

View file

@ -0,0 +1,8 @@
name = "Figura"
filename = "figura-0.1.5+1.21.8-fabric-mc.jar"
side = "both"
[download]
url = "https://lvpack.sad.ovh/files/figura-0.1.5%2B1.21.8-fabric-mc.jar"
hash-format = "sha256"
hash = "5ce620f96894dddc57c8359eee8405c29e36c2e2ef04f83c913de3db72af9603"

View file

@ -0,0 +1,13 @@
name = "Forge Config API Port"
filename = "ForgeConfigAPIPort-v21.8.1-1.21.8-Fabric.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/ohNO6lps/versions/daREdLQt/ForgeConfigAPIPort-v21.8.1-1.21.8-Fabric.jar"
hash-format = "sha512"
hash = "f7817506655bb52d9a53a1d6e25f0e9c1159e6f4137d363a9f79c5f267bfa96612898369598e29d77157e428296c7b75227e226fef93c6a98820c789c0ed1102"
[update]
[update.modrinth]
mod-id = "ohNO6lps"
version = "daREdLQt"

View file

@ -0,0 +1,13 @@
name = "FrozenLib"
filename = "FrozenLib-2.1.7-mc1.21.6.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/9KawNmQc/versions/E6B2qkBZ/FrozenLib-2.1.7-mc1.21.6.jar"
hash-format = "sha512"
hash = "498f9ce329de12a58c15f2694e8ca035a6824d29a0e8c3c8418cd8336a4d3a935e8d11e83bcd88f27ae98bab2410d7229962924723b0faeb0035cf3a39cb77ee"
[update]
[update.modrinth]
mod-id = "9KawNmQc"
version = "E6B2qkBZ"

View file

@ -0,0 +1,13 @@
name = "Geckolib"
filename = "geckolib-fabric-1.21.8-5.2.2.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/8BmcQJ2H/versions/k4Azk0wN/geckolib-fabric-1.21.8-5.2.2.jar"
hash-format = "sha512"
hash = "d0a94ad32bdee4a2147462085908dde67f9286b4c66981238391f4106a534e0fefb44bdf0fc502499f3107c6ed745054c4eb4b595ccf91e7da215b58adfb6e95"
[update]
[update.modrinth]
mod-id = "8BmcQJ2H"
version = "k4Azk0wN"

View file

@ -0,0 +1,13 @@
name = "GlitchCore"
filename = "GlitchCore-fabric-1.21.8-21.8.0.0.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/s3dmwKy5/versions/UF5OQvYS/GlitchCore-fabric-1.21.8-21.8.0.0.jar"
hash-format = "sha512"
hash = "6d5eb4b0c3350d4c0a16c264e7c4203167022e69aea8db487a270203f7e0bd6f8815ecb7bf0ad66dee7bc47ccd83347b14cf191c3a6a6ed49b1162ff44469e45"
[update]
[update.modrinth]
mod-id = "s3dmwKy5"
version = "UF5OQvYS"

View file

@ -0,0 +1,13 @@
name = "GrowableOres"
filename = "GrowableOres-3.5.0-1.21.7-Fabric.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/XGvP5TBn/versions/aqEGomtf/GrowableOres-3.5.0-1.21.7-Fabric.jar"
hash-format = "sha512"
hash = "4a125a296fe6ac0e59939191de45aa7a8fc2c201b5162009475889e5181c1f90aa40768ae7ad1212073f2e7a012d99f05838bfe102cfabf08094ffcd567f7f01"
[update]
[update.modrinth]
mod-id = "XGvP5TBn"
version = "aqEGomtf"

View file

@ -0,0 +1,13 @@
name = "Item Collectors"
filename = "itemcollectors-1.1.11-fabric-mc1.21.6.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/y9vDr4Th/versions/9PNLxjc3/itemcollectors-1.1.11-fabric-mc1.21.6.jar"
hash-format = "sha512"
hash = "1982bff58d4b9a4082a3ce11571a93b3adc4bdc1b92e6a69a8a014a762500654e63570fd86d8e09c7526824f1a23096f7a7b9addf4d5b16f278ca9b9973d860b"
[update]
[update.modrinth]
mod-id = "y9vDr4Th"
version = "9PNLxjc3"

13
modpack/mods/jade.pw.toml Normal file
View file

@ -0,0 +1,13 @@
name = "Jade 🔍"
filename = "Jade-1.21.8-Fabric-19.3.2.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/nvQzSEkH/versions/o3aatc5Q/Jade-1.21.8-Fabric-19.3.2.jar"
hash-format = "sha512"
hash = "3cf66c4a859805886777f18d354f587db366f2a7bb47781dee782bd2d29ed19500e0521b1d19c2701c8a16d6e116e7256b0ab287d387e57d02a0430e1312ed4b"
[update]
[update.modrinth]
mod-id = "nvQzSEkH"
version = "o3aatc5Q"

View file

@ -0,0 +1,13 @@
name = "Konkrete"
filename = "konkrete_fabric_1.9.12_MC_1.21.6.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/J81TRJWm/versions/ua0GnQ25/konkrete_fabric_1.9.12_MC_1.21.6.jar"
hash-format = "sha512"
hash = "85caefb91d900997ca472269629498b847cd7a3157045d3a6d2a2e17d2ebdecb6c6af159a1119d1981d24fd9c863309310de30cd2dd8ac27c59199551cb362d7"
[update]
[update.modrinth]
mod-id = "J81TRJWm"
version = "ua0GnQ25"

View file

@ -0,0 +1,13 @@
name = "LambDynamicLights - Dynamic Lights"
filename = "lambdynamiclights-4.6.0+1.21.8.jar"
side = "client"
[download]
url = "https://cdn.modrinth.com/data/yBW8D80W/versions/JWfjD8sk/lambdynamiclights-4.6.0%2B1.21.8.jar"
hash-format = "sha512"
hash = "085bf5309987d6e18d4b10b6c464c6071a542bd281e9a62bbd5fe467f369dff5b501e3cdf51fdd336ff39a3e44741795498369ff493a182b6e787c9c4bcf327e"
[update]
[update.modrinth]
mod-id = "yBW8D80W"
version = "JWfjD8sk"

View file

@ -0,0 +1,13 @@
name = "Large Fluid Tank"
filename = "largefluidtank-fabric-21.8.5.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/uMlJQMHT/versions/RWrnTlcj/largefluidtank-fabric-21.8.5.jar"
hash-format = "sha512"
hash = "41d1aecf512e38d237557274e3999bea727900ac7a26a89c616c302795ccd6d68fa872677dbb61ed3f29a5f926acc9c7ff6f68007da088ed7d3eb170056f43a9"
[update]
[update.modrinth]
mod-id = "uMlJQMHT"
version = "RWrnTlcj"

View file

@ -0,0 +1,13 @@
name = "Lithium"
filename = "lithium-fabric-0.18.0+mc1.21.8.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/gvQqBUqZ/versions/pDfTqezk/lithium-fabric-0.18.0%2Bmc1.21.8.jar"
hash-format = "sha512"
hash = "6c69950760f48ef88f0c5871e61029b59af03ab5ed9b002b6a470d7adfdf26f0b875dcd360b664e897291002530981c20e0b2890fb889f29ecdaa007f885100f"
[update]
[update.modrinth]
mod-id = "gvQqBUqZ"
version = "pDfTqezk"

View file

@ -0,0 +1,13 @@
name = "Melody"
filename = "melody_fabric_1.0.12_MC_1.21.6.jar"
side = "client"
[download]
url = "https://cdn.modrinth.com/data/CVT4pFB2/versions/NsXvHOnn/melody_fabric_1.0.12_MC_1.21.6.jar"
hash-format = "sha512"
hash = "5dc426663721bbacb9ea90ea559dba4e5a0acbb361978d6984376147cb66d9c229cdf80cd44d7d0989c804b22ceb5ed51410cadd3fbfdd5cba1eb55c0df613a9"
[update]
[update.modrinth]
mod-id = "CVT4pFB2"
version = "NsXvHOnn"

View file

@ -0,0 +1,13 @@
name = "Mine Spawners"
filename = "mine-spawners-1.6.4.jar"
side = "server"
[download]
url = "https://cdn.modrinth.com/data/7VESbzyX/versions/ZyC5wP3K/mine-spawners-1.6.4.jar"
hash-format = "sha512"
hash = "6939cbffbf9fe956f0190285d00d39192978b44976aa761c4ccfa0c158e1f3cf33210483e3c46fe1fdbe90c99692e0ff73b3d3c57cd352c2a5ea8583f57e8dc2"
[update]
[update.modrinth]
mod-id = "7VESbzyX"
version = "ZyC5wP3K"

View file

@ -0,0 +1,13 @@
name = "Mob Heads"
filename = "mob-heads-v3.6.2.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/82uI0waE/versions/TLdq8mWC/mob-heads-v3.6.2.jar"
hash-format = "sha512"
hash = "0a7a6fb8dd3d065c3dff3fbf3f9bd99a6c7fad86d881284990fdf82ee3dcb002f14263e4c1ca38e10e2d773024ed5065936cd421215cd77a3ac4fa0c63899e72"
[update]
[update.modrinth]
mod-id = "82uI0waE"
version = "TLdq8mWC"

View file

@ -0,0 +1,13 @@
name = "Mob Lassos"
filename = "MobLassos-v21.8.1-1.21.8-Fabric.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/ftOBbnu8/versions/hYRUlEli/MobLassos-v21.8.1-1.21.8-Fabric.jar"
hash-format = "sha512"
hash = "cf2a985b4c65bb40b17094e7b4fa7aa27339658cbbc1db6a851915f233e6b0d42cb69f76723be5790e04ce7fd73277979948b861482890aac376a5d53dd72d03"
[update]
[update.modrinth]
mod-id = "ftOBbnu8"
version = "hYRUlEli"

View file

@ -0,0 +1,13 @@
name = "Mod Menu"
filename = "modmenu-15.0.0.jar"
side = "client"
[download]
url = "https://cdn.modrinth.com/data/mOgUt4GM/versions/am1Siv7F/modmenu-15.0.0.jar"
hash-format = "sha512"
hash = "4a118cb4bc7e44a77b50c2f6e7187d0add9b564e752b91ad8b536044cb5c3e07a4caf81114b72080e78debbc04db573798a3d48467b6ad16bc01f7c4b43fb62e"
[update]
[update.modrinth]
mod-id = "mOgUt4GM"
version = "am1Siv7F"

View file

@ -0,0 +1,13 @@
name = "Mutant Monsters"
filename = "MutantMonsters-v21.8.0-1.21.8-Fabric.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/derP0ten/versions/7iaXl6TX/MutantMonsters-v21.8.0-1.21.8-Fabric.jar"
hash-format = "sha512"
hash = "9323ecff9f281ff998255d3610fe53a1d2e7e21570a99086b25609ad3c0cb9413f20b686b5c5408ab43cdb4d7b42a3645619bc4ffbe6f53d9bcbceafdf55e471"
[update]
[update.modrinth]
mod-id = "derP0ten"
version = "7iaXl6TX"

View file

@ -0,0 +1,13 @@
name = "My Totem Doll"
filename = "MyTotemDoll-2.2.3+1.21.8.jar"
side = "client"
[download]
url = "https://cdn.modrinth.com/data/ygYU16dG/versions/KCt17xSi/MyTotemDoll-2.2.3%2B1.21.8.jar"
hash-format = "sha512"
hash = "b4f539dba48a93fbeca0b20de16765f011c0a6a08326787014f24a3e742799ebbe15eb5d73eeab88800202846c3353d94694e22e3e180fbd751cb2bc3c494a52"
[update]
[update.modrinth]
mod-id = "ygYU16dG"
version = "KCt17xSi"

View file

@ -0,0 +1,13 @@
name = "Oh The Biomes We've Gone"
filename = "Oh-The-Biomes-Weve-Gone-Fabric-4.0.2.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/NTi7d3Xc/versions/Jtf6hgp9/Oh-The-Biomes-Weve-Gone-Fabric-4.0.2.jar"
hash-format = "sha512"
hash = "573a0569ccc8df11da862fef261e5b4a87991cf80817d4b8fb9acc45440cabbbfdab38cff779318cd0ec5c3bf4982d2c38d29d4cf2e18f946e6bbf3a5633e9bf"
[update]
[update.modrinth]
mod-id = "NTi7d3Xc"
version = "Jtf6hgp9"

View file

@ -0,0 +1,13 @@
name = "Oh The Trees You'll Grow"
filename = "Oh-The-Trees-Youll-Grow-fabric-1.21.8-8.0.1.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/g8NOG5OR/versions/WJjPLNxG/Oh-The-Trees-Youll-Grow-fabric-1.21.8-8.0.1.jar"
hash-format = "sha512"
hash = "4b21d6aca9f130291a1a0c784f1eb0c12a296ceca68ad0a2e6c047c0c6bee085328a8a39bde90f4fa574d07baa47a21577b38a59714c5fc226be6e73d6370039"
[update]
[update.modrinth]
mod-id = "g8NOG5OR"
version = "WJjPLNxG"

View file

@ -0,0 +1,13 @@
name = "OtterLib"
filename = "otterlib-0.2.2.1+1.21.8-fabric.jar"
side = "server"
[download]
url = "https://cdn.modrinth.com/data/zVVpzurY/versions/c1wkXVhH/otterlib-0.2.2.1%2B1.21.8-fabric.jar"
hash-format = "sha512"
hash = "f050fbd0284f28485fcdbc9771ca62842722bf6272e76ccffa935759e18d20904c84943ec5d6485cbb26f848f42ab8dde3b5da5cf804d79ca92f7b863b97d693"
[update]
[update.modrinth]
mod-id = "zVVpzurY"
version = "c1wkXVhH"

View file

@ -0,0 +1,13 @@
name = "Text Placeholder API"
filename = "placeholder-api-2.7.2+1.21.8.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/eXts2L7r/versions/1S1kjZ9W/placeholder-api-2.7.2%2B1.21.8.jar"
hash-format = "sha512"
hash = "66c20678e8329b0129407ab045c171e3e22a5ca13544b1fbcf5adb95f70f6bb6cb9fb4d9a2231cac7b95e32b6b26ae732b616dc437f9c927325bb20c20a55ac1"
[update]
[update.modrinth]
mod-id = "eXts2L7r"
version = "1S1kjZ9W"

View file

@ -0,0 +1,13 @@
name = "Puzzles Lib"
filename = "PuzzlesLib-v21.8.6-1.21.8-Fabric.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/QAGBst4M/versions/sYuwlGfN/PuzzlesLib-v21.8.6-1.21.8-Fabric.jar"
hash-format = "sha512"
hash = "dafda0b46f32f23c3b672c134d4d6409643238e703d541ce07717267643e4fe7346393e7d1f3ea583de7c7f4c2c5e55cf8d3af11470a5591f0cac4736ecbfdb0"
[update]
[update.modrinth]
mod-id = "QAGBst4M"
version = "sYuwlGfN"

View file

@ -0,0 +1,13 @@
name = "Scalable Cat's Force"
filename = "scalable-cats-force-fabric-3.1.8.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/zr0QMQMo/versions/rtASbMPr/scalable-cats-force-fabric-3.1.8.jar"
hash-format = "sha512"
hash = "fcd9c68551a3ca6363c4f4ac9a6b4ae2feee34e1c3ba8b8560bf89723c19167a4d5b669c7c25ed7ba909287ec4a40b3040589a93fdf8511e634a5784ec484318"
[update]
[update.modrinth]
mod-id = "zr0QMQMo"
version = "rtASbMPr"

View file

@ -0,0 +1,13 @@
name = "Serene Seasons"
filename = "SereneSeasons-fabric-1.21.8-21.8.0.0.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/e0bNACJD/versions/30NJ0mrz/SereneSeasons-fabric-1.21.8-21.8.0.0.jar"
hash-format = "sha512"
hash = "f68e85149405c313a9365e0c5621cb60063cf445fc8ce862b4891c124dab2c594f5703dd09db74c32fac398ae743a5464edb1841537ca5991b8dc55774033a7e"
[update]
[update.modrinth]
mod-id = "e0bNACJD"
version = "30NJ0mrz"

View file

@ -0,0 +1,13 @@
name = "Shulker Drops Two"
filename = "shulkerdropstwo-1.21.8-3.6.jar"
side = "server"
[download]
url = "https://cdn.modrinth.com/data/UjXIyw47/versions/duYGkd9m/shulkerdropstwo-1.21.8-3.6.jar"
hash-format = "sha512"
hash = "c491c24c60564fadfa7dbacaeb3bc29b7ec68c2e5aab8dba6a8a57c456d6362dc0d61135a0dc360726de08048b43ada3419aaac53a407a77d56cb4536952fb82"
[update]
[update.modrinth]
mod-id = "UjXIyw47"
version = "duYGkd9m"

View file

@ -0,0 +1,13 @@
name = "Simple Copper Pipes"
filename = "SimpleCopperPipes-mc1.21.6-2.0.7.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/9r4ZkgSN/versions/1hK4RC2l/SimpleCopperPipes-mc1.21.6-2.0.7.jar"
hash-format = "sha512"
hash = "fe774991303a9a31c5d67a1d8325a19384b4c5f32d61de1f7704cdedbf0f308b742b738cf8c3c59476ff706b83b973ec30bf103f36edd6da02ded8dcaa8d9e53"
[update]
[update.modrinth]
mod-id = "9r4ZkgSN"
version = "1hK4RC2l"

13
modpack/mods/sit!.pw.toml Normal file
View file

@ -0,0 +1,13 @@
name = "Sit!"
filename = "sit!-1.2.5.0+1.21.8.jar"
side = "server"
[download]
url = "https://cdn.modrinth.com/data/EsYqsGV4/versions/yGaQnuwV/sit%21-1.2.5.0%2B1.21.8.jar"
hash-format = "sha512"
hash = "041fa46958a57ee13007532cda292e6919cacb4f82228d4850e70841a7c9611e606debc3555458294a4fb18533c2cda2e787121cff3a48442ec1279bf6d967d9"
[update]
[update.modrinth]
mod-id = "EsYqsGV4"
version = "yGaQnuwV"

View file

@ -0,0 +1,13 @@
name = "Sodium"
filename = "sodium-fabric-0.6.13+mc1.21.6.jar"
side = "client"
[download]
url = "https://cdn.modrinth.com/data/AANobbMI/versions/ND4ROcMQ/sodium-fabric-0.6.13%2Bmc1.21.6.jar"
hash-format = "sha512"
hash = "ee97e3df07a6f734bc8a0f77c1f1de7f47bed09cf682f048ceb12675c51b70ba727b11fcacbb7b10cc9f79b283dd71a39751312b5c70568aa3ac9471407174db"
[update]
[update.modrinth]
mod-id = "AANobbMI"
version = "ND4ROcMQ"

View file

@ -0,0 +1,13 @@
name = "Sound Physics Remastered"
filename = "sound-physics-remastered-fabric-1.21.8-1.5.1.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/qyVF9oeo/versions/gUaL8lMJ/sound-physics-remastered-fabric-1.21.8-1.5.1.jar"
hash-format = "sha512"
hash = "b1fbdc056adebbffa2ac92f1efb3c6af08e512a2e407c243cd4efa17639284d7148a82d73c61b7d3f982029c4d2087b54944a64445776acdf6e1f680687078b7"
[update]
[update.modrinth]
mod-id = "qyVF9oeo"
version = "gUaL8lMJ"

View file

@ -0,0 +1,13 @@
name = "Stellarity"
filename = "Stellarity-5.0.1.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/bZgeDzN8/versions/hx2PYwoE/Stellarity-5.0.1.jar"
hash-format = "sha512"
hash = "7871479e7aedd00c03f5ba7910031ea67b23cc1836fd2d7ab0228003baec3d19d21f53502de82bb42c48f97316008f0e038b59a903401ceaaaa85aca506a3eac"
[update]
[update.modrinth]
mod-id = "bZgeDzN8"
version = "hx2PYwoE"

View file

@ -0,0 +1,13 @@
name = "SuperMartijn642's Config Lib"
filename = "supermartijn642configlib-1.1.8-fabric-mc1.21.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/LN9BxssP/versions/euSlaAtA/supermartijn642configlib-1.1.8-fabric-mc1.21.jar"
hash-format = "sha512"
hash = "479838148fc1979409474b460de73162b7730c36b201eb903e299c144a056fed4f6dfb4498e0ded1e93a168379ff7efe0623279aa33a82b1b222c68468c477d6"
[update]
[update.modrinth]
mod-id = "LN9BxssP"
version = "euSlaAtA"

View file

@ -0,0 +1,13 @@
name = "SuperMartijn642's Core Lib"
filename = "supermartijn642corelib-1.1.18e-fabric-mc1.21.7.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/rOUBggPv/versions/EogAG9XC/supermartijn642corelib-1.1.18e-fabric-mc1.21.7.jar"
hash-format = "sha512"
hash = "be781f54a8d875bb942552c6f7d41ad658aef39635b6a4ef1c10bc1097313f69de860e4fade7a32c9cd241ae8a2ef8a08b06d6158eeb15c084bed173647ec607"
[update]
[update.modrinth]
mod-id = "rOUBggPv"
version = "EogAG9XC"

View file

@ -0,0 +1,13 @@
name = "TerraBlender"
filename = "TerraBlender-fabric-1.21.8-6.0.0.3.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/kkmrDlKT/versions/nIklR4S9/TerraBlender-fabric-1.21.8-6.0.0.3.jar"
hash-format = "sha512"
hash = "600ed2045d4ed26f5a8ef14d44b99acc7258960344267b090d7fb2bec802088f93890a2640ff792fdca99773aae669054ad907097ed05e122bc195f6ad6db5fd"
[update]
[update.modrinth]
mod-id = "kkmrDlKT"
version = "nIklR4S9"

View file

@ -0,0 +1,13 @@
name = "Tesseract"
filename = "tesseract-1.0.37-fabric-mc1.21.6.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/OUhp5O2m/versions/2Gj7ThiK/tesseract-1.0.37-fabric-mc1.21.6.jar"
hash-format = "sha512"
hash = "ec981f47f30fd5131916c10b6f96903feaa0c7cdc5dbbfb083b046f7d11ed8fbfad94a6f61975e597cd5dc394cdfb66a0491ea6991367e7eba4cb8cf45c5655b"
[update]
[update.modrinth]
mod-id = "OUhp5O2m"
version = "2Gj7ThiK"

View file

@ -0,0 +1,13 @@
name = "Trash Cans"
filename = "trashcans-1.0.18-fabric-mc1.21.6.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/4QrnfueM/versions/cmI5UYIW/trashcans-1.0.18-fabric-mc1.21.6.jar"
hash-format = "sha512"
hash = "0c3eade103fd56bf45edf01e5d0a13bd9788433726b185f3d643f865b56dcdbf0fb6da243190a90aa9cece569639d4b39b6d2a52a07570a6be7abafbba9a0a19"
[update]
[update.modrinth]
mod-id = "4QrnfueM"
version = "cmI5UYIW"

View file

@ -0,0 +1,13 @@
name = "Backpacks!"
filename = "1.3.4-backpacks_mod-1.21.6-1.21.8.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/MGcd6kTf/versions/AsDOMHTa/1.3.4-backpacks_mod-1.21.6-1.21.8.jar"
hash-format = "sha512"
hash = "f522ca2c67c48317d851330187120d5e9f805c0943ca6da629dedf6732611d622d51955e6f1847f46c91a3dad57d72a0d2bd03aa40defff43340c76327cece9c"
[update]
[update.modrinth]
mod-id = "MGcd6kTf"
version = "AsDOMHTa"

View file

@ -0,0 +1,13 @@
name = "Wormhole (Portals)"
filename = "wormhole-1.1.16-fabric-mc1.21.6.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/6nHZTTjQ/versions/Rl5sWnG2/wormhole-1.1.16-fabric-mc1.21.6.jar"
hash-format = "sha512"
hash = "cf952f4ba5805b34ac29ee580b957b96ce6cca04a25717203b414dac0e413658f549983099697e9a855ad3b4e6f077121b5643917cb27eb869ebe276b52dc928"
[update]
[update.modrinth]
mod-id = "6nHZTTjQ"
version = "Rl5sWnG2"

View file

@ -0,0 +1,13 @@
name = "Xaero's Minimap"
filename = "Xaeros_Minimap_25.2.12_Fabric_1.21.8.jar"
side = "both"
[download]
url = "https://cdn.modrinth.com/data/1bokaNcj/versions/StqWcPqA/Xaeros_Minimap_25.2.12_Fabric_1.21.8.jar"
hash-format = "sha512"
hash = "d2d54d7b4d017da31048626a0d90e4b81601f7e82de5214da6941a99ebbd267ee0d8021d8552c49a605125940516bbbef11c9525221a4c14a2d9d74d15695745"
[update]
[update.modrinth]
mod-id = "1bokaNcj"
version = "StqWcPqA"

13
modpack/pack.toml Normal file
View file

@ -0,0 +1,13 @@
name = "Lv Modpack"
author = "Adrians"
version = "1.0.0"
pack-format = "packwiz:1.1.0"
[index]
file = "index.toml"
hash-format = "sha256"
hash = "e456e90aa0027f63cd26613f4d7781c3e1afb88c8041aa2dad677f0db8828496"
[versions]
fabric = "0.17.2"
minecraft = "1.21.8"

View file

@ -0,0 +1,13 @@
name = "Stellarity Resource Pack"
filename = "Stellarity-5.0.1-RP.zip"
side = "client"
[download]
url = "https://cdn.modrinth.com/data/NfszI0rL/versions/vhdabYVQ/Stellarity-5.0.1-RP.zip"
hash-format = "sha512"
hash = "e00e9b51af3b0034ea71c080d6cf216fa858287e3db02a6a1319eeb5009cf0c0ff7793f0860c76e8369a27151e9927df56f4db14866b0eb7da892d6a532e5015"
[update]
[update.modrinth]
mod-id = "NfszI0rL"
version = "vhdabYVQ"