Compare commits
2 commits
master
...
tlater/aut
Author | SHA1 | Date | |
---|---|---|---|
dc56d6b1f2 | |||
27f28457b2 |
185 changed files with 307 additions and 4359 deletions
configuration
flake.lockflake.nixkeys
pkgs/minecraftmon
.packwizignoreindex.toml
config/defaultoptions
extra/config
cataclysm.tomlinventoryhud-client.tomliris.propertiessodium-extra-options.jsonsodiumdynamiclights-client.tomlsodiumextras-client.toml
keybindings.txtoptions.txtservers.datmods
aether-emissivity.pw.tomlaether-enhanced-extinguishing.pw.tomlaether.pw.tomlambientsounds.pw.tomlappleskin.pw.tomlarchitectury-api.pw.tomlarmourers-workshop.pw.tomlattributefix.pw.tomlbad-wither-no-cookie.pw.tomlbadoptimizations.pw.tomlbalm.pw.tomlbarbeques-delight-forge.pw.tomlberry-good.pw.tomlbetter-advancements.pw.tomlbetter-animations-collection.pw.tomlbetter-third-person.pw.tomlbetterf3.pw.tomlblueprint.pw.tomlbookshelf-lib.pw.tomlcant-sleep-clowns-will-eat-me.pw.tomlcloth-config.pw.tomlclumps.pw.tomlcobblemon-additions.pw.tomlcobblemon-counter.pw.tomlcobblemon-fight-or-flight-reborn.pw.tomlcobblemon-integrations.pw.tomlcobblemon-pokenav.pw.tomlcobblemon-unchained.pw.tomlcobblemon.pw.tomlcolorwheel-patcher.pw.tomlcolorwheel.pw.tomlcomforts.pw.tomlconnector.pw.tomlcontrolling.pw.tomlcorn-delight.pw.tomlcorpse.pw.tomlcrabbers-delight.pw.tomlcreate-dragons-plus.pw.tomlcreate-enchantment-industry.pw.tomlcreate.pw.tomlcreativecore.pw.tomlcurios.pw.tomlcut-through.pw.tomldeep-aether.pw.tomldefault-options.pw.tomldiagonal-fences.pw.tomldiagonal-walls.pw.tomldiagonal-windows.pw.tomldistanthorizons.pw.tomldistinguished-potions.pw.tomldynamic-fps.pw.tomledivadlib.pw.tomlemi-create-schematics.pw.tomlemi-enchanting.pw.tomlemi-loot.pw.tomlemi-ores.pw.tomlemi-professions-(emip).pw.tomlemi.pw.tomlemiffect.pw.tomlenchantment-descriptions.pw.tomlends-delight.pw.tomlentityculling.pw.tomlevery-compat.pw.tomlextra-mod-integrations.pw.tomlextrastorage.pw.tomlfarmers-delight.pw.tomlforgified-fabric-api.pw.tomlfriends-and-foes-beekeeper-hut-forge.pw.tomlfriends-and-foes-flowery-mooblooms-forge.pw.tomlfriends-and-foes-forge.pw.tomlfruits-delight.pw.tomlfzzy-config.pw.tomlgeckolib.pw.tomlhardcore-revival.pw.tomlimmersiveengineering.pw.tomlimmersivemusicmod.pw.tomlinventory-hud-forge.pw.toml
|
@ -13,6 +13,7 @@
|
||||||
"${modulesPath}/profiles/minimal.nix"
|
"${modulesPath}/profiles/minimal.nix"
|
||||||
(import ../modules)
|
(import ../modules)
|
||||||
|
|
||||||
|
./services/auth
|
||||||
./services/backups.nix
|
./services/backups.nix
|
||||||
./services/battery-manager.nix
|
./services/battery-manager.nix
|
||||||
./services/conduit
|
./services/conduit
|
||||||
|
|
93
configuration/services/auth/authelia.nix
Normal file
93
configuration/services/auth/authelia.nix
Normal file
|
@ -0,0 +1,93 @@
|
||||||
|
{ config, ... }:
|
||||||
|
{
|
||||||
|
systemd.services.authelia-tlaternet.after = [ config.systemd.services.lldap-provisioning.name ];
|
||||||
|
|
||||||
|
services = {
|
||||||
|
authelia.instances.tlaternet = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
environmentVariables.AUTHELIA_AUTHENTICATION_BACKEND_LDAP_PASSWORD_FILE =
|
||||||
|
config.sops.secrets."authelia/lldap-password".path;
|
||||||
|
|
||||||
|
settings = {
|
||||||
|
authentication_backend.ldap =
|
||||||
|
let
|
||||||
|
cfglldap = config.services.lldap.settings;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
# TODO(tlater): Enable when authelia has a webhook notifier:
|
||||||
|
# https://github.com/authelia/authelia/issues/7695
|
||||||
|
password_reset.disable = true;
|
||||||
|
refresh_interval = "1m";
|
||||||
|
address = "ldap://${cfglldap.ldap_host}:${toString cfglldap.ldap_port}";
|
||||||
|
implementation = "lldap";
|
||||||
|
base_dn = cfglldap.ldap_base_dn;
|
||||||
|
user = "cn=authelia,ou=people,${cfglldap.ldap_base_dn}";
|
||||||
|
};
|
||||||
|
|
||||||
|
password_policy.zxcvbn.enabled = true;
|
||||||
|
|
||||||
|
telemetry.metrics.enabled = true;
|
||||||
|
|
||||||
|
access_control = {
|
||||||
|
default_policy = "deny";
|
||||||
|
rules = [
|
||||||
|
{
|
||||||
|
domain = "*.${config.services.nginx.domain}";
|
||||||
|
policy = "one_factor";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
notifier.filesystem.filename = "/var/lib/authelia-tlaternet/notification.txt";
|
||||||
|
|
||||||
|
session = {
|
||||||
|
cookies = [
|
||||||
|
{
|
||||||
|
domain = "${config.services.nginx.domain}";
|
||||||
|
authelia_url = "https://auth.${config.services.nginx.domain}";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
redis.host = config.services.redis.servers.authelia.unixSocket;
|
||||||
|
};
|
||||||
|
|
||||||
|
storage = {
|
||||||
|
postgres = {
|
||||||
|
address = "/var/run/postgresql";
|
||||||
|
username = config.services.authelia.instances.tlaternet.user;
|
||||||
|
database = config.services.authelia.instances.tlaternet.user;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
# Auth options
|
||||||
|
default_2fa_method = "totp";
|
||||||
|
totp.issuer = "tlater.net";
|
||||||
|
webauthn = {
|
||||||
|
display_name = "tlater.net";
|
||||||
|
enable_passkey_login = true;
|
||||||
|
|
||||||
|
attestation_conveyance_preference = "direct";
|
||||||
|
filtering.prohibit_backup_eligibility = true;
|
||||||
|
metadata = {
|
||||||
|
enabled = true;
|
||||||
|
validate_trust_anchor = true;
|
||||||
|
validate_entry = true;
|
||||||
|
validate_status = true;
|
||||||
|
validate_entry_permit_zero_aaguid = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
duo_api.disable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
secrets = {
|
||||||
|
storageEncryptionKeyFile = config.sops.secrets."authelia/storage-encryption-key".path;
|
||||||
|
jwtSecretFile = config.sops.secrets."authelia/jwt-secret".path;
|
||||||
|
sessionSecretFile = config.sops.secrets."authelia/session-secret".path;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
redis.servers.authelia = {
|
||||||
|
enable = true;
|
||||||
|
user = config.services.authelia.instances.tlaternet.user;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
6
configuration/services/auth/default.nix
Normal file
6
configuration/services/auth/default.nix
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./authelia.nix
|
||||||
|
./lldap.nix
|
||||||
|
];
|
||||||
|
}
|
44
configuration/services/auth/lldap-provisioning.nu
Normal file
44
configuration/services/auth/lldap-provisioning.nu
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
#!/usr/bin/env nushell
|
||||||
|
|
||||||
|
let groups = [{
|
||||||
|
|
||||||
|
}]
|
||||||
|
|
||||||
|
let users = [
|
||||||
|
|
||||||
|
]
|
||||||
|
|
||||||
|
let settings = open $env.LLDAP_CONFIG
|
||||||
|
let url = (
|
||||||
|
'http://' |
|
||||||
|
$in + ($settings | get http_host | default '127.0.0.1') |
|
||||||
|
$in + ':' |
|
||||||
|
$in + ($settings | get http_port | default '17170' | into string))
|
||||||
|
let user = $settings | get ldap_user_dn | default admin
|
||||||
|
let pass = open $env.LLDAP_LDAP_USER_PASS_FILE
|
||||||
|
|
||||||
|
let token = { username: $user, password: $pass } | to json | http post $'($url)/auth/simple/login' | get token
|
||||||
|
|
||||||
|
def query [operation: string, query: string, variables: list<string>] {
|
||||||
|
let body = {
|
||||||
|
query: $query,
|
||||||
|
operationName: $operation,
|
||||||
|
variables: $variables
|
||||||
|
}
|
||||||
|
|
||||||
|
let res = $body | to json | http post --headers [Authorization $'Bearer ($token)'] $'($url)/api/graphql'
|
||||||
|
|
||||||
|
if ("errors" in $res) {
|
||||||
|
let msg = "GraphQL query to LLDAP failed:\n" + ($res.errors | each {|e| $'- ($e)' | str join (char newline)})
|
||||||
|
|
||||||
|
error make {
|
||||||
|
msg: $msg,
|
||||||
|
label: {
|
||||||
|
text: "Query defined here",
|
||||||
|
span: (metadata $query).span
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$res.data
|
||||||
|
}
|
||||||
|
}
|
64
configuration/services/auth/lldap.nix
Normal file
64
configuration/services/auth/lldap.nix
Normal file
|
@ -0,0 +1,64 @@
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
{
|
||||||
|
services = {
|
||||||
|
lldap = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
ldap_base_dn = "dc=tlater,dc=net";
|
||||||
|
database_url = "postgres://lldap:@localhost/lldap?host=/var/run/postgresql";
|
||||||
|
ldap_host = "127.0.0.1";
|
||||||
|
|
||||||
|
http_host = "127.0.0.1";
|
||||||
|
http_url = "https://lldap.${config.services.nginx.domain}";
|
||||||
|
|
||||||
|
force_ldap_user_pass_reset = "always";
|
||||||
|
|
||||||
|
smtp_options.enable_password_reset = false;
|
||||||
|
|
||||||
|
environment = {
|
||||||
|
LLDAP_JWT_SECRET_FILE = config.sops.secrets."authelia/jwt-secret".path;
|
||||||
|
LLDAP_LDAP_USER_PASS_FILE = config.sops.secrets."lldap/admin-password".path;
|
||||||
|
LLDAP_KEY_SEED_FILE = config.sops.secrets."lldap/key".path;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
nginx.virtualHosts = {
|
||||||
|
"lldap.${config.services.nginx.domain}" = {
|
||||||
|
useACMEHost = "tlater.net";
|
||||||
|
forceSSL = true;
|
||||||
|
enableHSTS = true;
|
||||||
|
|
||||||
|
locations."/".proxyPass =
|
||||||
|
"http://${config.services.lldap.settings.http_host}:${toString config.services.lldap.settings.http_port}";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
systemd.services.lldap.after = [ config.systemd.services.postgresql.name ];
|
||||||
|
|
||||||
|
systemd.services.lldap-provisioning = {
|
||||||
|
requisite = [ config.systemd.services.lldap.name ];
|
||||||
|
wantedBy = [ config.systemd.services.lldap.name ];
|
||||||
|
after = [ config.systemd.services.lldap.name ];
|
||||||
|
|
||||||
|
path = [
|
||||||
|
pkgs.nushell
|
||||||
|
pkgs.lldap-cli
|
||||||
|
];
|
||||||
|
|
||||||
|
script = "exec nu ${./lldap-provisioning.nu}";
|
||||||
|
|
||||||
|
environment = {
|
||||||
|
LLDAP_LDAP_USER_PASS_FILE = config.sops.secrets."lldap/admin-password".path;
|
||||||
|
# LLDAP_CONFIG = ((pkgs.formats.toml { }).generate config.services.lldap.settings).outPath;
|
||||||
|
};
|
||||||
|
|
||||||
|
serviceConfig.Type = "oneshot";
|
||||||
|
};
|
||||||
|
}
|
|
@ -9,6 +9,10 @@ in
|
||||||
extraOptions = [ "-storage.minFreeDiskSpaceBytes=5GB" ];
|
extraOptions = [ "-storage.minFreeDiskSpaceBytes=5GB" ];
|
||||||
|
|
||||||
scrapeConfigs = {
|
scrapeConfigs = {
|
||||||
|
authelia = {
|
||||||
|
targets = [ "127.0.0.1:9959" ];
|
||||||
|
};
|
||||||
|
|
||||||
forgejo = {
|
forgejo = {
|
||||||
targets = [ "127.0.0.1:${toString config.services.forgejo.settings.server.HTTP_PORT}" ];
|
targets = [ "127.0.0.1:${toString config.services.forgejo.settings.server.HTTP_PORT}" ];
|
||||||
extraSettings.authorization.credentials_file = config.sops.secrets."forgejo/metrics-token".path;
|
extraSettings.authorization.credentials_file = config.sops.secrets."forgejo/metrics-token".path;
|
||||||
|
|
|
@ -4,9 +4,6 @@
|
||||||
config,
|
config,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
|
||||||
java = pkgs.jdk21_headless;
|
|
||||||
in
|
|
||||||
{
|
{
|
||||||
services.minecraft-server = {
|
services.minecraft-server = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -42,7 +39,7 @@ in
|
||||||
|
|
||||||
package = pkgs.writeShellApplication {
|
package = pkgs.writeShellApplication {
|
||||||
name = "minecraft-server";
|
name = "minecraft-server";
|
||||||
runtimeInputs = [ java ];
|
runtimeInputs = with pkgs; [ jdk17_headless ];
|
||||||
|
|
||||||
text = ''
|
text = ''
|
||||||
exec /var/lib/minecraft/run.sh $@
|
exec /var/lib/minecraft/run.sh $@
|
||||||
|
@ -51,19 +48,16 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
systemd.services.minecraft-server = {
|
systemd.services.minecraft-server = {
|
||||||
path = [ java ];
|
path = with pkgs; [ jdk17_headless ];
|
||||||
|
|
||||||
# Since we read from our own HTTP server, we need to wait for it
|
# Since we read from our own HTTP server, we need to wait for it
|
||||||
# to be up
|
# to be up
|
||||||
after = [ "nginx.service" ];
|
after = [ "nginx.service" ];
|
||||||
|
|
||||||
# Don't auto-start the server
|
|
||||||
wantedBy = lib.mkForce [ ];
|
|
||||||
|
|
||||||
serviceConfig = {
|
serviceConfig = {
|
||||||
# Use packwiz to install mods
|
# Use packwiz to install mods
|
||||||
ExecStartPre = [
|
ExecStartPre = [
|
||||||
"${java}/bin/java -jar ${config.services.minecraft-server.dataDir}/packwiz-installer-bootstrap.jar -g -s server 'https://minecraft.${config.services.nginx.domain}/cobblemon-pack/pack.toml'"
|
"${pkgs.jdk17_headless}/bin/java -jar ${config.services.minecraft-server.dataDir}/packwiz-installer-bootstrap.jar -g -s server 'https://minecraft.${config.services.nginx.domain}/cobblemon-pack/pack.toml'"
|
||||||
];
|
];
|
||||||
# Forge requires some bonus JVM options, which they include in a
|
# Forge requires some bonus JVM options, which they include in a
|
||||||
# little `run.sh` script
|
# little `run.sh` script
|
||||||
|
@ -77,13 +71,6 @@ in
|
||||||
group = "minecraft";
|
group = "minecraft";
|
||||||
mode = "0775";
|
mode = "0775";
|
||||||
};
|
};
|
||||||
|
|
||||||
"/srv/minecraft/cobblemon-pack"."L+" = {
|
|
||||||
user = "nginx";
|
|
||||||
group = "minecraft";
|
|
||||||
mode = "0775";
|
|
||||||
argument = "${../../pkgs/minecraftmon}";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
services.nginx.virtualHosts."minecraft.${config.services.nginx.domain}" = {
|
services.nginx.virtualHosts."minecraft.${config.services.nginx.domain}" = {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
{
|
{
|
||||||
services.postgresql = {
|
services.postgresql = {
|
||||||
package = pkgs.postgresql_14;
|
package = pkgs.postgresql_14;
|
||||||
|
@ -17,10 +17,18 @@
|
||||||
# that operation needs to be performed manually on the system as
|
# that operation needs to be performed manually on the system as
|
||||||
# well.
|
# well.
|
||||||
ensureUsers = [
|
ensureUsers = [
|
||||||
|
{
|
||||||
|
name = config.services.authelia.instances.tlaternet.user;
|
||||||
|
ensureDBOwnership = true;
|
||||||
|
}
|
||||||
{
|
{
|
||||||
name = "grafana";
|
name = "grafana";
|
||||||
ensureDBOwnership = true;
|
ensureDBOwnership = true;
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
name = "lldap";
|
||||||
|
ensureDBOwnership = true;
|
||||||
|
}
|
||||||
{
|
{
|
||||||
name = "nextcloud";
|
name = "nextcloud";
|
||||||
ensureDBOwnership = true;
|
ensureDBOwnership = true;
|
||||||
|
@ -28,7 +36,9 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
ensureDatabases = [
|
ensureDatabases = [
|
||||||
|
config.services.authelia.instances.tlaternet.user
|
||||||
"grafana"
|
"grafana"
|
||||||
|
"lldap"
|
||||||
"nextcloud"
|
"nextcloud"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
|
@ -3,6 +3,24 @@
|
||||||
defaultSopsFile = ../keys/production.yaml;
|
defaultSopsFile = ../keys/production.yaml;
|
||||||
|
|
||||||
secrets = {
|
secrets = {
|
||||||
|
"authelia/storage-encryption-key" = {
|
||||||
|
owner = "authelia-tlaternet";
|
||||||
|
group = "authelia-tlaternet";
|
||||||
|
};
|
||||||
|
"authelia/jwt-secret" = {
|
||||||
|
owner = "authelia-tlaternet";
|
||||||
|
group = "authelia-tlaternet";
|
||||||
|
};
|
||||||
|
"authelia/session-secret" = {
|
||||||
|
owner = "authelia-tlaternet";
|
||||||
|
group = "authelia-tlaternet";
|
||||||
|
};
|
||||||
|
"authelia/lldap-password" = {
|
||||||
|
owner = "authelia-tlaternet";
|
||||||
|
group = "lldap";
|
||||||
|
mode = "0440";
|
||||||
|
};
|
||||||
|
|
||||||
"battery-manager/email" = { };
|
"battery-manager/email" = { };
|
||||||
|
|
||||||
"battery-manager/password" = { };
|
"battery-manager/password" = { };
|
||||||
|
@ -28,6 +46,10 @@
|
||||||
"heisenbridge/as-token" = { };
|
"heisenbridge/as-token" = { };
|
||||||
"heisenbridge/hs-token" = { };
|
"heisenbridge/hs-token" = { };
|
||||||
|
|
||||||
|
# lldap
|
||||||
|
"lldap/admin-password" = { };
|
||||||
|
"lldap/key" = { };
|
||||||
|
|
||||||
# Matrix-hookshot
|
# Matrix-hookshot
|
||||||
"matrix-hookshot/as-token" = { };
|
"matrix-hookshot/as-token" = { };
|
||||||
"matrix-hookshot/hs-token" = { };
|
"matrix-hookshot/hs-token" = { };
|
||||||
|
|
56
flake.lock
generated
56
flake.lock
generated
|
@ -208,11 +208,11 @@
|
||||||
"utils": "utils"
|
"utils": "utils"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1749105467,
|
"lastModified": 1727447169,
|
||||||
"narHash": "sha256-hXh76y/wDl15almBcqvjryB50B0BaiXJKk20f314RoE=",
|
"narHash": "sha256-3KyjMPUKHkiWhwR91J1YchF6zb6gvckCAY1jOE+ne0U=",
|
||||||
"owner": "serokell",
|
"owner": "serokell",
|
||||||
"repo": "deploy-rs",
|
"repo": "deploy-rs",
|
||||||
"rev": "6bc76b872374845ba9d645a2f012b764fecd765f",
|
"rev": "aa07eb05537d4cd025e2310397a6adcedfe72c76",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -300,11 +300,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1750903843,
|
"lastModified": 1747742835,
|
||||||
"narHash": "sha256-Ng9+f0H5/dW+mq/XOKvB9uwvGbsuiiO6HrPdAcVglCs=",
|
"narHash": "sha256-kYL4GCwwznsypvsnA20oyvW8zB/Dvn6K5G/tgMjVMT4=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "disko",
|
"repo": "disko",
|
||||||
"rev": "83c4da299c1d7d300f8c6fd3a72ac46cb0d59aae",
|
"rev": "df522e787fdffc4f32ed3e1fca9ed0968a384d62",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -358,11 +358,11 @@
|
||||||
"flake-compat": {
|
"flake-compat": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1733328505,
|
"lastModified": 1696426674,
|
||||||
"narHash": "sha256-NeCCThCEP3eCl2l/+27kNNK7QrwZB1IJCrXfrbv5oqU=",
|
"narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=",
|
||||||
"owner": "edolstra",
|
"owner": "edolstra",
|
||||||
"repo": "flake-compat",
|
"repo": "flake-compat",
|
||||||
"rev": "ff81ac966bb2cae68946d5ed5fc4994f96d0ffec",
|
"rev": "0f9255e01c2351cc7d116c072cb317785dd33b33",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -595,11 +595,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1748450994,
|
"lastModified": 1746877938,
|
||||||
"narHash": "sha256-BWdJ+3lPmK99kjWfBlppKSRIH0sBlT1fpUkSvlgmvoA=",
|
"narHash": "sha256-N9J96pSPg4vbozV+ZZ++dwLnMIf2Le6ONNMO0kZCj1M=",
|
||||||
"owner": "reckenrode",
|
"owner": "reckenrode",
|
||||||
"repo": "nix-foundryvtt",
|
"repo": "nix-foundryvtt",
|
||||||
"rev": "d5fe29ab69176aa0c7727fa7c57889a2aa577355",
|
"rev": "f1b401831d796dd94cf5a11b65fd169a199d4ff0",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -730,11 +730,11 @@
|
||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1743014863,
|
"lastModified": 1702272962,
|
||||||
"narHash": "sha256-jAIUqsiN2r3hCuHji80U7NNEafpIMBXiwKlSrjWMlpg=",
|
"narHash": "sha256-D+zHwkwPc6oYQ4G3A1HuadopqRwUY/JkMwHz1YF7j4Q=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "bd3bac8bfb542dbde7ffffb6987a1a1f9d41699f",
|
"rev": "e97b3e4186bcadf0ef1b6be22b8558eab1cdeb5d",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -746,11 +746,11 @@
|
||||||
},
|
},
|
||||||
"nixpkgs_2": {
|
"nixpkgs_2": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1751230698,
|
"lastModified": 1748085680,
|
||||||
"narHash": "sha256-ANWE9dHPeACz3SIbUhbWZforTgfAvOS5Tg1l4yYa/B0=",
|
"narHash": "sha256-XG90Q/040NiV70gAVvoYbXg1lULbiwIzfkWmwSINyGQ=",
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "e410afb41ba16a2ceeaeff85c536d35f10bbbdcf",
|
"rev": "4e6eeca5ed45465087274fc9dc6bc2011254a0f3",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -1059,11 +1059,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1748144928,
|
"lastModified": 1740082109,
|
||||||
"narHash": "sha256-OPdi6AjrWWwZlukNwDHDWAf1CCFkHsf8JbA3rJoibXM=",
|
"narHash": "sha256-WdRNkwsIotFOSymee/yQyH46RmYtuxd1FENhvGL4KRc=",
|
||||||
"ref": "refs/heads/main",
|
"ref": "refs/heads/main",
|
||||||
"rev": "429036aa8630d2325f8a9f067cc041d628279a8e",
|
"rev": "a1b48cf2ba194054e2d8816c94a84cebc4fb5de0",
|
||||||
"revCount": 24,
|
"revCount": 23,
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "ssh://git@github.com/sonnenshift/battery-manager"
|
"url": "ssh://git@github.com/sonnenshift/battery-manager"
|
||||||
},
|
},
|
||||||
|
@ -1079,11 +1079,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1750119275,
|
"lastModified": 1747603214,
|
||||||
"narHash": "sha256-Rr7Pooz9zQbhdVxux16h7URa6mA80Pb/G07T4lHvh0M=",
|
"narHash": "sha256-lAblXm0VwifYCJ/ILPXJwlz0qNY07DDYdLD+9H+Wc8o=",
|
||||||
"owner": "Mic92",
|
"owner": "Mic92",
|
||||||
"repo": "sops-nix",
|
"repo": "sops-nix",
|
||||||
"rev": "77c423a03b9b2b79709ea2cb63336312e78b72e2",
|
"rev": "8d215e1c981be3aa37e47aeabd4e61bb069548fd",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -1209,11 +1209,11 @@
|
||||||
"systems": "systems"
|
"systems": "systems"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1731533236,
|
"lastModified": 1701680307,
|
||||||
"narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=",
|
"narHash": "sha256-kAuep2h5ajznlPMD9rnQyffWG8EM/C73lejGofXvdM8=",
|
||||||
"owner": "numtide",
|
"owner": "numtide",
|
||||||
"repo": "flake-utils",
|
"repo": "flake-utils",
|
||||||
"rev": "11707dc2f618dd54ca8739b309ec4fc024de578b",
|
"rev": "4022d587cbbfd70fe950c1e2083a02621806a725",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
35
flake.nix
35
flake.nix
|
@ -141,22 +141,27 @@
|
||||||
###########################
|
###########################
|
||||||
# Development environment #
|
# Development environment #
|
||||||
###########################
|
###########################
|
||||||
devShells.${system} = {
|
devShells.${system}.default = nixpkgs.legacyPackages.${system}.mkShell {
|
||||||
default = nixpkgs.legacyPackages.${system}.mkShell {
|
sopsPGPKeyDirs = [
|
||||||
sopsPGPKeyDirs = [
|
"./keys/hosts/"
|
||||||
"./keys/hosts/"
|
"./keys/users/"
|
||||||
"./keys/users/"
|
];
|
||||||
];
|
nativeBuildInputs = [ sops-nix.packages.${system}.sops-import-keys-hook ];
|
||||||
nativeBuildInputs = [ sops-nix.packages.${system}.sops-import-keys-hook ];
|
|
||||||
|
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
sops-nix.packages.${system}.sops-init-gpg-key
|
sops-nix.packages.${system}.sops-init-gpg-key
|
||||||
deploy-rs.packages.${system}.default
|
deploy-rs.packages.${system}.default
|
||||||
nixpkgs-fmt
|
|
||||||
];
|
nixpkgs-fmt
|
||||||
};
|
|
||||||
|
cargo
|
||||||
|
clippy
|
||||||
|
rustc
|
||||||
|
rustfmt
|
||||||
|
rust-analyzer
|
||||||
|
pkg-config
|
||||||
|
openssl
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
minecraft = nixpkgs.legacyPackages.${system}.mkShell { packages = [ pkgs.packwiz ]; };
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +1,8 @@
|
||||||
|
authelia:
|
||||||
|
storage-encryption-key: ENC[AES256_GCM,data:iMV4DGwvOOq+DZao+Jrc3i15HOPFXHv3m6dzrAb7n8zV8bdLz5c4MCpq61hQy/UfoXsRYJUxwCcj3B70JQn2Ngq6P9ik9U1ZfYrwUWIENSd/iG8CBfdasKqxEijS2F23Lj1rbB4ppTWD9lWqRoKOEaXDL9Rqn02tiLbR3OewOpwiwbzv0PkVlC6yUV+yS3Jx,iv:1V2cwoV4kG3i9e9dv7PWPCNoFPIgYiZ2m3A8Agf3Jpc=,tag:AiFLpQ7nqwx9xZ71sbCn2g==,type:str]
|
||||||
|
jwt-secret: ENC[AES256_GCM,data:QA64lfervZk=,iv:MtyCZrbGzX+oKTBPW9R+n/r8TaFkK0xSwjn/qUT6ntQ=,tag:z/XnDGiLDkJ0xPVveeR2cA==,type:str]
|
||||||
|
session-secret: ENC[AES256_GCM,data:lYk4FOO4sQM=,iv:z05n1zPt1ONNqN6sgITUTu+GSe6xev4cYm8c4xzp/Mg=,tag:TRQAbxjvaoo/tnLxO43KKg==,type:str]
|
||||||
|
lldap-password: ENC[AES256_GCM,data:cafjSRCUXAg=,iv:vZM/6efEhWjjTKNnDuS+Kj2i/eOkn20vT2JmtcHGcSU=,tag:P1GscnNwMoWCMMDbMVMPqA==,type:str]
|
||||||
porkbun:
|
porkbun:
|
||||||
api-key: ENC[AES256_GCM,data:A5J1sqwq6hs=,iv:77Mar3IX7mq7z7x6s9sSeGNVYc1Wv78HptJElEC7z3Q=,tag:eM/EF9TxKu+zcbJ1SYXiuA==,type:str]
|
api-key: ENC[AES256_GCM,data:A5J1sqwq6hs=,iv:77Mar3IX7mq7z7x6s9sSeGNVYc1Wv78HptJElEC7z3Q=,tag:eM/EF9TxKu+zcbJ1SYXiuA==,type:str]
|
||||||
secret-api-key: ENC[AES256_GCM,data:8Xv+jWYaWMI=,iv:li4tdY0pch5lksftMmfMVS729caAwfaacoztaQ49az0=,tag:KhfElBGzVH4ByFPfuQsdhw==,type:str]
|
secret-api-key: ENC[AES256_GCM,data:8Xv+jWYaWMI=,iv:li4tdY0pch5lksftMmfMVS729caAwfaacoztaQ49az0=,tag:KhfElBGzVH4ByFPfuQsdhw==,type:str]
|
||||||
|
@ -9,6 +14,9 @@ forgejo:
|
||||||
grafana:
|
grafana:
|
||||||
adminPassword: ENC[AES256_GCM,data:dYfaxUpQpzA=,iv:j5wSem8C5+V4c5qRzXQJhsU7/FOtpvrnaEyFBmW6zJ4=,tag:oc8n3TkEbjF2gjuOobZuLA==,type:str]
|
adminPassword: ENC[AES256_GCM,data:dYfaxUpQpzA=,iv:j5wSem8C5+V4c5qRzXQJhsU7/FOtpvrnaEyFBmW6zJ4=,tag:oc8n3TkEbjF2gjuOobZuLA==,type:str]
|
||||||
secretKey: ENC[AES256_GCM,data:Atruvh2MsNY=,iv:y2MaCUCEzGIydHp6G0DJHfk289S1is0twKm2oUYwDhM=,tag:nAWeg+YqaYqk6k22oBkAhQ==,type:str]
|
secretKey: ENC[AES256_GCM,data:Atruvh2MsNY=,iv:y2MaCUCEzGIydHp6G0DJHfk289S1is0twKm2oUYwDhM=,tag:nAWeg+YqaYqk6k22oBkAhQ==,type:str]
|
||||||
|
lldap:
|
||||||
|
admin-password: ENC[AES256_GCM,data:s18N1fvXtzE=,iv:FGXF5+PwDZrQIJylx+pkjY4SO0mmfiGUPZeFAINmGnY=,tag:rpPSFdWzCHhyp4ITddRekg==,type:str]
|
||||||
|
key: ENC[AES256_GCM,data:spbrfjm4Ozhu6XAPxN1cuQ==,iv:QEDCGfl75aP0T68nbWmqkPem46FHrs8nj7zVkWYcHt4=,tag:P4p3rC5I2KqPm733wbTp9g==,type:str]
|
||||||
nextcloud:
|
nextcloud:
|
||||||
tlater: ENC[AES256_GCM,data:91kDcO4hpng=,iv:ayuILRmRru4ZxTCur9H2xHuLjkDzwPdS/4lEog/tesU=,tag:qYhJxnNDcCwUM7xe7Tlcjw==,type:str]
|
tlater: ENC[AES256_GCM,data:91kDcO4hpng=,iv:ayuILRmRru4ZxTCur9H2xHuLjkDzwPdS/4lEog/tesU=,tag:qYhJxnNDcCwUM7xe7Tlcjw==,type:str]
|
||||||
steam:
|
steam:
|
||||||
|
@ -32,13 +40,8 @@ turn:
|
||||||
#ENC[AES256_GCM,data:bxhKzU5Tzezl749CDu8e8kxa7ahGuZFaPa9K3kxuD+4sg5Hi3apgDlC0n8oK0DeiK4Ks7+9Cyw==,iv:T/zVJUpNAv1rR0a9+6SDTG08ws2A1hFBs5Ia3TpT0uk=,tag:uGXb1VryM+lIJ8r0I5durA==,type:comment]
|
#ENC[AES256_GCM,data:bxhKzU5Tzezl749CDu8e8kxa7ahGuZFaPa9K3kxuD+4sg5Hi3apgDlC0n8oK0DeiK4Ks7+9Cyw==,iv:T/zVJUpNAv1rR0a9+6SDTG08ws2A1hFBs5Ia3TpT0uk=,tag:uGXb1VryM+lIJ8r0I5durA==,type:comment]
|
||||||
ssl-cert: ENC[AES256_GCM,data:xHUr14CjKslgbGh/n5jYSOuCw9JRxS6YXE4fxS+aJzFcNeSeGNqoipPeuJupZGBnQP/FCqohiHY=,iv:/OEsVqRshGL9NIvntMC42EPZSNL0u6EfhtUBqgV7qog=,tag:4pxtNjuvy/ibm6nDtKdSkw==,type:str]
|
ssl-cert: ENC[AES256_GCM,data:xHUr14CjKslgbGh/n5jYSOuCw9JRxS6YXE4fxS+aJzFcNeSeGNqoipPeuJupZGBnQP/FCqohiHY=,iv:/OEsVqRshGL9NIvntMC42EPZSNL0u6EfhtUBqgV7qog=,tag:4pxtNjuvy/ibm6nDtKdSkw==,type:str]
|
||||||
sops:
|
sops:
|
||||||
kms: []
|
lastmodified: "2025-05-26T19:48:08Z"
|
||||||
gcp_kms: []
|
mac: ENC[AES256_GCM,data:dIuIJlkz6yUKt1MrOgwQTYm8DzwldN4o2E0B89p8c0WeCxgHwWVMtIHt8QsrIet9X7aHDx97/S67XzYEGSXI/9Btc+GCEFNcoVsgZzXy+d7r3io2gQxNrQ6yJwJvStW+ZeWPujg5nJ6NNfhcweLFdquwNwNJ4DC1sGvCl5/m/QY=,iv:n5f8urvZVLfIp46nysSJh3ngx+H8qxLuycmDZVYDOCk=,tag:5ccJtPdIRZmFXDVO1V6y3w==,type:str]
|
||||||
azure_kv: []
|
|
||||||
hc_vault: []
|
|
||||||
age: []
|
|
||||||
lastmodified: "2025-02-07T17:43:24Z"
|
|
||||||
mac: ENC[AES256_GCM,data:akmD/bfgeTyFzW1quvM16cdj0fC6+CbJ8WyX9173H11yKGxvE1USQYcErpl1SHOx9Jk8LVb7f+MsUm2fjQF1MEq6xaWI74jem12lZ9CGXFaTL7e87JvfbK7pV+aKpxSBBNFyJgbYm30ibdUwxwKmNVfPb1e0HT9qwenvoV7RobM=,iv:mKqOW0ULXL711uczUbRf9NPo6uPTQoS/IbR46S+JID4=,tag:vE6NYzYLbQHDImov1XGTcg==,type:str]
|
|
||||||
pgp:
|
pgp:
|
||||||
- created_at: "2025-01-21T17:55:30Z"
|
- created_at: "2025-01-21T17:55:30Z"
|
||||||
enc: |-
|
enc: |-
|
||||||
|
@ -76,4 +79,4 @@ sops:
|
||||||
-----END PGP MESSAGE-----
|
-----END PGP MESSAGE-----
|
||||||
fp: 2f5caa73e7ceea4fcc8d2881fde587e6737d2dbc
|
fp: 2f5caa73e7ceea4fcc8d2881fde587e6737d2dbc
|
||||||
unencrypted_suffix: _unencrypted
|
unencrypted_suffix: _unencrypted
|
||||||
version: 3.9.2
|
version: 3.10.2
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
.direnv
|
|
||||||
.envrc
|
|
|
@ -1,811 +0,0 @@
|
||||||
[Etc]
|
|
||||||
#ScreenShake(on/off)
|
|
||||||
"ScreenShake(on/off)" = true
|
|
||||||
#Forced viewpoint change when hit by a grab attack
|
|
||||||
"setThirdPerson(on/off)" = true
|
|
||||||
#Forced viewpoint change when hit by a grab attack
|
|
||||||
"setFirstPerson(on/off)" = true
|
|
||||||
|
|
||||||
["bosses Common settings"]
|
|
||||||
#custombossbar(on/off)
|
|
||||||
"custombossbar(on/off)" = true
|
|
||||||
#BossMusic(on/off)
|
|
||||||
"BossMusic(on/off)" = true
|
|
||||||
#BossMusicVolume(denominator)
|
|
||||||
# Default: 1
|
|
||||||
# Range: 1 ~ 1000000
|
|
||||||
BossMusicVolume = 1
|
|
||||||
#If the boss leaves the summoned location and there is no target, it returns to the summoned location. When set to 0, it does not return
|
|
||||||
# Default: 20
|
|
||||||
# Range: 0 ~ 200
|
|
||||||
ReturnHome = 20
|
|
||||||
|
|
||||||
[Weapon]
|
|
||||||
#Armor Infinity Durability(on/off)
|
|
||||||
"Armor Infinity Durability(on/off)" = true
|
|
||||||
#Bulwark of the Flame's Cooldown
|
|
||||||
# Default: 80
|
|
||||||
# Range: 0 ~ 1000000
|
|
||||||
BulwarkOfTheFlameCooldown = 80
|
|
||||||
#Gauntlet of Bulwark's Cooldown
|
|
||||||
# Default: 80
|
|
||||||
# Range: 0 ~ 1000000
|
|
||||||
GauntletOfBulwarkCooldown = 80
|
|
||||||
#Infernal Forge's Cooldown
|
|
||||||
# Default: 80
|
|
||||||
# Range: 0 ~ 1000000
|
|
||||||
InfernalForgeCooldown = 80
|
|
||||||
#Void Forge's Cooldown
|
|
||||||
# Default: 120
|
|
||||||
# Range: 0 ~ 1000000
|
|
||||||
VoidForgeCooldown = 120
|
|
||||||
#The Incinerator's Cooldown
|
|
||||||
# Default: 400
|
|
||||||
# Range: 0 ~ 1000000
|
|
||||||
TheIncineratorCooldown = 400
|
|
||||||
#Wither Assault Shoulder Weapon's Missile Cooldown
|
|
||||||
# Default: 40
|
|
||||||
# Range: 0 ~ 1000000
|
|
||||||
WASWMissileCooldown = 40
|
|
||||||
#WASW's Wither Missile's Damage
|
|
||||||
# Default: 16.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
"WASW's WitherMissiledamage" = 16.0
|
|
||||||
#Wither Assault Shoulder Weapon's Howitzer Cooldown
|
|
||||||
# Default: 100
|
|
||||||
# Range: 0 ~ 1000000
|
|
||||||
WASWHowitzerCooldown = 100
|
|
||||||
#Void Assault Shoulder Weapon's Cooldown
|
|
||||||
# Default: 120
|
|
||||||
# Range: 0 ~ 1000000
|
|
||||||
VASWCooldown = 120
|
|
||||||
#Void Core's Cooldown
|
|
||||||
# Default: 160
|
|
||||||
# Range: 0 ~ 1000000
|
|
||||||
VoidCoreCooldown = 160
|
|
||||||
#Sandstorm's cooldown
|
|
||||||
# Default: 300
|
|
||||||
# Range: 0 ~ 1000000
|
|
||||||
Sandstormcooldown = 300
|
|
||||||
#Soul Render's Timer
|
|
||||||
# Default: 100
|
|
||||||
# Range: 0 ~ 1000000
|
|
||||||
SoulRenderCooldown = 100
|
|
||||||
#Gauntlet of Maelstrom's Timer
|
|
||||||
# Default: 180
|
|
||||||
# Range: 0 ~ 1000000
|
|
||||||
gauntletofMaelstromCooldown = 180
|
|
||||||
#The Immolator's Timer
|
|
||||||
# Default: 300
|
|
||||||
# Range: 0 ~ 1000000
|
|
||||||
immolatorCooldown = 300
|
|
||||||
#Storm Bringer's LightningStorm Damage
|
|
||||||
# Default: 6.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
"Ceraunus 's Lightning Storm Damage" = 6.0
|
|
||||||
#Ceraunus's Wave Damage
|
|
||||||
# Default: 6.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
"Ceraunus's Wave Damage'" = 6.0
|
|
||||||
#Ceraunus's Cooldown
|
|
||||||
# Default: 150
|
|
||||||
# Range: 0 ~ 1000000
|
|
||||||
"Ceraunus Cooldown" = 150
|
|
||||||
#Astrape's LightningStorm Damage
|
|
||||||
# Default: 11.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
"Astrape's Lightning Spear Damage" = 11.0
|
|
||||||
#Astrape's Wave Damage
|
|
||||||
# Default: 2.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
"Astrape's Area Damage'" = 2.0
|
|
||||||
#Astrape's Cooldown
|
|
||||||
# Default: 80
|
|
||||||
# Range: 0 ~ 1000000
|
|
||||||
"Astrape Cooldown" = 80
|
|
||||||
|
|
||||||
[Block]
|
|
||||||
#Cursed Tombstone Summon cooldown Minute
|
|
||||||
# Default: 1
|
|
||||||
# Range: 1 ~ 300
|
|
||||||
"Cursed Tombstone Summon cooldown Minute" = 1
|
|
||||||
|
|
||||||
["Entity damage"]
|
|
||||||
#Void Rune's Damage
|
|
||||||
# Default: 7.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
Voidrunedamage = 7.0
|
|
||||||
#Ashen Breath's Damage
|
|
||||||
# Default: 4.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
Ashenbreathdamage = 4.0
|
|
||||||
#Death Laser's Damage
|
|
||||||
# Default: 5.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
DeathLaserdamage = 5.0
|
|
||||||
#Death Laser's Hp Damage
|
|
||||||
# Default: 5.0
|
|
||||||
# Range: 0.0 ~ 100.0
|
|
||||||
DeathLaserHpdamage = 5.0
|
|
||||||
#Player's Laser's Damage
|
|
||||||
# Default: 7.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
Laserdamage = 7.0
|
|
||||||
#Blazing Bone's Damage
|
|
||||||
# Default: 5.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
BlazingBonedamage = 5.0
|
|
||||||
#Lionfish Spike's Damage
|
|
||||||
# Default: 4.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
LionfishSpikedamage = 4.0
|
|
||||||
#Wither Howizter's Damage
|
|
||||||
# Default: 8.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
WitherHowizterdamage = 8.0
|
|
||||||
#Dimensional Rift's Damage
|
|
||||||
# Default: 10.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
DimensionalRiftdamage = 10.0
|
|
||||||
#Wither Homing Missile's Damage
|
|
||||||
# Default: 3.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
WitherHomingMissiledamage = 3.0
|
|
||||||
#Abyss Blast's Damage
|
|
||||||
# Default: 10.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
AbyssBlastdamage = 10.0
|
|
||||||
#Abyss Blast's Hp Damage
|
|
||||||
# Default: 0.1
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
AbyssBlastHpdamage = 0.1
|
|
||||||
#Abyss Orb's Damage
|
|
||||||
# Default: 4.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
AbyssOrbdamage = 4.0
|
|
||||||
#Lava bomb's Radius
|
|
||||||
# Default: 2
|
|
||||||
# Range: 1 ~ 7
|
|
||||||
Lavabombradius = 2
|
|
||||||
#Amethyst Cluster's Damage
|
|
||||||
# Default: 12.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
"Amethyst Cluster Damage" = 12.0
|
|
||||||
#Sandstorm's Damage
|
|
||||||
# Default: 5.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
"Sandstorm Damage" = 5.0
|
|
||||||
#Ancient Desert Stele's Damage
|
|
||||||
# Default: 18.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
"Ancient Desert Stele Damage" = 18.0
|
|
||||||
#Player's Phantom Arrow's Damage
|
|
||||||
# Default: 8.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
"Phantom Arrow Damage" = 8.0
|
|
||||||
#Phantom Halberd's Damage
|
|
||||||
# Default: 12.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
"Phantom Halberd Damage" = 12.0
|
|
||||||
#Cursed Sandstorm's Damage
|
|
||||||
# Default: 7.5
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
"Cursed Sandstorm Damage" = 7.5
|
|
||||||
#Flame jet's Damage
|
|
||||||
# Default: 7.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
"Flame Jet Damage" = 7.0
|
|
||||||
#Flare Bomb's Damage
|
|
||||||
# Default: 7.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
"Flare Bomb Damage" = 7.0
|
|
||||||
|
|
||||||
["Ender Guardian"]
|
|
||||||
#EnderGuardian's Health Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
EnderGuardianHealthMultiplier = 1.0
|
|
||||||
#EnderGuardian's Damage Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
EnderGuardianDamageMultiplier = 1.0
|
|
||||||
#EnderGuardian's DamageCap
|
|
||||||
# Default: 22.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
EnderGuardianDamageCap = 22.0
|
|
||||||
#EnderGuardian's DamageTime
|
|
||||||
# Default: 30
|
|
||||||
# Range: 0 ~ 100
|
|
||||||
EnderGuardianDamageTime = 30
|
|
||||||
#EnderGuardian's Healing with out target
|
|
||||||
# Default: 25.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
EnderGuardianNatureHealing = 25.0
|
|
||||||
#Ender guardian's block breaking ignore the MobGriefing
|
|
||||||
EnderguardianBlockBreaking = true
|
|
||||||
#Guardian's Immune to Long distance attack range.
|
|
||||||
# Default: 12.0
|
|
||||||
# Range: 1.0 ~ 1000000.0
|
|
||||||
"Guardian's prevent attacks from far away Range" = 12.0
|
|
||||||
#Guardian's gravity Punch Hp Damage
|
|
||||||
# Default: 0.05
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
"Guardian's gravity Punch Hp Damage" = 0.05
|
|
||||||
#Guardian's Teleport attack Hp Damage
|
|
||||||
# Default: 0.05
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
"Guardian's Teleport attack Hp Damage" = 0.05
|
|
||||||
#Guardian's Punch Hp Damage
|
|
||||||
# Default: 0.06
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
"Guardian's knockback Hp Damage" = 0.06
|
|
||||||
#Guardian's Uppercut Hp Damage
|
|
||||||
# Default: 0.1
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
"Guardian's Uppercut Hp Damage" = 0.1
|
|
||||||
#Guardian's RocketPunch Hp Damage
|
|
||||||
# Default: 0.1
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
"Guardian's RocketPunch Hp Damage" = 0.1
|
|
||||||
#Guardian's etc area attack Hp Damage
|
|
||||||
# Default: 0.08
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
"Guardian's area attack Hp Damage" = 0.08
|
|
||||||
#EnderGuardianBlockBreaking radius
|
|
||||||
# Default: 15
|
|
||||||
# Range: 0 ~ 20
|
|
||||||
"EnderGuardianBlockBreaking X" = 15
|
|
||||||
#EnderGuardianBlockBreaking radius
|
|
||||||
# Default: 2
|
|
||||||
# Range: 0 ~ 10
|
|
||||||
"EnderGuardianBlockBreaking Y" = 2
|
|
||||||
#EnderGuardianBlockBreaking radius
|
|
||||||
# Default: 15
|
|
||||||
# Range: 0 ~ 20
|
|
||||||
"EnderGuardianBlockBreaking Z" = 15
|
|
||||||
|
|
||||||
["Netherite Monstrosity"]
|
|
||||||
#Monstrosity's Lavabomb magazine.
|
|
||||||
# Default: 3
|
|
||||||
# Range: 1 ~ 1000000
|
|
||||||
LavabombMagazine = 3
|
|
||||||
#Monstrosity's Lavabomb amount
|
|
||||||
# Default: 3
|
|
||||||
# Range: 1 ~ 1000000
|
|
||||||
Lavabombamount = 3
|
|
||||||
#Lava Bomb of Monstrosity's Duration
|
|
||||||
# Default: 350
|
|
||||||
# Range: 1 ~ 10000
|
|
||||||
LavaBombDuration = 350
|
|
||||||
#Lava Bomb of Monstrosity's additional random duration size
|
|
||||||
# Default: 150
|
|
||||||
# Range: 1 ~ 10000
|
|
||||||
LavaBombRandomDuration = 150
|
|
||||||
#Monstrosity's Health Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
MonstrosityHealthMultiplier = 1.0
|
|
||||||
#Monstrosity's Damage Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
MonstrosityDamageMultiplier = 1.0
|
|
||||||
#Monstrosity's Healing Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
MonstrosityHealingMultiplier = 1.0
|
|
||||||
# Monstrosity's Healing with out target
|
|
||||||
# Default: 25.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
MonstrosityNatureHealing = 25.0
|
|
||||||
#Monstrosity's DamageCap
|
|
||||||
# Default: 22.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
MonstrosityDamageCap = 22.0
|
|
||||||
#Monstrosity's DamageTime
|
|
||||||
# Default: 10
|
|
||||||
# Range: 0 ~ 100
|
|
||||||
MonstrosityDamageTime = 10
|
|
||||||
#Monstrosity's bodyBlocking verdict
|
|
||||||
NetheritemonstrosityBodyBloking = true
|
|
||||||
#Monstrosity's attack Hp Damage
|
|
||||||
# Default: 0.08
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
"Monstrosity's attack Hp Damage" = 0.08
|
|
||||||
#Monstrosity's Immune to Long distance attack range.
|
|
||||||
# Default: 18.0
|
|
||||||
# Range: 1.0 ~ 1000000.0
|
|
||||||
"Monstrosity's prevent attacks from far away Range" = 18.0
|
|
||||||
#Monstrosity's block breaking ignore the MobGriefing
|
|
||||||
monstrosityBlockBreaking = true
|
|
||||||
|
|
||||||
["Ender Golem"]
|
|
||||||
#Ender Golem's block breaking ignore the MobGriefing
|
|
||||||
EndergolemBlockBreaking = false
|
|
||||||
#Endergolem's Immune to Long distance attack range.
|
|
||||||
# Default: 6.0
|
|
||||||
# Range: 1.0 ~ 1000000.0
|
|
||||||
"Endergolem's prevent attacks from far away Range" = 6.0
|
|
||||||
#Golem's Health Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
GolemHealthMultiplier = 1.0
|
|
||||||
#Golem's Damage Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
GolemDamageMultiplier = 1.0
|
|
||||||
|
|
||||||
[Ignis]
|
|
||||||
#Ignis's Health Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
IgnisHealthMultiplier = 1.0
|
|
||||||
#Ignis's Damage Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
IgnisDamageMultiplier = 1.0
|
|
||||||
#Ignis's Healing with out target
|
|
||||||
# Default: 25.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
IgnisNatureHealing = 25.0
|
|
||||||
#Ignis's Healing Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
IgnisHealingMultiplier = 1.0
|
|
||||||
#Ignis's Immune to Long distance attack range.
|
|
||||||
# Default: 15.0
|
|
||||||
# Range: 1.0 ~ 1000000.0
|
|
||||||
"Ignis's prevent attacks from far away Range" = 15.0
|
|
||||||
#Ignis's DamageCap
|
|
||||||
# Default: 20.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
IgnisDamageCap = 20.0
|
|
||||||
#Ignis's DamageTime
|
|
||||||
# Default: 15
|
|
||||||
# Range: 0 ~ 100
|
|
||||||
IgnisDamageTime = 15
|
|
||||||
#Ignis's cracked block breaking ignore the MobGriefing
|
|
||||||
IgnisBlockBreaking = true
|
|
||||||
|
|
||||||
[revenant]
|
|
||||||
#Revenant's Health Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
RevenantHealthMultiplier = 1.0
|
|
||||||
#Revenant's Damage Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
RevenantDamageMultiplier = 1.0
|
|
||||||
|
|
||||||
["The Prowler"]
|
|
||||||
#The Prowler's Immune to Long distance attack range.
|
|
||||||
# Default: 16.0
|
|
||||||
# Range: 1.0 ~ 1000000.0
|
|
||||||
"The Prowler's prevent attacks from far away Range" = 16.0
|
|
||||||
#Prowler's Health Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
ProwlerHealthMultiplier = 1.0
|
|
||||||
#Prowler's Damage Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
ProwlerDamageMultiplier = 1.0
|
|
||||||
|
|
||||||
["The Harbinger"]
|
|
||||||
#Harbinger's Health Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
HarbingerHealthMultiplier = 1.0
|
|
||||||
#Harbinger's Damage Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
HarbingerDamageMultiplier = 1.0
|
|
||||||
#Harbinger's Healing Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
HarbingerHealingMultiplier = 1.0
|
|
||||||
#Harbinger's Wither Missile's Damage
|
|
||||||
# Default: 8.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
"Harbinger's WitherMissiledamage" = 8.0
|
|
||||||
#Harbinger's laser's Damage
|
|
||||||
# Default: 5.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
"Harbinger's laser damage" = 5.0
|
|
||||||
#Harbinger's Immune to Long distance attack range.
|
|
||||||
# Default: 35.0
|
|
||||||
# Range: 1.0 ~ 1000000.0
|
|
||||||
"The Harbinger's prevent attacks from far away Range" = 35.0
|
|
||||||
#Harbinger's DamageCap
|
|
||||||
# Default: 22.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
"The Harbinger DamageCap" = 22.0
|
|
||||||
#Harbinger's DamageTime
|
|
||||||
# Default: 12
|
|
||||||
# Range: 0 ~ 100
|
|
||||||
"The Harbinger DamageTime" = 12
|
|
||||||
#Harbinger's lasers can light a fire in MobGriefing
|
|
||||||
"The Harbinger Light A Fire" = true
|
|
||||||
#The Harbinger's charge attack Hp Damage
|
|
||||||
# Default: 0.06
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
"The Harbinger's charge attack Hp Damage" = 0.06
|
|
||||||
|
|
||||||
["The Leviathan"]
|
|
||||||
#Leviathan's Health Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
LeviathanHealthMultiplier = 1.0
|
|
||||||
#Leviathan's Damage Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
LeviathanDamageMultiplier = 1.0
|
|
||||||
#Leviathan's Healing with out target
|
|
||||||
# Default: 25.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
LeviathanNatureHealing = 25.0
|
|
||||||
#Leviathan's Immune to Long distance attack range.
|
|
||||||
# Default: 38.0
|
|
||||||
# Range: 1.0 ~ 1000000.0
|
|
||||||
"Leviathan's prevent attacks from far away Range" = 38.0
|
|
||||||
#Leviathan's Bite Hp Damage
|
|
||||||
# Default: 0.1
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
"Leviathan's Bite Hp Damage" = 0.1
|
|
||||||
#Leviathan's Rush Hp Damage
|
|
||||||
# Default: 0.05
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
"Leviathan's Rush Hp Damage" = 0.05
|
|
||||||
#Leviathan's TailSwing Hp Damage
|
|
||||||
# Default: 0.08
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
"Leviathan's TailSwing Hp Damage" = 0.08
|
|
||||||
#Leviathan's Tentacle Hp Damage
|
|
||||||
# Default: 0.03
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
"Leviathan's Tentacle Hp Damage" = 0.03
|
|
||||||
#Leviathan's DamageCap
|
|
||||||
# Default: 20.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
LeviathanDamageCap = 20.0
|
|
||||||
#Leviathan's DamageTime
|
|
||||||
# Default: 15
|
|
||||||
# Range: 0 ~ 100
|
|
||||||
"Leviathan DamageTime" = 15
|
|
||||||
#Leviathan's block breaking ignore the MobGriefing
|
|
||||||
LeviathanBlockBreaking = true
|
|
||||||
#Leviathan Immune Out of Water
|
|
||||||
LeviathanImmuneOutofWater = true
|
|
||||||
|
|
||||||
["The Baby Leviathan"]
|
|
||||||
#BabyLeviathan's Health Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
BabyLeviathanHealthMultiplier = 1.0
|
|
||||||
#BabyLeviathan's Damage Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
BabyLeviathanDamageMultiplier = 1.0
|
|
||||||
|
|
||||||
["Modern Remnant"]
|
|
||||||
#Modern Remnant's Health Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
ModernRemnantHealthMultiplier = 1.0
|
|
||||||
#Modern Remnant's Damage Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
ModernRemnantDamageMultiplier = 1.0
|
|
||||||
|
|
||||||
["Netherite Ministrosity"]
|
|
||||||
#Ministrosity's Health Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
MinistrosityHealthMultiplier = 1.0
|
|
||||||
|
|
||||||
["Amethyst Crab"]
|
|
||||||
#Amethyst Crab's Health Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
AmethystCrabHealthMultiplier = 1.0
|
|
||||||
#Amethyst Crab's EarthQuake Damage
|
|
||||||
# Default: 5.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
AmethystCrabEarthQuakeDamage = 5.0
|
|
||||||
#Amethyst Crab's Damage Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
AmethystCrabDamageMultiplier = 1.0
|
|
||||||
|
|
||||||
["Ancient Remnant"]
|
|
||||||
#Ancient Remnant's Health Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
AncientRemnantHealthMultiplier = 1.0
|
|
||||||
#Ancient Remnant's Damage Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
AncientRemnantDamageMultiplier = 1.0
|
|
||||||
#AncientRemnant's Healing with out target
|
|
||||||
# Default: 25.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
AncientRemnantNatureHealing = 25.0
|
|
||||||
#Ancient Remnant's Immune to Long distance attack range.
|
|
||||||
# Default: 14.0
|
|
||||||
# Range: 1.0 ~ 1000000.0
|
|
||||||
"Ancient Remnant's prevent attacks from far away Range" = 14.0
|
|
||||||
#Ancient Remnant's DamageCap
|
|
||||||
# Default: 21.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
AncientRemnantCap = 21.0
|
|
||||||
#Ancient Remnant's DamageTime
|
|
||||||
# Default: 12
|
|
||||||
# Range: 0 ~ 100
|
|
||||||
"Ancient Remnant DamageTime" = 12
|
|
||||||
#Ancient Remnant's block breaking ignore the MobGriefing
|
|
||||||
AncientRemnantBlockBreaking = true
|
|
||||||
#Remnant's Charge Hp Damage
|
|
||||||
# Default: 0.1
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
"Remnant's Charge Hp Damage" = 0.1
|
|
||||||
#Remnant's Hp Damage
|
|
||||||
# Default: 0.05
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
"Remnant's Normal attack Hp Damage" = 0.05
|
|
||||||
#Remnant's Stomp Hp Damage
|
|
||||||
# Default: 0.03
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
"Remnant's Stomp Hp Damage" = 0.03
|
|
||||||
#Remnant's EarthQuake Damage
|
|
||||||
# Default: 11.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
"Remnant's EarthQuakeDamage" = 11.0
|
|
||||||
|
|
||||||
[Koboleton]
|
|
||||||
#Cause Koboleton to Drop Item In Hand Percent
|
|
||||||
# Default: 5.0
|
|
||||||
# Range: 0.0 ~ 100.0
|
|
||||||
CauseKoboletontoDropItemInHandPercent = 5.0
|
|
||||||
|
|
||||||
[Kobolediator]
|
|
||||||
#Kobolediator's block breaking ignore the MobGriefing
|
|
||||||
KobolediatorBlockBreaking = false
|
|
||||||
#Kobolediator's Health Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
KobolediatorHealthMultiplier = 1.0
|
|
||||||
#Kobolediator's Damage Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
KobolediatorDamageMultiplier = 1.0
|
|
||||||
|
|
||||||
[Wadjet]
|
|
||||||
#Wadjet's Health Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
WadjetHealthMultiplier = 1.0
|
|
||||||
#Wadjet's Damage Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
WadjetDamageMultiplier = 1.0
|
|
||||||
|
|
||||||
[Aptrgangr]
|
|
||||||
#Aptrgangr's Health Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
AptrgangrHealthMultiplier = 1.0
|
|
||||||
#Aptrgangr's Damage Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
AptrgangrDamageMultiplier = 1.0
|
|
||||||
#Axe Blade's Damage
|
|
||||||
# Default: 8.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
AptrgangrAxeBladeDamage = 8.0
|
|
||||||
|
|
||||||
[Clawdian]
|
|
||||||
#Clawdian's Health Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
ClawdianHealthMultiplier = 1.0
|
|
||||||
#Clawdian's Damage Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
ClawdianDamageMultiplier = 1.0
|
|
||||||
|
|
||||||
[Scylla]
|
|
||||||
#Scylla's Health Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
ScyllaHealthMultiplier = 1.0
|
|
||||||
#Scylla's Damage Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
ScyllaDamageMultiplier = 1.0
|
|
||||||
#Scylla's Immune to Long distance attack range.
|
|
||||||
# Default: 10.0
|
|
||||||
# Range: 1.0 ~ 1000000.0
|
|
||||||
"Scylla's prevent attacks from far away Range" = 10.0
|
|
||||||
#Scylla's Spear Damage
|
|
||||||
# Default: 14.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
"Scylla's Spear Damage" = 14.0
|
|
||||||
#Scylla's Lightning Storm
|
|
||||||
# Default: 10.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
"Scylla's Lightning Storm" = 10.0
|
|
||||||
#Scylla's Lightning Area
|
|
||||||
# Default: 4.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
"Scylla's Lightning Area" = 4.0
|
|
||||||
#Scylla's Storm Serpent
|
|
||||||
# Default: 16.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
"Scylla's Snake Damage" = 16.0
|
|
||||||
#Scylla's Anchor Damage
|
|
||||||
# Default: 16.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
"Scylla's Anchor Damage" = 16.0
|
|
||||||
#Scylla's Healing with out target
|
|
||||||
# Default: 25.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
"Scylla NatureHealing" = 25.0
|
|
||||||
#Scylla's DamageCap
|
|
||||||
# Default: 22.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
"Scylla DamageCap" = 22.0
|
|
||||||
#Scylla's DamageTime
|
|
||||||
# Default: 25
|
|
||||||
# Range: 0 ~ 100
|
|
||||||
"Scylla DamageTime" = 25
|
|
||||||
#Scylla's HP Damage
|
|
||||||
# Default: 0.05
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
"Scylla's HP Damage" = 0.05
|
|
||||||
#Scylla's Spin HP Damage
|
|
||||||
# Default: 0.07
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
"Scylla's Spin Hp Damage" = 0.07
|
|
||||||
#Scylla's Lightning Storm HP Damage
|
|
||||||
# Default: 0.04
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
"Scylla's Lightning Storm HP Damage" = 0.04
|
|
||||||
|
|
||||||
[Maledictus]
|
|
||||||
#Maledictus's Health Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
MaledictusHealthMultiplier = 1.0
|
|
||||||
#Maledictus's Damage Multiplier
|
|
||||||
# Default: 1.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
MaledictusDamageMultiplier = 1.0
|
|
||||||
#Maledictus's Immune to Long distance attack range.
|
|
||||||
# Default: 12.0
|
|
||||||
# Range: 1.0 ~ 1000000.0
|
|
||||||
"Maledictus's prevent attacks from far away Range" = 12.0
|
|
||||||
#Maledictus's Healing with out target
|
|
||||||
# Default: 25.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
MaledictusNatureHealing = 25.0
|
|
||||||
#Maledictus's Phantom Halberd Damage
|
|
||||||
# Default: 10.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
"Maledictus' Phantom Halberd Damage'" = 10.0
|
|
||||||
#Maledictus's DamageCap
|
|
||||||
# Default: 20.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
MaledictusDamageCap = 20.0
|
|
||||||
#Maledictus's DamageTime
|
|
||||||
# Default: 30
|
|
||||||
# Range: 0 ~ 100
|
|
||||||
"Maledictus DamageTime" = 30
|
|
||||||
#Maledictus's melee Hp Damage
|
|
||||||
# Default: 0.05
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
"Maledictus's melee Hp Damage" = 0.05
|
|
||||||
#Maledictus's Shock wave Hp Damage
|
|
||||||
# Default: 0.03
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
"Maledictus's Shock Wave Hp Damage" = 0.03
|
|
||||||
#Maledictus's AOE Hp Damage
|
|
||||||
# Default: 0.15
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
"Maledictus's AOE Hp Damage" = 0.15
|
|
||||||
#Maledictus's flying Smash Hp Damage
|
|
||||||
# Default: 0.1
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
"Maledictus's Flying Smash Hp Damage" = 0.1
|
|
||||||
#Maledictus's Jump Smash Hp Damage
|
|
||||||
# Default: 0.08
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
"Maledictus's Jump Smash Hp Damage" = 0.08
|
|
||||||
#Maledictus's Phantom Arrow's Damage
|
|
||||||
# Default: 5.0
|
|
||||||
# Range: 0.0 ~ 1000000.0
|
|
||||||
"Maledictus's Phantom Arrow Damage" = 5.0
|
|
||||||
#Maledictus's cracked block breaking ignore the MobGriefing
|
|
||||||
MaledictusBlockBreaking = true
|
|
||||||
|
|
||||||
[spawning]
|
|
||||||
#Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn
|
|
||||||
# Default: 2
|
|
||||||
# Range: 0 ~ 1000
|
|
||||||
DeeplingSpawnWeight = 0
|
|
||||||
#Random roll chance to enable mob spawning. Higher number = lower chance of spawning
|
|
||||||
# Default: 30
|
|
||||||
# Range: > 0
|
|
||||||
DeeplingSpawnRolls = 30
|
|
||||||
#Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn
|
|
||||||
# Default: 1
|
|
||||||
# Range: 0 ~ 1000
|
|
||||||
DeeplingBruteSpawnWeight = 0
|
|
||||||
#Random roll chance to enable mob spawning. Higher number = lower chance of spawning
|
|
||||||
# Default: 50
|
|
||||||
# Range: > 0
|
|
||||||
DeeplingBruteSpawnRolls = 50
|
|
||||||
#Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn
|
|
||||||
# Default: 2
|
|
||||||
# Range: 0 ~ 1000
|
|
||||||
DeeplingAnglerSpawnWeight = 0
|
|
||||||
#Random roll chance to enable mob spawning. Higher number = lower chance of spawning
|
|
||||||
# Default: 30
|
|
||||||
# Range: > 0
|
|
||||||
DeeplingAnglerSpawnRolls = 30
|
|
||||||
#Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn
|
|
||||||
# Default: 1
|
|
||||||
# Range: 0 ~ 1000
|
|
||||||
DeeplingPriestSpawnWeight = 0
|
|
||||||
#Random roll chance to enable mob spawning. Higher number = lower chance of spawning
|
|
||||||
# Default: 70
|
|
||||||
# Range: > 0
|
|
||||||
DeeplingPriestSpawnRolls = 70
|
|
||||||
#Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn
|
|
||||||
# Default: 1
|
|
||||||
# Range: 0 ~ 1000
|
|
||||||
DeeplingWarlockSpawnWeight = 0
|
|
||||||
#Random roll chance to enable mob spawning. Higher number = lower chance of spawning
|
|
||||||
# Default: 70
|
|
||||||
# Range: > 0
|
|
||||||
DeeplingWarlockSpawnRolls = 70
|
|
||||||
#Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn
|
|
||||||
# Default: 1
|
|
||||||
# Range: 0 ~ 1000
|
|
||||||
CoralgolemSpawnWeight = 1
|
|
||||||
#Random roll chance to enable mob spawning. Higher number = lower chance of spawning
|
|
||||||
# Default: 70
|
|
||||||
# Range: > 0
|
|
||||||
CoralgolemSpawnRolls = 70
|
|
||||||
#Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn
|
|
||||||
# Default: 1
|
|
||||||
# Range: 0 ~ 1000
|
|
||||||
AmethystCrabSpawnWeight = 1
|
|
||||||
#Random roll chance to enable mob spawning. Higher number = lower chance of spawning
|
|
||||||
# Default: 20
|
|
||||||
# Range: > 0
|
|
||||||
AmethystCrabSpawnRolls = 20
|
|
||||||
#Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn
|
|
||||||
# Default: 15
|
|
||||||
# Range: 0 ~ 1000
|
|
||||||
KoboletonSpawnWeight = 15
|
|
||||||
#Random roll chance to enable mob spawning. Higher number = lower chance of spawning
|
|
||||||
# Default: 1
|
|
||||||
# Range: > 0
|
|
||||||
KoboletonSpawnRolls = 1
|
|
||||||
#Spawn Weight, added to a pool of other mobs for each biome. Higher number = higher chance of spawning. 0 = disable spawn
|
|
||||||
# Default: 5
|
|
||||||
# Range: 0 ~ 1000
|
|
||||||
IgnitedBerserkerSpawnWeight = 5
|
|
||||||
#Random roll chance to enable mob spawning. Higher number = lower chance of spawning
|
|
||||||
# Default: 2
|
|
||||||
# Range: > 0
|
|
||||||
IgnitedBerserkerSpawnRolls = 2
|
|
||||||
|
|
||||||
["World Generation"]
|
|
||||||
#Defines the area in which the structure check for height variances (1 means 9 chunks will be checked (center + area around it)) - 0 disables this check
|
|
||||||
# Default: 2
|
|
||||||
# Range: 0 ~ 5
|
|
||||||
cursedPyramidCheckRange = 2
|
|
||||||
#Allowed height variance for the check - if the variance is lower than this value the structure will not spawn (has no effect if the are check is disabled)
|
|
||||||
# Default: 2
|
|
||||||
# Range: 0 ~ 32
|
|
||||||
cursedPyramidHeightVariance = 2
|
|
|
@ -1,249 +0,0 @@
|
||||||
#Settings for Inventory HUD
|
|
||||||
[inventoryhud]
|
|
||||||
#Inventory HUD mini mode
|
|
||||||
invMini = true
|
|
||||||
#Inventory HUD vertical mode
|
|
||||||
invVert = false
|
|
||||||
#Inventory HUD alpha
|
|
||||||
# Default: 0
|
|
||||||
# Range: 0 ~ 100
|
|
||||||
invAlpha = 0
|
|
||||||
#Toggle on by default
|
|
||||||
byDefault = false
|
|
||||||
#Animate recently picked up items
|
|
||||||
animatedInv = false
|
|
||||||
#Hide background if inventory is empty
|
|
||||||
hideBackground = false
|
|
||||||
#Show Inventory HUD when debug menu is open
|
|
||||||
invWithDebug = true
|
|
||||||
|
|
||||||
#Settings for ArmorStatus HUD
|
|
||||||
[armorhud]
|
|
||||||
#Is Armor Damage HUD enabled
|
|
||||||
ArmorDamage = true
|
|
||||||
#Hide if durability is above this (in percentage):
|
|
||||||
# Default: 100
|
|
||||||
# Range: 0 ~ 100
|
|
||||||
armAbove = 100
|
|
||||||
#Show/Hide armor
|
|
||||||
showArmor = true
|
|
||||||
#Show/Hide armor
|
|
||||||
showMain = true
|
|
||||||
#Show/Hide armor
|
|
||||||
showOff = true
|
|
||||||
#Show/Hide armor
|
|
||||||
showArrows = true
|
|
||||||
#Show/Hide armor
|
|
||||||
showInv = true
|
|
||||||
#Armor HUD durability view (PERCENTAGE, DAMAGE, DAMAGE LEFT)
|
|
||||||
#Allowed Values: PERCENTAGE, DAMAGE, DAMAGE_LEFT, OFF
|
|
||||||
armView = "PERCENTAGE"
|
|
||||||
#Show item durability bar
|
|
||||||
armBars = false
|
|
||||||
#Move all items at once or each one
|
|
||||||
moveAll = true
|
|
||||||
#Show/Hide empty slot icon
|
|
||||||
showEmpty = true
|
|
||||||
#Show overall count of items in main/off hand
|
|
||||||
showCount = false
|
|
||||||
#ArmorHUD scale in persentage from 50 to 150
|
|
||||||
# Default: 100
|
|
||||||
# Range: 50 ~ 150
|
|
||||||
armScale = 100
|
|
||||||
#Show Armor HUD when debug menu is open
|
|
||||||
armWithDebug = true
|
|
||||||
#Show arrows count when no weapon in your hands
|
|
||||||
showArrowsWithoutWeapon = true
|
|
||||||
|
|
||||||
#Settings for Potions HUD
|
|
||||||
[potionshud]
|
|
||||||
#Is Potions HUD enabled
|
|
||||||
Potions = true
|
|
||||||
#Potion HUD alpha
|
|
||||||
# Default: 100
|
|
||||||
# Range: 0 ~ 100
|
|
||||||
potAlpha = 100
|
|
||||||
#Potion HUD gap
|
|
||||||
# Default: 0
|
|
||||||
# Range: -5 ~ 5
|
|
||||||
potGap = 0
|
|
||||||
#Potion HUD mini mode
|
|
||||||
potMini = false
|
|
||||||
#Potion HUD horizontal mode
|
|
||||||
potHor = false
|
|
||||||
#Full bar duration
|
|
||||||
# Default: 300
|
|
||||||
# Range: > 1
|
|
||||||
barDuration = 300
|
|
||||||
#Show hidden effects
|
|
||||||
showHiddenEffects = true
|
|
||||||
#Disable icons for effects in this list
|
|
||||||
effectsBlackList = []
|
|
||||||
#Show Potion HUD when debug menu is open
|
|
||||||
potWithDebug = true
|
|
||||||
#Show all levels of effects
|
|
||||||
potionLevels = false
|
|
||||||
|
|
||||||
#DONT TOUCH THESE FIELDS!
|
|
||||||
[positions]
|
|
||||||
#Inventory HUD vertical align
|
|
||||||
#Allowed Values: TOP, CENTER, BOTTOM
|
|
||||||
invValign = "BOTTOM"
|
|
||||||
#Inventory HUD horizontal align
|
|
||||||
#Allowed Values: LEFT, MIDDLE, RIGHT
|
|
||||||
invHalign = "MIDDLE"
|
|
||||||
#Inventory HUD position (X)
|
|
||||||
# Default: 0
|
|
||||||
# Range: -9999 ~ 9999
|
|
||||||
xPos = 0
|
|
||||||
#Inventory HUD position (Y)
|
|
||||||
# Default: 150
|
|
||||||
# Range: -9999 ~ 9999
|
|
||||||
yPos = 150
|
|
||||||
#Armor HUD vertical align
|
|
||||||
#Allowed Values: TOP, CENTER, BOTTOM
|
|
||||||
armValign = "BOTTOM"
|
|
||||||
#Armor HUD horizontal align
|
|
||||||
#Allowed Values: LEFT, MIDDLE, RIGHT
|
|
||||||
armHalign = "MIDDLE"
|
|
||||||
#Armor HUD position (X)
|
|
||||||
# Default: 0
|
|
||||||
# Range: -9999 ~ 9999
|
|
||||||
xArmPos = 0
|
|
||||||
#Armor HUD position (Y)
|
|
||||||
# Default: 70
|
|
||||||
# Range: -9999 ~ 9999
|
|
||||||
yArmPos = 70
|
|
||||||
#Potion HUD vertical align
|
|
||||||
#Allowed Values: TOP, CENTER, BOTTOM
|
|
||||||
potValign = "TOP"
|
|
||||||
#Potion HUD horizontal align
|
|
||||||
#Allowed Values: LEFT, MIDDLE, RIGHT
|
|
||||||
potHalign = "LEFT"
|
|
||||||
#Potion HUD position (X)
|
|
||||||
# Default: 20
|
|
||||||
# Range: -9999 ~ 9999
|
|
||||||
xPotionPos = 20
|
|
||||||
#Potion HUD position (Y)
|
|
||||||
# Default: 20
|
|
||||||
# Range: -9999 ~ 9999
|
|
||||||
yPotionPos = 20
|
|
||||||
#Helmet position (X)
|
|
||||||
# Default: 103
|
|
||||||
# Range: -9999 ~ 9999
|
|
||||||
helmPosX = 103
|
|
||||||
#Helmet position (Y)
|
|
||||||
# Default: 54
|
|
||||||
# Range: -9999 ~ 9999
|
|
||||||
helmPosY = 54
|
|
||||||
#Chestplate position (X)
|
|
||||||
# Default: 103
|
|
||||||
# Range: -9999 ~ 9999
|
|
||||||
chestPosX = 103
|
|
||||||
#Chestplate position (Y)
|
|
||||||
# Default: 37
|
|
||||||
# Range: -9999 ~ 9999
|
|
||||||
chestPosY = 37
|
|
||||||
#Leggings position (X)
|
|
||||||
# Default: -103
|
|
||||||
# Range: -9999 ~ 9999
|
|
||||||
legPosX = -103
|
|
||||||
#Leggings position (Y)
|
|
||||||
# Default: 54
|
|
||||||
# Range: -9999 ~ 9999
|
|
||||||
legPosY = 54
|
|
||||||
#Boots position (X)
|
|
||||||
# Default: -103
|
|
||||||
# Range: -9999 ~ 9999
|
|
||||||
bootPosX = -103
|
|
||||||
#Boots position (Y)
|
|
||||||
# Default: 37
|
|
||||||
# Range: -9999 ~ 9999
|
|
||||||
bootPosY = 37
|
|
||||||
#MainHand position (X)
|
|
||||||
# Default: 103
|
|
||||||
# Range: -9999 ~ 9999
|
|
||||||
mainPosX = 103
|
|
||||||
#MainHand position (Y)
|
|
||||||
# Default: 71
|
|
||||||
# Range: -9999 ~ 9999
|
|
||||||
mainPosY = 71
|
|
||||||
#OffHand position (X)
|
|
||||||
# Default: -103
|
|
||||||
# Range: -9999 ~ 9999
|
|
||||||
offPosX = -103
|
|
||||||
#OffHand position (Y)
|
|
||||||
# Default: 71
|
|
||||||
# Range: -9999 ~ 9999
|
|
||||||
offPosY = 71
|
|
||||||
#Arrows position (X)
|
|
||||||
# Default: 103
|
|
||||||
# Range: -9999 ~ 9999
|
|
||||||
arrPosX = 103
|
|
||||||
#Arrows position (Y)
|
|
||||||
# Default: 20
|
|
||||||
# Range: -9999 ~ 9999
|
|
||||||
arrPosY = 20
|
|
||||||
#InvIcon position (X)
|
|
||||||
# Default: -103
|
|
||||||
# Range: -9999 ~ 9999
|
|
||||||
invPosX = -103
|
|
||||||
#InvIcon position (Y)
|
|
||||||
# Default: 20
|
|
||||||
# Range: -9999 ~ 9999
|
|
||||||
invPosY = 20
|
|
||||||
#Helmet horizontal align
|
|
||||||
#Allowed Values: LEFT, MIDDLE, RIGHT
|
|
||||||
helmHal = "MIDDLE"
|
|
||||||
#Helmet vertical align
|
|
||||||
#Allowed Values: TOP, CENTER, BOTTOM
|
|
||||||
helmVal = "BOTTOM"
|
|
||||||
#Chestplate horizontal align
|
|
||||||
#Allowed Values: LEFT, MIDDLE, RIGHT
|
|
||||||
chestHal = "MIDDLE"
|
|
||||||
#Chestplate vertical align
|
|
||||||
#Allowed Values: TOP, CENTER, BOTTOM
|
|
||||||
chestVal = "BOTTOM"
|
|
||||||
#Leggings horizontal align
|
|
||||||
#Allowed Values: LEFT, MIDDLE, RIGHT
|
|
||||||
legHal = "MIDDLE"
|
|
||||||
#Leggings vertical align
|
|
||||||
#Allowed Values: TOP, CENTER, BOTTOM
|
|
||||||
legVal = "BOTTOM"
|
|
||||||
#Boots horizontal align
|
|
||||||
#Allowed Values: LEFT, MIDDLE, RIGHT
|
|
||||||
bootHal = "MIDDLE"
|
|
||||||
#Boots vertical align
|
|
||||||
#Allowed Values: TOP, CENTER, BOTTOM
|
|
||||||
bootVal = "BOTTOM"
|
|
||||||
#MainHand horizontal align
|
|
||||||
#Allowed Values: LEFT, MIDDLE, RIGHT
|
|
||||||
mainHal = "MIDDLE"
|
|
||||||
#MainHand vertical align
|
|
||||||
#Allowed Values: TOP, CENTER, BOTTOM
|
|
||||||
mainVal = "BOTTOM"
|
|
||||||
#OffHand horizontal align
|
|
||||||
#Allowed Values: LEFT, MIDDLE, RIGHT
|
|
||||||
offHal = "MIDDLE"
|
|
||||||
#OffHand vertical align
|
|
||||||
#Allowed Values: TOP, CENTER, BOTTOM
|
|
||||||
offVal = "BOTTOM"
|
|
||||||
#Arrows horizontal align
|
|
||||||
#Allowed Values: LEFT, MIDDLE, RIGHT
|
|
||||||
arrHal = "MIDDLE"
|
|
||||||
#Arrows vertical align
|
|
||||||
#Allowed Values: TOP, CENTER, BOTTOM
|
|
||||||
arrVal = "BOTTOM"
|
|
||||||
#InvIcon horizontal align
|
|
||||||
#Allowed Values: LEFT, MIDDLE, RIGHT
|
|
||||||
invHal = "MIDDLE"
|
|
||||||
#InvIcon vertical align
|
|
||||||
#Allowed Values: TOP, CENTER, BOTTOM
|
|
||||||
invVal = "BOTTOM"
|
|
||||||
|
|
||||||
#Notification settings
|
|
||||||
[notification]
|
|
||||||
#Last notified mod version
|
|
||||||
lastNotifiedVersion = "3.4.28"
|
|
||||||
#Notify more than once
|
|
||||||
keepNotifying = true
|
|
|
@ -1,9 +0,0 @@
|
||||||
#This file stores configuration options for Iris, such as the currently active shaderpack
|
|
||||||
#Thu Jul 31 02:25:56 HKT 2025
|
|
||||||
allowUnknownShaders=false
|
|
||||||
colorSpace=SRGB
|
|
||||||
disableUpdateMessage=false
|
|
||||||
enableDebugOptions=false
|
|
||||||
enableShaders=true
|
|
||||||
maxShadowRenderDistance=32
|
|
||||||
shaderPack=ComplementaryReimagined_r5.5.1 + Colorwheel_0.2.4.zip
|
|
|
@ -1,66 +0,0 @@
|
||||||
{
|
|
||||||
"animation_settings": {
|
|
||||||
"animation": true,
|
|
||||||
"water": true,
|
|
||||||
"lava": true,
|
|
||||||
"fire": true,
|
|
||||||
"portal": true,
|
|
||||||
"block_animations": true,
|
|
||||||
"sculk_sensor": true
|
|
||||||
},
|
|
||||||
"particle_settings": {
|
|
||||||
"particles": true,
|
|
||||||
"rain_splash": true,
|
|
||||||
"block_break": true,
|
|
||||||
"block_breaking": true,
|
|
||||||
"other": {
|
|
||||||
"subtle_effects:item_rarity": false,
|
|
||||||
"subtle_effects:frosty_breath": false
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"detail_settings": {
|
|
||||||
"sky": true,
|
|
||||||
"sun": true,
|
|
||||||
"moon": true,
|
|
||||||
"stars": true,
|
|
||||||
"rain_snow": true,
|
|
||||||
"biome_colors": true,
|
|
||||||
"sky_colors": true
|
|
||||||
},
|
|
||||||
"render_settings": {
|
|
||||||
"fog_distance": 0,
|
|
||||||
"fog_start": 100,
|
|
||||||
"multi_dimension_fog_control": false,
|
|
||||||
"dimensionFogDistance": {},
|
|
||||||
"light_updates": true,
|
|
||||||
"item_frame": true,
|
|
||||||
"armor_stand": true,
|
|
||||||
"painting": true,
|
|
||||||
"piston": true,
|
|
||||||
"beacon_beam": true,
|
|
||||||
"limit_beacon_beam_height": false,
|
|
||||||
"enchanting_table_book": true,
|
|
||||||
"item_frame_name_tag": true,
|
|
||||||
"player_name_tag": true
|
|
||||||
},
|
|
||||||
"extra_settings": {
|
|
||||||
"overlay_corner": "TOP_LEFT",
|
|
||||||
"text_contrast": "NONE",
|
|
||||||
"show_fps": false,
|
|
||||||
"show_f_p_s_extended": true,
|
|
||||||
"show_coords": false,
|
|
||||||
"reduce_resolution_on_mac": false,
|
|
||||||
"use_adaptive_sync": false,
|
|
||||||
"cloud_height": 192,
|
|
||||||
"cloud_distance": 100,
|
|
||||||
"toasts": true,
|
|
||||||
"advancement_toast": true,
|
|
||||||
"recipe_toast": true,
|
|
||||||
"system_toast": true,
|
|
||||||
"tutorial_toast": true,
|
|
||||||
"instant_sneak": false,
|
|
||||||
"prevent_shaders": false,
|
|
||||||
"steady_debug_hud": true,
|
|
||||||
"steady_debug_hud_refresh_interval": 1
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,18 +0,0 @@
|
||||||
[sodiumdynamiclights]
|
|
||||||
#Lighting mode
|
|
||||||
#Allowed Values: OFF, SLOW, FAST, REALTIME
|
|
||||||
mode = "OFF"
|
|
||||||
#Enable entities light source.
|
|
||||||
entities = false
|
|
||||||
#Enable first-person player light source.
|
|
||||||
self = true
|
|
||||||
#Enable block entities light source.
|
|
||||||
block_entities = true
|
|
||||||
#Enables water-sensitive light sources check. This means that water-sensitive items will not light up when submerged in water.
|
|
||||||
water_sensitive_check = true
|
|
||||||
#TNT lighting mode. May be off, simple or fancy.
|
|
||||||
#Allowed Values: OFF, SIMPLE, FANCY
|
|
||||||
tnt = "SIMPLE"
|
|
||||||
#Creeper lighting mode. May be off, simple or fancy.
|
|
||||||
#Allowed Values: OFF, SIMPLE, FANCY
|
|
||||||
creeper = "OFF"
|
|
|
@ -1,135 +0,0 @@
|
||||||
[embeddiumextras.general]
|
|
||||||
#Set Fullscreen mode
|
|
||||||
#Borderless let you change between screens more faster and move your mouse across monitors
|
|
||||||
#Allowed Values: WINDOWED, BORDERLESS, FULLSCREEN
|
|
||||||
fullscreen = "WINDOWED"
|
|
||||||
#Configure FPS Display mode
|
|
||||||
#Complete mode gives you min FPS count and average count
|
|
||||||
#Allowed Values: OFF, SIMPLE, ADVANCED
|
|
||||||
fpsDisplay = "ADVANCED"
|
|
||||||
#Configure FPS Display gravity
|
|
||||||
#Places counter on specified corner of your screen
|
|
||||||
#Allowed Values: LEFT, CENTER, RIGHT
|
|
||||||
fpsDisplayGravity = "LEFT"
|
|
||||||
#Shows GPU and memory usage onto FPS display
|
|
||||||
#Allowed Values: OFF, ON, GPU, RAM
|
|
||||||
fpsDisplaySystem = "ON"
|
|
||||||
#Configure FPS Display margin
|
|
||||||
#Give some space between corner and text
|
|
||||||
# Default: 12
|
|
||||||
# Range: 0 ~ 48
|
|
||||||
fpsDisplayMargin = 12
|
|
||||||
#Toggle FPS Display shadow
|
|
||||||
#In case sometimes you can't see the text
|
|
||||||
fpsDisplayShadow = false
|
|
||||||
|
|
||||||
[embeddiumextras.quality]
|
|
||||||
#Toggle fog feature
|
|
||||||
#Fog was a vanilla feature, toggling off may increases performance
|
|
||||||
fog = true
|
|
||||||
#Raise clouds
|
|
||||||
#Modify clouds height perfect for a adaptative world experience
|
|
||||||
# Default: 192
|
|
||||||
# Range: 0 ~ 512
|
|
||||||
cloudsHeight = 192
|
|
||||||
#Chunks fade in speed
|
|
||||||
#This option doesn't affect performance, just changes speed
|
|
||||||
#Allowed Values: OFF, FAST, SLOW
|
|
||||||
chunkFadeSpeed = "SLOW"
|
|
||||||
|
|
||||||
[embeddiumextras.quality.darkness]
|
|
||||||
#Configure Darkness Mode
|
|
||||||
#Each config changes what is considered 'true darkness'
|
|
||||||
#Allowed Values: PITCH_BLACK, TOTAL_DARKNESS, DARK, DIM, OFF
|
|
||||||
mode = "OFF"
|
|
||||||
#Toggle Darkness on Overworld dimension
|
|
||||||
enableOnOverworld = true
|
|
||||||
#Toggle Darkness on Nether dimension
|
|
||||||
enableOnNether = false
|
|
||||||
#Configure fog brightness on nether when darkness is enabled
|
|
||||||
# Default: 0.5
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
netherFogBright = 0.5
|
|
||||||
#Toggle Darkness on End dimension
|
|
||||||
enableOnEnd = false
|
|
||||||
#Configure fog brightness on nether when darkness is enabled
|
|
||||||
# Default: 0.5
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
endFogBright = 0.5
|
|
||||||
#Toggle Darkness default mode for modded dimensions
|
|
||||||
valueByDefault = false
|
|
||||||
#List of all dimensions to use True Darkness
|
|
||||||
#This option overrides 'valueByDefault' state
|
|
||||||
dimensionWhitelist = []
|
|
||||||
#Toggle darkness when dimension has no SkyLight
|
|
||||||
enableOnNoSkyLight = false
|
|
||||||
#Disables all bright sources of darkness like moon or fog
|
|
||||||
#Only affects darkness effect
|
|
||||||
enableBlockLightOnly = false
|
|
||||||
#Toggles if moon phases affects darkness in the overworld
|
|
||||||
affectedByMoonPhase = true
|
|
||||||
#Configure max moon brightness level with darkness
|
|
||||||
# Default: 0.25
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
fullMoonBright = 0.25
|
|
||||||
#Configure min moon brightness level with darkness
|
|
||||||
# Default: 0.0
|
|
||||||
# Range: 0.0 ~ 1.0
|
|
||||||
newMoonBright = 0.0
|
|
||||||
|
|
||||||
[embeddiumextras.performance]
|
|
||||||
#Toggles JREI item rendering until searching
|
|
||||||
#Increases performance a little bit and cleans your screen when you don't want to use it
|
|
||||||
hideJREI = false
|
|
||||||
#Toggles Minecraft Fonts shadows
|
|
||||||
#Depending of the case may increase performance
|
|
||||||
#Gives a flat style text
|
|
||||||
fontShadows = true
|
|
||||||
|
|
||||||
[embeddiumextras.performance.distanceCulling.tileEntities]
|
|
||||||
#Toggles distance culling for Block Entities
|
|
||||||
#Maybe you use another mod for that :(
|
|
||||||
enable = true
|
|
||||||
#Configure horizontal max distance before cull Block entities
|
|
||||||
#Value is squared, default was 64^2 (or 64x64)
|
|
||||||
# Default: 4096
|
|
||||||
# Range: > 0
|
|
||||||
cullingMaxDistanceX = 4096
|
|
||||||
#Configure vertical max distance before cull Block entities
|
|
||||||
#Value is raw
|
|
||||||
# Default: 32
|
|
||||||
# Range: 0 ~ 512
|
|
||||||
cullingMaxDistanceY = 32
|
|
||||||
#List of all Block Entities to be ignored by distance culling
|
|
||||||
#Uses ResourceLocation to identify it
|
|
||||||
#Example 1: "minecraft:chest" - Ignores chests only
|
|
||||||
#Example 2: "ae2:*" - ignores all Block entities from Applied Energetics 2
|
|
||||||
whitelist = ["waterframes:*"]
|
|
||||||
|
|
||||||
[embeddiumextras.performance.distanceCulling.entities]
|
|
||||||
#Toggles distance culling for entities
|
|
||||||
#Maybe you use another mod for that :(
|
|
||||||
enable = true
|
|
||||||
#Configure horizontal max distance before cull entities
|
|
||||||
#Value is squared, default was 64^2 (or 64x64)
|
|
||||||
# Default: 4096
|
|
||||||
# Range: > 0
|
|
||||||
cullingMaxDistanceX = 4096
|
|
||||||
#Configure vertical max distance before cull entities
|
|
||||||
#Value is raw
|
|
||||||
# Default: 32
|
|
||||||
# Range: 0 ~ 512
|
|
||||||
cullingMaxDistanceY = 32
|
|
||||||
#List of all Entities to be ignored by distance culling
|
|
||||||
#Uses ResourceLocation to identify it
|
|
||||||
#Example 1: "minecraft:bat" - Ignores bats only
|
|
||||||
#Example 2: "alexsmobs:*" - ignores all entities for alexmobs mod
|
|
||||||
whitelist = ["minecraft:ghast", "minecraft:ender_dragon", "iceandfire:*", "create:*"]
|
|
||||||
|
|
||||||
[embeddiumextras.others]
|
|
||||||
#Configure if borderless fullscreen option should be attached to F11 or replace vanilla fullscreen
|
|
||||||
#Allowed Values: ATTACH, REPLACE, OFF
|
|
||||||
borderlessAttachModeOnF11 = "OFF"
|
|
||||||
#Toggles fast language reload
|
|
||||||
#Embeddedt points it maybe cause troubles to JEI, so ¿why not add it as a toggleable option?
|
|
||||||
fastLanguageReload = true
|
|
|
@ -1,50 +0,0 @@
|
||||||
key_iris.keybind.reload:key.keyboard.unknown:
|
|
||||||
key_iris.keybind.toggleShaders:key.keyboard.unknown:
|
|
||||||
key_iris.keybind.shaderPackSelection:key.keyboard.unknown:
|
|
||||||
key_key.corpse.death_history:key.keyboard.unknown:
|
|
||||||
key_key.curios.open.desc:key.keyboard.unknown:
|
|
||||||
key_key.cobblemon.hideparty:key.keyboard.unknown:
|
|
||||||
key_key.cobblemon.throwpartypokemon:key.keyboard.z
|
|
||||||
key_accessories.key.open_accessories_screen:key.keyboard.unknown:
|
|
||||||
key_key.jei.toggleOverlay:key.keyboard.unknown:
|
|
||||||
key_key.jei.focusSearch:key.keyboard.unknown:
|
|
||||||
key_key.jei.bookmark:key.keyboard.unknown:
|
|
||||||
key_key.jei.showRecipe:key.keyboard.unknown:
|
|
||||||
key_key.jei.showRecipe2:key.keyboard.unknown:
|
|
||||||
key_key.jei.showUses:key.keyboard.unknown:
|
|
||||||
key_key.jei.showUses2:key.keyboard.unknown:
|
|
||||||
key_key.jei.transferRecipeBookmark:key.keyboard.unknown:
|
|
||||||
key_key.jei.maxTransferRecipeBookmark:key.keyboard.unknown:
|
|
||||||
key_key.jei.clearSearchBar:key.keyboard.unknown:
|
|
||||||
key_key.jei.previousSearch:key.keyboard.unknown:
|
|
||||||
key_key.jei.nextSearch:key.keyboard.unknown:
|
|
||||||
key_key.jei.cheatOneItem:key.keyboard.unknown:
|
|
||||||
key_key.jei.cheatOneItem2:key.keyboard.unknown:
|
|
||||||
key_key.jei.cheatItemStack:key.keyboard.unknown:
|
|
||||||
key_key.jei.cheatItemStack2:key.keyboard.unknown:
|
|
||||||
key_key.jei.toggleCheatModeConfigButton:key.keyboard.unknown:
|
|
||||||
key_key.jei.toggleHideIngredient:key.keyboard.unknown:
|
|
||||||
key_key.jei.toggleWildcardHideIngredient:key.keyboard.unknown:
|
|
||||||
key_key.jei.recipeBack:key.keyboard.unknown:
|
|
||||||
key_key.jei.previousRecipePage:key.keyboard.unknown:
|
|
||||||
key_key.jei.nextRecipePage:key.keyboard.unknown:
|
|
||||||
key_key.jei.previousCategory:key.keyboard.unknown:
|
|
||||||
key_key.jei.nextCategory:key.keyboard.unknown:
|
|
||||||
key_key.jei.closeRecipeGui:key.keyboard.unknown:
|
|
||||||
key_key.aether.open_accessories.desc:key.keyboard.unknown:
|
|
||||||
key_key.aether.invisibility_toggle.desc:key.keyboard.unknown:
|
|
||||||
key_key.deep_aether.stratus_dash_ability.desc:key.keyboard.unknown:
|
|
||||||
key_key.deep_aether.toggle_skyjade_transparency:key.keyboard.unknown:
|
|
||||||
key_key.cataclysm.ability:key.keyboard.unknown:
|
|
||||||
key_key.cataclysm.helmet_ability:key.keyboard.unknown:
|
|
||||||
key_key.cataclysm.chestplate_ability:key.keyboard.unknown:
|
|
||||||
key_key.cataclysm.boots_ability:key.keyboard.unknown:
|
|
||||||
key_key.fightorflight.startbattle:key.keyboard.unknown:
|
|
||||||
key_key.journeymap.minimap_type:key.keyboard.unknown:
|
|
||||||
key_key.journeymap.minimap_preset:key.keyboard.unknown:
|
|
||||||
key_key.journeymap.create_waypoint:key.keyboard.unknown:
|
|
||||||
key_key.journeymap.toggle_entity_names:key.keyboard.unknown:
|
|
||||||
key_key.irons_spellbooks.spell_wheel:key.keyboard.v
|
|
||||||
key_key.irons_spellbooks.spellbook_cast:key.keyboard.r
|
|
||||||
key_key.inventoryhud.toggle:key.keyboard.unknown:
|
|
||||||
key_key.inventoryhud.openconfig:key.keyboard.unknown:
|
|
|
@ -1 +0,0 @@
|
||||||
guiScale:2
|
|
Binary file not shown.
|
@ -1,842 +0,0 @@
|
||||||
hash-format = "sha256"
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "config/defaultoptions/extra/config/cataclysm.toml"
|
|
||||||
hash = "9a76bf60248db9056912d34a2f5c303882f9e4bd4c1b9ffe61fef99b8eb0de38"
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "config/defaultoptions/extra/config/inventoryhud-client.toml"
|
|
||||||
hash = "61d89f6c1a9c1398ff109bc4f13ec30b68f3e71408b005ec096ebab163c05a53"
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "config/defaultoptions/extra/config/iris.properties"
|
|
||||||
hash = "7c386f2921f9c1a94c984114ff8df28d7c127b5b986ce344615e4ac4cb02c4eb"
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "config/defaultoptions/extra/config/sodium-extra-options.json"
|
|
||||||
hash = "92a62325cccecccf843d04e1be02f036fa1a3506a21290ebf040fbb78b46fc1f"
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "config/defaultoptions/extra/config/sodiumdynamiclights-client.toml"
|
|
||||||
hash = "33516556e1f7761835817a2ad13a42c3563010cf4df15296b2f685e95d0ddcb1"
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "config/defaultoptions/extra/config/sodiumextras-client.toml"
|
|
||||||
hash = "8b493ad01cbdb351da8f51d98ad791b9ae9519e69d353acf82a2f893094853ef"
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "config/defaultoptions/keybindings.txt"
|
|
||||||
hash = "64852eef84ab3f853973c3ad6affb00999638d0fc49515b9daa42981e3b9f5b2"
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "config/defaultoptions/options.txt"
|
|
||||||
hash = "624a8e4974cae64389b28e8046c3cc18a94e609a02df63f5397ec2ca0c0f7ee8"
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "config/defaultoptions/servers.dat"
|
|
||||||
hash = "0e7bfc4d1ae85b5e1bb57914cb3d07abf75a4ef5158763095f5208891f43bfe7"
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/aether-emissivity.pw.toml"
|
|
||||||
hash = "d245f988ce58a69b2734cbd656afc8c0ba510a7ddcc7b779c0f05de3275c52d3"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/aether-enhanced-extinguishing.pw.toml"
|
|
||||||
hash = "3ab0e784d15c52edda001697336bc3d7bceb1d016c89b166c77b10f6fb689737"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/aether.pw.toml"
|
|
||||||
hash = "5e62bb12eb55e4575d1ca5e3570b5cc18473138973c80ac7093e61e459339db1"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/ambientsounds.pw.toml"
|
|
||||||
hash = "f63a7e300c9556f4bcb76b7afd3aecc4d19d5323d24c48709083f5dafcbde09f"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/appleskin.pw.toml"
|
|
||||||
hash = "3213c881d019cd8f952f738c10d5a950ee52ff0084750b81f656a58a4a78515d"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/architectury-api.pw.toml"
|
|
||||||
hash = "ea336d25c3e21ef168aec20e1ea470c96949ad29632646ee8e8ab0d74b4bbfc9"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/armourers-workshop.pw.toml"
|
|
||||||
hash = "735660605aff58b7a921c328a62195c3600d23b9e7709784c3863bd618adc19a"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/attributefix.pw.toml"
|
|
||||||
hash = "586341de7078015cea16ffaf8e2e198a16c43b306d70bc439a15ea0298f9d3cb"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/bad-wither-no-cookie.pw.toml"
|
|
||||||
hash = "574807cedb57ba6360060d6bf4a359cea9d00bf8700caee866d48ab949005b89"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/badoptimizations.pw.toml"
|
|
||||||
hash = "c92c73551dc3ba9f116e0cef1e90bb553bf59f34530c7c281af28ac624a3a9d6"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/balm.pw.toml"
|
|
||||||
hash = "13e7e233a4a658aa21212e45aecc6b20efb3cc34932836c2a6fed70c8d20ce23"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/barbeques-delight-forge.pw.toml"
|
|
||||||
hash = "835ef70e3767f9a37474ca44366be17e6603212cd1333fd76266060d1771917e"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/berry-good.pw.toml"
|
|
||||||
hash = "781a0931f5ab4cc333717c2d6a56ce311474d2c0bd27681c4126aa8f24e97aa8"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/better-advancements.pw.toml"
|
|
||||||
hash = "93c4acd165a291c6d1e69c27b05b2747afc926b38a414712263fbc95f42da323"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/better-animations-collection.pw.toml"
|
|
||||||
hash = "fbb8968dd31ab07131a8885ddf4f70999fad54cdd68d448dbb09dd56b2bf7919"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/better-third-person.pw.toml"
|
|
||||||
hash = "e1f1588b18947699ddc9b4f7c5b5406c5559155b8cb52dcd0f203c07c31cd0b8"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/betterf3.pw.toml"
|
|
||||||
hash = "c9aca350959a8936b054c7164fb55d789ab1e0d38cff2af48b78f70af2bc0c6d"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/blueprint.pw.toml"
|
|
||||||
hash = "02c2891e2548adf5c59d0ef237ed01ffd89632b4908290269b513c4958ca9043"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/bookshelf-lib.pw.toml"
|
|
||||||
hash = "293ec22e4e8342a9bd0f338505a14e3794b44cd7ca1e5278a86f41f99c69a3af"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/cant-sleep-clowns-will-eat-me.pw.toml"
|
|
||||||
hash = "c9b95c629249ab90b4baeb88f501c51592b52f3edddb20ebf6eed96631a54839"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/cloth-config.pw.toml"
|
|
||||||
hash = "75181b55e0407d1fca1e2f346c6501f919f5109545990ddfb66db9cd1b771f8a"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/clumps.pw.toml"
|
|
||||||
hash = "2acaff560bbda5741538528a2967355ec86a8f7564adba0b2316989c66892374"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/cobblemon-additions.pw.toml"
|
|
||||||
hash = "d94f943034bca0270c72a3e56a9ef4864d81e2300c5e64418ee2b2619b7d979b"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/cobblemon-counter.pw.toml"
|
|
||||||
hash = "46e0f70fdcc4d47e3750b8b62a9d69c2accc3b08aafc25891ba1617c3c586714"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/cobblemon-fight-or-flight-reborn.pw.toml"
|
|
||||||
hash = "c6c63f3818b49bf0de7d5000e43ef6a381faf7d46198b13771ab6080c751f56c"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/cobblemon-integrations.pw.toml"
|
|
||||||
hash = "d21c41437169bb49b9b92bc97a2f05daa45bcd56744f590a2a858840a5f56044"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/cobblemon-pokenav.pw.toml"
|
|
||||||
hash = "0d1d81244b3898bfeced61aaba79e063ced9778f0c70aaddd0bd2442131066b5"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/cobblemon-unchained.pw.toml"
|
|
||||||
hash = "556abed0327d7cd3e96c31a0b9a2a483c52fa4adb04d11b9896a34560d5b18f7"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/cobblemon.pw.toml"
|
|
||||||
hash = "e3cb1eb238192071af93f764e3ff2c493f4f437802bb56273f664bafdea13f1d"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/colorwheel-patcher.pw.toml"
|
|
||||||
hash = "2d8c419acad3bab8eb54c6d5461f99ab76d924b753a9c811e7e94d624fe32f61"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/colorwheel.pw.toml"
|
|
||||||
hash = "9da820e4bd91294a900ec2c2859fa8ae261a573922df3a15ca64cb838c76df9f"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/comforts.pw.toml"
|
|
||||||
hash = "5e0a875282f4abed66a2cccf7929488ebb5e88447d2bb3369e8ddc728fc66fc0"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/connector.pw.toml"
|
|
||||||
hash = "9f920c5f1df2577cf374285e4aad4f2982a30ea2a3da1cf7ddaf25e04b3a2e31"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/controlling.pw.toml"
|
|
||||||
hash = "65c8086d2ec3d39acc7bd36c7a0306ccc43b602b38fa07d13291bc478ef7dfff"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/corn-delight.pw.toml"
|
|
||||||
hash = "a7216dad68fe8cabfbdcced66ad94e1da20d23fe531e03022f877ffead92df50"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/corpse.pw.toml"
|
|
||||||
hash = "d0c4db41717ede48a6f9c47ce2cd30a4336b7520279cac56649f96939cd1e7cb"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/crabbers-delight.pw.toml"
|
|
||||||
hash = "cd66e48a19b8447ef66c6148bbcd5ecb363f4a7b472dba385b4b790feae0ad0f"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/create-dragons-plus.pw.toml"
|
|
||||||
hash = "8e88d68a9dee5ca107ea3fd5d5394e52ae4e4f03decfc33974d6a958ccb200b5"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/create-enchantment-industry.pw.toml"
|
|
||||||
hash = "0177b98d7552743df5bd62e45d2efe012d8d416c53f94735a0d4074468f5a2ca"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/create.pw.toml"
|
|
||||||
hash = "7f25446123f66f57e7cc8e148155a3da39d85b31963c663b5b9be77fc1bacbe6"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/creativecore.pw.toml"
|
|
||||||
hash = "6028668d5c1c5e49797eb97bb597d818be33a67a939d0cc356a702460b504675"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/curios.pw.toml"
|
|
||||||
hash = "36debf7653e95a855b4fedacc19027cf2e01960fc0b6d55ef2ffbffbcb455690"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/cut-through.pw.toml"
|
|
||||||
hash = "4c16ee75d3b04443e96d854eec79344293963e9f4beaaf8e7215023e8ef53b88"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/deep-aether.pw.toml"
|
|
||||||
hash = "21134d88b6a1063faa58aec8163a1fb63316dbbed9bce8a50c0ab9613412f92a"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/default-options.pw.toml"
|
|
||||||
hash = "8950c7377844b642f7e6547b821691f395a6d3f90f8cf9a6d740e390792a2de3"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/diagonal-fences.pw.toml"
|
|
||||||
hash = "632743d54d410c8b78fb92c94d8f3bb6a7a3faed45171f91e554877f94f82163"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/diagonal-walls.pw.toml"
|
|
||||||
hash = "bbc15c019fd260bbb9058b14a8e03232a55df77608d9aca466d051007d62abd2"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/diagonal-windows.pw.toml"
|
|
||||||
hash = "218dcd780f0251a15f78b097206ea22a519d57b974b39e2fdd43dce91ac07133"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/distanthorizons.pw.toml"
|
|
||||||
hash = "34fc0845727b08bc39e5b56444e0695b55f6a5471380f2d1d40c5548105da28e"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/distinguished-potions.pw.toml"
|
|
||||||
hash = "fa1ff0b4d2c6fc9c26b74ba4b06d30f1e6d77763c6e2823b42fb2c08f5b72f13"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/dynamic-fps.pw.toml"
|
|
||||||
hash = "975f1280c712d2e86dd4ecddf89c516afbf3f1fb684499d3e5c71fc666c4888c"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/edivadlib.pw.toml"
|
|
||||||
hash = "e2ee2481b63a012bdfb8c9f588788dd2f116ff48298014bb3e00d08a224fe14f"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/emi-create-schematics.pw.toml"
|
|
||||||
hash = "8a9bf4dfd8d29112e64dbffd71a84aba5279f6c85ed31233f026c84ebc4ef688"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/emi-enchanting.pw.toml"
|
|
||||||
hash = "ff029ee6fc50f2696e96cdbcc696f42e75b483c9d7b83f2b1447dcf5c865e664"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/emi-loot.pw.toml"
|
|
||||||
hash = "bbf03bec2bd4927ace16eef106c45b0f3ec53c48d5f43119520123ad98f3fdf1"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/emi-ores.pw.toml"
|
|
||||||
hash = "0b921f73d5b1ad6615740956567d6cb06950f5520f094dbb7a045bb4bd5ba309"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/emi-professions-(emip).pw.toml"
|
|
||||||
hash = "0477d572817d9de3a5569109a8d07a2e519af9ccf0e8236cae621369afbc6e4c"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/emi.pw.toml"
|
|
||||||
hash = "d3c9b48d7caa2ed964e5d1a4dab1da5655c63f0a7e4a59231c4369be7ffc30e1"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/emiffect.pw.toml"
|
|
||||||
hash = "34342d4a5a9a4853c653cf768309d5b42f651250dc832bc239e746c736c70411"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/enchantment-descriptions.pw.toml"
|
|
||||||
hash = "0b380e24e46e328c362bda7cff892c5b0e471789ca8c429fd2a588eaf63b8712"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/ends-delight.pw.toml"
|
|
||||||
hash = "c31e8aea1f4ddc50d79c6dfa46dec8cbbf1a6108ff74db140baa0395ea4c5766"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/entityculling.pw.toml"
|
|
||||||
hash = "65026277699cc4b73c3d2c57ab7aad5173f161c0d6ff95e184911826387dbdec"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/every-compat.pw.toml"
|
|
||||||
hash = "6235e7170c7322559d2b0e76a97c891dbab60e79c15a9d4cb3a4805b5d23fbda"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/extra-mod-integrations.pw.toml"
|
|
||||||
hash = "6f59e18621f30c6dc0ffa7f34324b423f3e3a7a8c251560c6a1dd835b6bce87a"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/extrastorage.pw.toml"
|
|
||||||
hash = "3c242c20cc1c5ef446abf5f56a1e0624bfd038ee3bc685435cec846b0051aab0"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/farmers-delight.pw.toml"
|
|
||||||
hash = "c4027b8071cc6dfc7f0d49e702a5e25b1e36841e50acba1e699f308be156b8f2"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/forgified-fabric-api.pw.toml"
|
|
||||||
hash = "5b34f5aff5000de94ed9e132315bad7288a72a9cbb8f902df2799a579433b7af"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/friends-and-foes-beekeeper-hut-forge.pw.toml"
|
|
||||||
hash = "75c642b17b484c0d7c4ec9863295c24364ef69785937d15a80de568efafd585a"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/friends-and-foes-flowery-mooblooms-forge.pw.toml"
|
|
||||||
hash = "1cdeed5adabcbac7ca3d06ead6392d43ae400557f71275c5449ec2505008cd40"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/friends-and-foes-forge.pw.toml"
|
|
||||||
hash = "3ea8f49ae191f67ce56f1fad83147dbfd08b21640b9a4ce3330eea448664e92a"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/fruits-delight.pw.toml"
|
|
||||||
hash = "bd1e1bf1cacb4f256a606a06b0f28a7adf99428bf2bf593b7631c85b1108374d"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/fzzy-config.pw.toml"
|
|
||||||
hash = "b83675c9b88fcd909a7e1a0d93f8bfb06431f8f9f249d690520ba11e738c4402"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/geckolib.pw.toml"
|
|
||||||
hash = "9e80e6f2a680b052f2a66ade20a5abbd98a0abbebde6f30472d6ae6b993e9464"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/hardcore-revival.pw.toml"
|
|
||||||
hash = "2c0d0941d6ade8fb28d43b2ba211678aa643d229f0df0c2112442de1e5073a7b"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/immersiveengineering.pw.toml"
|
|
||||||
hash = "91875c996a9958aeea794843fb449915218625f52aaf0234ccd1faffa887e277"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/immersivemusicmod.pw.toml"
|
|
||||||
hash = "9b105ded2255d63b2b4d8b3bb24c14e467617d56019dc9abafe64cbb0c0d3cfa"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/inventory-hud-forge.pw.toml"
|
|
||||||
hash = "bacbda049bf918a3a048f017a23e3197a91d31ab905e25f7a811d69d55344ca6"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/iris.pw.toml"
|
|
||||||
hash = "f67aa60c765593a8c70f78296a460349c6aef5f4a16d173eae02e8803b545ad4"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/irons-spells-n-spellbooks.pw.toml"
|
|
||||||
hash = "cf1bb72bbbb1ad55af745b6ccb8baf8ff5d6914dc11e41e4752212ca3eb17440"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/jade.pw.toml"
|
|
||||||
hash = "407c4cc8cb9920a9b23674d81952c512302525755d8fba12e94acecaaae949e7"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/jei.pw.toml"
|
|
||||||
hash = "49b54c496707ed15e2f22cd806cbebb3d3ac489483d97f4b61495690e2eeecea"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/journey-pac.pw.toml"
|
|
||||||
hash = "c1a7d513c59eeb49bd2f377236357a280cc2e1d206c3eb3985a3a4615ed97aec"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/journeymap-integration.pw.toml"
|
|
||||||
hash = "f161cd39e3619182a8606ec812634d74713d32ca30c3585bdf7d40b7bb573919"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/journeymap.pw.toml"
|
|
||||||
hash = "cc903c56f854019dc420ab9a088e1a3a328e7839291aafae038f37005e59988e"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/kiwi.pw.toml"
|
|
||||||
hash = "a5e837dd0b40e4c730252cd8b571a28bb8baab22ab8c277d2293b39ab403c201"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/kotlin-for-forge.pw.toml"
|
|
||||||
hash = "297eb75ce1aedc28f183a8891fde9c67318953e6c8adf3d7531a17b211f9349d"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/l_enders-cataclysm.pw.toml"
|
|
||||||
hash = "5d1be74f86f5f9ec1b414368fbee483859048e17f51376efae530b32135377ea"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/leave-my-bars-alone.pw.toml"
|
|
||||||
hash = "6fc46d72336be11582b933177410f6e0e1e89c5464e19a1885c5ce80738b01c5"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/leaves-be-gone.pw.toml"
|
|
||||||
hash = "6917553073df67745da1d535cc6107839a76b54081b1b6f368a38c723f5fd8c7"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/lionfish-api.pw.toml"
|
|
||||||
hash = "b821efc793dd7308be6788095bea26a2a0479f9a3ddc3b0d6a6a2af351153fc0"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/lithostitched.pw.toml"
|
|
||||||
hash = "c18ca4f4035e67182ea949ee2d6cd2c31409306ffc404c0c14bc5c1c212747a8"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/magnum-torch.pw.toml"
|
|
||||||
hash = "f0c97c0212ddda5c012ba451a123d4b39e89f402cc70d38d31dc9098736ec07f"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/mmlib.pw.toml"
|
|
||||||
hash = "59f033615895cd019f9fb168fa93590422c5050274630a8faec46460979a5156"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/modelfix.pw.toml"
|
|
||||||
hash = "6f0dcbcffd4400c6cef07f1eeb48cdc25bac0fa01270936feab4c549aff4738e"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/moderately-enough-effect-descriptions-(meed)-jeed-addon.pw.toml"
|
|
||||||
hash = "67cf0829e2773cb44edda983e169b8197deb8e87b1cc8e1669c6ad5e4c760880"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/modernfix.pw.toml"
|
|
||||||
hash = "a9593968393bae08257ba9aae887ad60fc49991f676b637006b2bcd89907f09a"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/moonlight.pw.toml"
|
|
||||||
hash = "2219a1b4f53f8a96bf1e9827aa695e84ad9d53623f7fe40b88ccd260c732cc98"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/more-concrete.pw.toml"
|
|
||||||
hash = "af08c145608a13f68a624394b68611753f7d7d6f439538e2c328eea60be5a8e1"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/mouse-tweaks.pw.toml"
|
|
||||||
hash = "6bc414cc0f2d4c078fe83f384d786343f701f371d657c5279b5b0df1595804bd"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/no-chat-reports.pw.toml"
|
|
||||||
hash = "5da18814472be5dc93a21886983646da3a7236413800075ac75229be82d114fa"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/noisium.pw.toml"
|
|
||||||
hash = "b3e831b3e4d6ddbf23806b0fec6087eca264af1ebc04e747c89024972aaa8607"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/notenoughrecipebook.pw.toml"
|
|
||||||
hash = "8c36ea5d11344480d76f8463f452c4ecc8ee59781667589ea2fd7b69f6ee86e8"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/nullscape.pw.toml"
|
|
||||||
hash = "71dba581a68de19790dd6888e515d8b693debfc915a18ffb82af473c395f4dd3"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/oceans-delight.pw.toml"
|
|
||||||
hash = "152f6cfe8ee891ba80faa800dd3df3058be14882f9f8d07cb38eb6a6f96ece4b"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/octo-lib.pw.toml"
|
|
||||||
hash = "94828636fa5e8b258a60049250c84ba8c5a0310a98bc1530fc02c351a06aab8b"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/ominous-phantoms.pw.toml"
|
|
||||||
hash = "086a276f1ab191871a11914448792bcdacc29de00770978b55ebe7d40eb6f4c9"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/open-loader.pw.toml"
|
|
||||||
hash = "904c4adb3f8087a2c5381efd5d210183484934540372a5c839ab4790325e5cff"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/open-parties-and-claims.pw.toml"
|
|
||||||
hash = "39261ba5716225d4fcfe98701080fe78ad1832419f620a3789390a5998e918bf"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/overflowing-bars.pw.toml"
|
|
||||||
hash = "cb40fc0e1e0a3338d57b34a5ba2612ae9a9f0e32619695c4da637a98b4e52cf3"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/owo-lib.pw.toml"
|
|
||||||
hash = "46831c04077a06df823bcd0f254833a90a9a9ccc78f5069f4b4c27fa301ac0cf"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/pick-up-notifier.pw.toml"
|
|
||||||
hash = "a1b19740a94f43405c4a9d303e9313911b3d12e48958699bfeaed3dafc57a24f"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/platter.pw.toml"
|
|
||||||
hash = "f82f7a5186b43d1e40773b8576a711f4d93bf09f4e3dcacc811e896f8271ad9c"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/playeranimator.pw.toml"
|
|
||||||
hash = "c83705becd548879473132552de960f9d5975fa0edaeeb2d4665a4e35457423e"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/prickle.pw.toml"
|
|
||||||
hash = "a69a8ba0d9e52361b1853cf59b2cf2a38b668b1d508a565f315f2fa30407f546"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/puzzles-lib.pw.toml"
|
|
||||||
hash = "b27fedf73ce2b829db06bf18fea5afd33f0a001b75465301c7f5bafe7e3c04d8"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/reeses-sodium-options.pw.toml"
|
|
||||||
hash = "09306b955060349986ccf6a6d2a67f1e019fa172a7dc690dd6007f81c966309a"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/refined-storage-emi-integration.pw.toml"
|
|
||||||
hash = "4a5af515250fbde913593346d51b2c4ac8f660e71ba21f65f49a02209bb65509"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/refined-storage.pw.toml"
|
|
||||||
hash = "f5658cd7ba78eedf85cfb999945eb708adfd8aa65a4f32703bd5711ced59abae"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/resource-pack-overrides.pw.toml"
|
|
||||||
hash = "b8101dca20d054277d99e75b43dd8db44dea64a761d2ab69fdda9f6d59d9e6f1"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/resourceful-lib.pw.toml"
|
|
||||||
hash = "c0b066684294c33972d562e0cb08ea17b2d31bcf86cd1d6c63b8e968f0eac7a2"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/respawning-animals.pw.toml"
|
|
||||||
hash = "c24f3a995c06808a047abf9b8b97fb1e09defcbab121755cb23f7316a6b0bb4c"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/rrls.pw.toml"
|
|
||||||
hash = "b78044fd79ce21750d05dc61b6aede33c4b87cdc16a26f5aff472d4f73ab623c"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/searchables.pw.toml"
|
|
||||||
hash = "ce9ddada6ffd55a512149cc474c6a453281a997a5fdf1b7b4a2cc73f875e704a"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/silent-gear.pw.toml"
|
|
||||||
hash = "3ef17cc38cbe19ee924f20f3bfebb7c52bb2bb0db5e578e32473870bd1de67fa"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/silent-lib.pw.toml"
|
|
||||||
hash = "0270a241e1d1c3c8e1ecda59aeaa5004771a57d46a4a470566cb7dd6d7e89c85"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/simpletms-tms-and-trs-for-cobblemon.pw.toml"
|
|
||||||
hash = "f8ba20a06c8391dedc25741ab2817e1af2bfb9a182eee248471dae4b41eb7d77"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/snow-real-magic.pw.toml"
|
|
||||||
hash = "a1deef8071fb83a13df63c289576813b82f0687eebda9b48b7667620d5d45103"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/snow-under-trees.pw.toml"
|
|
||||||
hash = "82aedef3c457ffe51e27a4153aaf73ef7c073b87059a021495af487e41ed2e99"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/sodium-dynamic-lights.pw.toml"
|
|
||||||
hash = "c1e526d3d17cb3563e596d45c7567ed1fe60c31bdc3457f7a747ef8150bd3c1b"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/sodium-extra.pw.toml"
|
|
||||||
hash = "a1fb713df668ed21dda0602e99cb23b991c8faff841e130d7aae46258c3d6a45"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/sodium-extras.pw.toml"
|
|
||||||
hash = "02b29315d2ec0d055d0ebba1f36879da5bcacc823328a668c7e7340fb2cb03d4"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/sodium-options-api.pw.toml"
|
|
||||||
hash = "d193173f0f5dfb4a921d44e29e8d5cee656dd3a40872939069715bb482b66fc9"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/sodium.pw.toml"
|
|
||||||
hash = "0281ed9713f3141bdac363056a791845510e14761ea65b4b2813cf96d664b20a"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/sophisticated-backpacks.pw.toml"
|
|
||||||
hash = "8dd03896ae32eb04e41632127b7265b7fc8b6771ea02bf68830eb9dc8eaba6bc"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/sophisticated-core.pw.toml"
|
|
||||||
hash = "e770af79af2825410069e4889865dc2da89c0d46a21c0e4991749740ea32959b"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/sophisticated-storage-create-integration.pw.toml"
|
|
||||||
hash = "27ff0f0f6845e5ca640a1d0eaa70ec9af869e5794c18abf65546a23c9ceac765"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/sophisticated-storage.pw.toml"
|
|
||||||
hash = "f21fbfc70bc381e1beb3d8e123ec7a9fe5290e70bc0b91fe53e26e2244c71ef0"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/spice-of-life-onion.pw.toml"
|
|
||||||
hash = "bce75bb35eb4719687f61b217bb57d83ef0e63040c291354c1b2369f3c508680"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/storage-delight.pw.toml"
|
|
||||||
hash = "0ccdb1ac3f7fffacc28ffa235bdf7e37105c088095f96b6e3fc9748d64328b94"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/stylish-effects.pw.toml"
|
|
||||||
hash = "07208867dff9eb56eed1f370186187dab4ac0c1086d57ce5fd9ce07ea93a5320"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/subtle-effects.pw.toml"
|
|
||||||
hash = "d42a1a14488605365ab717784d6552dcfa3ad45f09332e0b983eab7516848c68"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/tax-free-levels.pw.toml"
|
|
||||||
hash = "dbfe27c8d868f5d934b882b8d26f3772fad78d97da191937d051a4f5c81a0b3b"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/tectonic.pw.toml"
|
|
||||||
hash = "3601406f8001d9e5a1564e0bed50a4b92f75d435af37415e44900ae74273bb0e"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/terralith.pw.toml"
|
|
||||||
hash = "da7ee99189ad35aac094919fe33cac647d98533b23c228f10d4811f08989e2b8"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/tidal-towns.pw.toml"
|
|
||||||
hash = "0ccb1c696758d7935d02dd5160987cab8d3594ab24f89deb01c28f9e596094e7"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/wall-jump-txf.pw.toml"
|
|
||||||
hash = "4ba37fc038fb52396b3557d6249d96c45acd8feec0355589032ea625d0a9edd6"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/yacl.pw.toml"
|
|
||||||
hash = "aa9070a0e763f00f0d0b325e9bb980e53faabe9854bae25f2e542a7b81b7492e"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/yeetus-experimentus.pw.toml"
|
|
||||||
hash = "5e25dccab496945a5f19bb82383e0ebf98452ffc14cd25c7e0259cc44312281a"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/yungs-api.pw.toml"
|
|
||||||
hash = "d9c0c9209bac0b693af2a7c1e47ffb28d366bad19c91df31dc6d345fa75250a1"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/yungs-better-desert-temples.pw.toml"
|
|
||||||
hash = "c2cb28859e7bcc0eb4ce59c5792f90fa5f8ab8865f5867ba26a5a345ec60b498"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/yungs-better-dungeons.pw.toml"
|
|
||||||
hash = "1496ffa30020676979e65921b91e583a2fdc77e50001e2ed55f99edf1a0ae880"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/yungs-better-end-island.pw.toml"
|
|
||||||
hash = "03d964cba45be30fbcbef52f89f3953185737f55c8934d12e199b67194c2b368"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/yungs-better-jungle-temples.pw.toml"
|
|
||||||
hash = "c2dc09f214e7c1cecca6cf434776c2616f6d36bd27c06a6b39f985da0453a4f5"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/yungs-better-mineshafts.pw.toml"
|
|
||||||
hash = "e839608ebc974e9e7819adc7bf29132ea86fc41b46af540fe0fa39b2007b2439"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/yungs-better-nether-fortresses.pw.toml"
|
|
||||||
hash = "50c1731148d91a4ef05cfc47f759ca8fb3dad254e15ce4ecc5732d6fbfa68637"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/yungs-better-ocean-monuments.pw.toml"
|
|
||||||
hash = "a2d7176026abf4a68a663b375811a603c508f36062cc7fb5b45416e1462682a8"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/yungs-better-strongholds.pw.toml"
|
|
||||||
hash = "03084966c05070b5c4b17cd89234f3c0d813940a2d76b405a6699deac10a0ab8"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/yungs-better-witch-huts.pw.toml"
|
|
||||||
hash = "9854b699d5a067c46ac99b1dedeeb529bff3fc18dd079e29b438c4cbf9725f68"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/yungs-bridges.pw.toml"
|
|
||||||
hash = "c5e5f5aed37edd8073ec736e179b6159530ff497f4fe4c4dfaf954c810910433"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/yungs-extras.pw.toml"
|
|
||||||
hash = "cfb7ce4c2b00cedd2e61f7d345b824d6bcc1471021668d2319ee2e4079108639"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "shaderpacks/complementary-reimagined.pw.toml"
|
|
||||||
hash = "3385e33cb8e2cbf402562dcb68669cc2905fec01b4be9fe27a516010c5aaff87"
|
|
||||||
metafile = true
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Aether Addon: Emissivity"
|
|
||||||
filename = "aether_emissivity-1.21.1-1.0.1-neoforge.jar"
|
|
||||||
side = "client"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/sKHHynnb/versions/NgXUuFDh/aether_emissivity-1.21.1-1.0.1-neoforge.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "51d68890596958d9dba32afce0f27b8d03fcfbaafec654c8604e847beef681adb895b85a349380997d448449c86d255825b0061290daf0db5fe890bc31016689"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "sKHHynnb"
|
|
||||||
version = "NgXUuFDh"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Aether Addon: Enhanced Extinguishing"
|
|
||||||
filename = "aether_enhanced_extinguishing-1.21.1-1.0.0-neoforge.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/FDrEl7QY/versions/6O6CJTuj/aether_enhanced_extinguishing-1.21.1-1.0.0-neoforge.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "006a921f1c52bd8aa0c195cda646ab6787c28bbc70ebed66d7d444838f464ba8be479c74b801deeb9aaf3ddf7350ea238fc73228af275a7112783d91c064d4b0"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "FDrEl7QY"
|
|
||||||
version = "6O6CJTuj"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "The Aether"
|
|
||||||
filename = "aether-1.21.1-1.5.8-neoforge.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/YhmgMVyu/versions/IOyjRzWX/aether-1.21.1-1.5.8-neoforge.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "3343a8d87f49ae46eeae1aa657bcec8a6a6451110ffee18bc7d6e6b5df5a85c01a534c1bc01ef7f62648abc8a8ee408ac741891cd066804fa3fe6761b9532f7e"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "YhmgMVyu"
|
|
||||||
version = "IOyjRzWX"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "AmbientSounds"
|
|
||||||
filename = "AmbientSounds_NEOFORGE_v6.1.12_mc1.21.1.jar"
|
|
||||||
side = "client"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/fM515JnW/versions/YY79wyx3/AmbientSounds_NEOFORGE_v6.1.12_mc1.21.1.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "9af4fdae4d520924299baea52a56c2bb3ce6997d356ba7e74d5a48cf42ee6353583037fa3cbc36172c97cff806b321bbb8d9b8d4065465cfbf8d883b67c80340"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "fM515JnW"
|
|
||||||
version = "YY79wyx3"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "AppleSkin"
|
|
||||||
filename = "appleskin-neoforge-mc1.21-3.0.7.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/EsAfCjCV/versions/kztxpjAA/appleskin-neoforge-mc1.21-3.0.7.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "03a94fe4143250b8e80abe97770918ba0af1265110bb73c25444674f9cdf86164464332a913cbac29af82d8ed02dce6ef19bbb62fced92620817a7ec1e761b71"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "EsAfCjCV"
|
|
||||||
version = "kztxpjAA"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Architectury API"
|
|
||||||
filename = "architectury-13.0.8-neoforge.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/lhGA9TYQ/versions/ZxYGwlk0/architectury-13.0.8-neoforge.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "65e3664953385d880320dd6bb818bcb96d361c07c53e2a7f65e64c6a47720ee26b233224ae9cad465ef0b2bbaefdaf30fb0175a983cecd91de058817d6fcf57e"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "lhGA9TYQ"
|
|
||||||
version = "ZxYGwlk0"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Armourer's Workshop"
|
|
||||||
filename = "armourersworkshop-forge-1.21.1-3.2.3-beta.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/y4JF3gXL/versions/gWKk3ffs/armourersworkshop-forge-1.21.1-3.2.3-beta.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "d36aa65096c3293db2b6f4056123f737823bd55eeaf86984e9bfd83d3ab33e68f0e38770962913530d4113ceebac6ebb53676c739975aac8a56f646eccd7fd0c"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "y4JF3gXL"
|
|
||||||
version = "gWKk3ffs"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "AttributeFix"
|
|
||||||
filename = "attributefix-neoforge-1.21.1-21.1.2.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/lOOpEntO/versions/a0oKmnPU/attributefix-neoforge-1.21.1-21.1.2.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "bbfe003ed29a2bb0b4dd0a61d64b411748c9f5cb48ccbfd954dd2d813c452c540638749b6f19e7472e44ae1e966a3629b135190ffba3099cfdf45355618c0b97"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "lOOpEntO"
|
|
||||||
version = "a0oKmnPU"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Bad Wither No Cookie - Reloaded"
|
|
||||||
filename = "bwncr-neoforge-1.21.1-3.20.3.jar"
|
|
||||||
side = "client"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/lL2MtE37/versions/Vg54emzq/bwncr-neoforge-1.21.1-3.20.3.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "db8419504e6ede1553b2e2d060fe4937c53898154c66475b726381155233a55daa0f52a530562dfc84202692e52614f8c585e89b1f8621f6bf799ce6d97c91ab"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "lL2MtE37"
|
|
||||||
version = "Vg54emzq"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "BadOptimizations"
|
|
||||||
filename = "BadOptimizations-2.3.0-1.21.1.jar"
|
|
||||||
side = "client"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/g96Z4WVZ/versions/AQrpXs3f/BadOptimizations-2.3.0-1.21.1.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "a9d78ab8d84d0ba3ebfd77eb3c4f585b9c3f0cad8e59b0ecef8c3ba107067342d7549f275c8fe45a5d4f35f7d848a15c184ad6e369044e659d17ce08afe91a77"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "g96Z4WVZ"
|
|
||||||
version = "AQrpXs3f"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Balm"
|
|
||||||
filename = "balm-neoforge-1.21.1-21.0.48.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/MBAkmtvl/versions/flSytBwz/balm-neoforge-1.21.1-21.0.48.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "66a601c8b84c994392d5b81766b0610d9fe757c84ae0879799f0f669750c04f7aa4d8e3b9ca6f0049aaa959a1aa5d49d77e570cec678f569b8ad00e96cd09414"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "MBAkmtvl"
|
|
||||||
version = "flSytBwz"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Barbeque's Delight [Forge/NeoForge]"
|
|
||||||
filename = "barbequesdelight-1.2.0+3.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/rtu7uERF/versions/h49PLX7j/barbequesdelight-1.2.0%2B3.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "d29490f2982bfb225e23a77b37d82a8a35f0b0d6a842205685215eb9005b87ac92ad3ff0bbe3ffa08df1e7f466fadf2e3c245f9be17c15b32e76bf9f023c1cf5"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "rtu7uERF"
|
|
||||||
version = "h49PLX7j"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Berry Good"
|
|
||||||
filename = "berry_good-1.21.1-8.0.0.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/2WZWaKCl/versions/dJvvZvQk/berry_good-1.21.1-8.0.0.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "0fea9a289d39e0d722a323d5777bede66d4850655377c923cd4cae2f864b0e994fc87b0e75df7bd50683f40f08f509a77f3107c9956169326a0c184d7f092970"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "2WZWaKCl"
|
|
||||||
version = "dJvvZvQk"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Better Advancements"
|
|
||||||
filename = "BetterAdvancements-NeoForge-1.21.1-0.4.3.21.jar"
|
|
||||||
side = "client"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/Q2OqKxDG/versions/FjTYILOi/BetterAdvancements-NeoForge-1.21.1-0.4.3.21.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "b3deafd146dc3ea6e879fbc92f00de5797319a1aa620fb3b39be64c19271dab2efa07f824cda7139f8c22f2524ea413949357f5469bb6de584d1386de069c6b7"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "Q2OqKxDG"
|
|
||||||
version = "FjTYILOi"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Better Animations Collection"
|
|
||||||
filename = "BetterAnimationsCollection-v21.1.0-1.21.1-NeoForge.jar"
|
|
||||||
side = "client"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/OoOVj3J3/versions/tlFY9zBb/BetterAnimationsCollection-v21.1.0-1.21.1-NeoForge.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "bd99f6040b076ff878e4aae3832e6c494fbaba5d0cb0b26d80c1874c7bd59c11e725705aaeb777d9f1bb821b516e15866600c665a4fba1eafa7a75cbf66307bf"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "OoOVj3J3"
|
|
||||||
version = "tlFY9zBb"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Better Third Person"
|
|
||||||
filename = "BetterThirdPerson-neoforge-1.9.0.jar"
|
|
||||||
side = "client"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/G1s2WpNo/versions/aG5y4JUQ/BetterThirdPerson-neoforge-1.9.0.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "053acb813940aac69578810558056942966f2f0a24006a3a5de545c82888f8190b3bdc27a2401d0f70200dc4c927c0f84a45bf17821fb94fb9b886d633644619"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "G1s2WpNo"
|
|
||||||
version = "aG5y4JUQ"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "BetterF3"
|
|
||||||
filename = "BetterF3-11.0.3-NeoForge-1.21.1.jar"
|
|
||||||
side = "client"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/8shC1gFX/versions/maXNB1dn/BetterF3-11.0.3-NeoForge-1.21.1.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "59c36a882669399dce2110db42df05e8fe935a2e1194c4bac49abffc3129b2e19373dfe3c4a3d2f8b22f21b1d66ad8cbd653944ce0a71ae05d3d65528d1b7514"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "8shC1gFX"
|
|
||||||
version = "maXNB1dn"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Blueprint"
|
|
||||||
filename = "blueprint-1.21.1-8.0.5.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/VsM5EDoI/versions/l2AucG5l/blueprint-1.21.1-8.0.5.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "6a0801d078b233e4e909c9f9644236def1b29dd135bdf64a98c2688edebc0eef266a7b419911035726c565eee616090047e59601ece77033e38108a3e1bfd525"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "VsM5EDoI"
|
|
||||||
version = "l2AucG5l"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Bookshelf"
|
|
||||||
filename = "bookshelf-neoforge-1.21.1-21.1.67.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/uy4Cnpcm/versions/9LiRySL2/bookshelf-neoforge-1.21.1-21.1.67.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "98225af4ba0a8e10e30219b9a2bef39d0aa49425f5f09b6b2c7f627992458e39e30b686d03a8b8c4563eae44505ce94a7d21363700d77b21c1c4771409c34c63"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "uy4Cnpcm"
|
|
||||||
version = "9LiRySL2"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Can't Sleep Clowns Will Eat Me"
|
|
||||||
filename = "cant_sleep_clowns_will_eat_me-1.21-2.0.0.0.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
hash-format = "sha1"
|
|
||||||
hash = "da6f8415bb3be1f1855b1bb2c617db27683d3dab"
|
|
||||||
mode = "metadata:curseforge"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.curseforge]
|
|
||||||
file-id = 5530236
|
|
||||||
project-id = 430957
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Cloth Config API"
|
|
||||||
filename = "cloth-config-15.0.140-neoforge.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/9s6osm5g/versions/izKINKFg/cloth-config-15.0.140-neoforge.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "aaf9b010955b8cd294e5a92f069985b18729fd5e2cf22d351f1dff9680f15488688803ec41e77e941cbde130ceb535014ca4c868047d80ab69c2d508e216654d"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "9s6osm5g"
|
|
||||||
version = "izKINKFg"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Clumps"
|
|
||||||
filename = "Clumps-neoforge-1.21.1-19.0.0.1.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/Wnxd13zP/versions/jo7lDoK4/Clumps-neoforge-1.21.1-19.0.0.1.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "314d8d8e640d73041f27e0f3f2cad7aad8b4c77dbd7fb31700ef7760362261f77085eed5289555c725d99c3f47a114e7290cd608f39c9f0f12ef74958463bdcc"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "Wnxd13zP"
|
|
||||||
version = "jo7lDoK4"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Cobblemon additions"
|
|
||||||
filename = "BCA-Datapack-3.8_CE_norm_M1.21.1_C1.6.1.zip"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/W2pr9jyL/versions/J1wqmyOI/BCA-Datapack-3.8_CE_norm_M1.21.1_C1.6.1.zip"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "65d97aeb98572b264badf9c19b7994853472910dc2b9da2c962525e6f635deae812b9bf7a7e1886fcdf5e72764271fa0543d9066bb43f71a60028507e6e4e35c"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "W2pr9jyL"
|
|
||||||
version = "J1wqmyOI"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Cobblemon Counter"
|
|
||||||
filename = "cobblemon-counter-1.6-neoforge-1.5.1.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/rj8uLYP4/versions/4NXvB2jm/cobblemon-counter-1.6-neoforge-1.5.1.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "ff49a9e9939ef3c84e941c4070ca923dfc439f5ffed0aad3530db5fc5b70b1c4be5751310cc61e7d61853e25ff2c8a039de5e5cf38827e24aadfd659e0d1b511"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "rj8uLYP4"
|
|
||||||
version = "4NXvB2jm"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Cobblemon Fight or Flight Reborn"
|
|
||||||
filename = "fightorflight-neoforge-0.8.2.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/cTdIg5HZ/versions/9JSwVvPR/fightorflight-neoforge-0.8.2.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "3024acdc80eb3e07a914d46ecfc85c9addf2775c6469a5f4d88922d9d0f2fe6599aa8b6c4137bad10bc38dc88c0351eb5d7173bdcbf29a5b238610a3fbf2f80c"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "cTdIg5HZ"
|
|
||||||
version = "9JSwVvPR"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Cobblemon Integrations"
|
|
||||||
filename = "cobblemonintegrations-neoforge-1.21.1-1.1.3.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/NPCfuUI4/versions/slzdgomG/cobblemonintegrations-neoforge-1.21.1-1.1.3.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "74a30fdd644638d2fc95bccb8b4c20cb6e5dd33309ccca8c155e30e8e77e8bf3670f6a79a86c4f9404b04bc3ce7b78428cf69a3fb15ba46e4a71a4ddd2f1f471"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "NPCfuUI4"
|
|
||||||
version = "slzdgomG"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Cobblemon Pokenav"
|
|
||||||
filename = "cobblenav-neoforge-2.2.3.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/bI8Nt3uA/versions/O4yCDqfr/cobblenav-neoforge-2.2.3.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "3d6d97246a4255c172e13542d551de91d4047934711405cf7717d55bce83dd476fb146318c793592c28331d01fd8887e3e67dda4071d6c34ad8576393401ed12"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "bI8Nt3uA"
|
|
||||||
version = "O4yCDqfr"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Cobblemon Unchained"
|
|
||||||
filename = "cobblemon-unchained-1.6-neoforge-1.2.3.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/wh0wnzrT/versions/SLb2aN0u/cobblemon-unchained-1.6-neoforge-1.2.3.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "c30f82a160794f00534ab31eea3f8e340bb76ce4d950b9825eba34d5a924a7355f31e35f3e4ce98c165c6c29897dbf55fdd75d8603b1c3f3ae3a9f28dac54388"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "wh0wnzrT"
|
|
||||||
version = "SLb2aN0u"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Cobblemon"
|
|
||||||
filename = "Cobblemon-neoforge-1.6.1+1.21.1.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/MdwFAVRL/versions/eLcb8xod/Cobblemon-neoforge-1.6.1%2B1.21.1.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "9d10fb7aec60c775ea050002b7f8f4390a5bed823a91e68ec088160ddf024860c7a7fb8aef3069b7619009a04335466702150eac6e1502f1c1051d88cb5b3897"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "MdwFAVRL"
|
|
||||||
version = "eLcb8xod"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Colorwheel Patcher"
|
|
||||||
filename = "colorwheel_patcher-neoforge-0.2.4+mc1.21.1.jar"
|
|
||||||
side = "client"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/KPsw5jDu/versions/TxG8hsQV/colorwheel_patcher-neoforge-0.2.4%2Bmc1.21.1.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "ee3fa2cee448fa7733a20d1e0cda6ca6868063ef234c78d55798cff7d62181880639a12655401c7e15329add38b8253292471dc5d96b57d666fec68cacd9ff26"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "KPsw5jDu"
|
|
||||||
version = "TxG8hsQV"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Colorwheel"
|
|
||||||
filename = "colorwheel-neoforge-0.2.3+mc1.21.1.jar"
|
|
||||||
side = "client"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/BzHgFoGz/versions/jF0HWFDB/colorwheel-neoforge-0.2.3%2Bmc1.21.1.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "297d252f8e5b01116832a6e867c7a3b159bdb984a58f8c07baf2598915e91c3c23369065bcf763c655ea23849de8b791b5ed945f1a70d63292d647dbc704cb94"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "BzHgFoGz"
|
|
||||||
version = "jF0HWFDB"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Comforts"
|
|
||||||
filename = "comforts-neoforge-9.0.4+1.21.1.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/SaCpeal4/versions/f0FgfKAZ/comforts-neoforge-9.0.4%2B1.21.1.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "c1fcb536f1a311876c09c9b42b43f599115bcd14bbbbc22d56c5ba8ec72f9e32d84661f0f2f1abbfa19d085f3798ce471b3d89e396f1656a2c57edf2ec8cc3dd"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "SaCpeal4"
|
|
||||||
version = "f0FgfKAZ"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Sinytra Connector"
|
|
||||||
filename = "connector-2.0.0-beta.8+1.21.1-full.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/u58R1TMW/versions/KrmWHpgS/connector-2.0.0-beta.8%2B1.21.1-full.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "c734a56142138aeabab116c7e30427d894c8b6c36dc95f498bbcd262916287894326f23a5da84d2605a924a93337f9302b83c2221ead2e013531d350baec796f"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "u58R1TMW"
|
|
||||||
version = "KrmWHpgS"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Controlling"
|
|
||||||
filename = "Controlling-neoforge-1.21.1-19.0.5.jar"
|
|
||||||
side = "client"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/xv94TkTM/versions/FaNppCJJ/Controlling-neoforge-1.21.1-19.0.5.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "bd01b2a38a869ea38e5f2a8fcd601e67ea9b132b9883c6ae752bc35dff6e94f6d47b965e31c1ee5c2f6a1221653549680da779fcb5319d199aec261d221d179e"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "xv94TkTM"
|
|
||||||
version = "FaNppCJJ"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Corn Delight"
|
|
||||||
filename = "corn_delight-1.1.8-1.21.1.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/uxLAKWU8/versions/IyuE10ak/corn_delight-1.1.8-1.21.1.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "2f3cbf3e9dacbad3184f6f8f898f069008926a0342da3b1e84608523c74a3100eae7ed65c1d2f43cdfe0eb9d84175908974d39722ab342a7b6dbc326d2dc7c64"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "uxLAKWU8"
|
|
||||||
version = "IyuE10ak"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Corpse"
|
|
||||||
filename = "corpse-neoforge-1.21.1-1.1.10.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/WrpuIfhw/versions/9KagdOAl/corpse-neoforge-1.21.1-1.1.10.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "7a7f4f53497e281678e3e2cf8e3fcbc7369564a32bf3c4b427e775f512745bb56a800e322e3f95aa9a127b25772ca495f4ec312e3049da2c5ce03fac8bff9365"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "WrpuIfhw"
|
|
||||||
version = "9KagdOAl"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Crabber's Delight"
|
|
||||||
filename = "crabbersdelight-1.21.1-1.1.10.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/gBGdVBJy/versions/ptG64SYO/crabbersdelight-1.21.1-1.1.10.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "1e7aee54a97a71e6e55cdad6fb45e097f3bb25afbe6c91b62696b8ac5df7e471e3b0f089b4202f9a64efbd485ed2981d5f2ddafcef37d3e69fc3e770e4c2b07f"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "gBGdVBJy"
|
|
||||||
version = "ptG64SYO"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Create: Dragons Plus"
|
|
||||||
filename = "create-dragons-plus-1.6.1.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/dzb1a5WV/versions/M71tJKIz/create-dragons-plus-1.6.1.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "fa5af12d67974d40e0ce0f37c520b88b2a1ebb292af94634cbd404bed4315000e37169728385cf211ddcd91e3fb2a225039a2d80acb54102eb3775e31d0f6906"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "dzb1a5WV"
|
|
||||||
version = "M71tJKIz"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Create: Enchantment Industry"
|
|
||||||
filename = "create-enchantment-industry-2.1.7.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/JWGBpFUP/versions/MYRXafDX/create-enchantment-industry-2.1.7.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "8d224728c45ed08a676c229c57baadb4a0c3006cd35ea13bf8084d869391411c8bb440c3d1b9dd7ea8c48ce03359852b6d188198e61a9d91ab5cc1844aa861b8"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "JWGBpFUP"
|
|
||||||
version = "MYRXafDX"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Create"
|
|
||||||
filename = "create-1.21.1-6.0.6.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/LNytGWDc/versions/tS7ygzAE/create-1.21.1-6.0.6.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "a65723abb0439ab5bb9dfae0b66db33a7c41422d015be7524912033b6cb39a1ef3a247b4b842981131cd541d141cc257d761b6de4e8837960a98b43054049228"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "LNytGWDc"
|
|
||||||
version = "tS7ygzAE"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "CreativeCore"
|
|
||||||
filename = "CreativeCore_NEOFORGE_v2.13.7_mc1.21.1.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/OsZiaDHq/versions/jy6rEC2t/CreativeCore_NEOFORGE_v2.13.7_mc1.21.1.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "ab0f95c8127ea248592e26120a2aedc15ffb91ba27fce1da318d1cb3cfcea6accdacb334076363955f99d4d12816c3e4546298e0ec8b9bda223062f4e5c8b33b"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "OsZiaDHq"
|
|
||||||
version = "jy6rEC2t"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Curios API"
|
|
||||||
filename = "curios-neoforge-9.5.1+1.21.1.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/vvuO3ImH/versions/yohfFbgD/curios-neoforge-9.5.1%2B1.21.1.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "5981a267686b744e7e3c227f78cbcd5267c14ac6979a28e814695f4589273998563147207fef4a5cdb7cdbdc39797cd95d9e4abadb55869f18e02a38d0654ae5"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "vvuO3ImH"
|
|
||||||
version = "yohfFbgD"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Cut Through"
|
|
||||||
filename = "CutThrough-v21.1.0-1.21.1-NeoForge.jar"
|
|
||||||
side = "client"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/Dk6su9JN/versions/5P5tLHSh/CutThrough-v21.1.0-1.21.1-NeoForge.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "e6313fe2c2fb8b5131b39bf8ae105e5120630b78d713db5a573c6830a476868beee3f38aa4da7c29779214b7690af83ca0ce9036d1f757a54c2352e0748cd256"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "Dk6su9JN"
|
|
||||||
version = "5P5tLHSh"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Deep Aether"
|
|
||||||
filename = "deep_aether-1.21.1-1.1.2.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/gcHIih5B/versions/6zQqREgL/deep_aether-1.21.1-1.1.2.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "d0eb647503cf7f806b31c2ae23901c8f886570b2a593d9510a71cc303c647478eb0e2d183c95f6da644d700ccc6f17978471b035c20a968b895b248c5e81c1cf"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "gcHIih5B"
|
|
||||||
version = "6zQqREgL"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Default Options"
|
|
||||||
filename = "defaultoptions-neoforge-1.21.1-21.1.4.jar"
|
|
||||||
side = "client"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/WEg59z5b/versions/zFWJFG9t/defaultoptions-neoforge-1.21.1-21.1.4.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "050b9216e082530facd2531cac9f3d9598b4bade37e8b2fbe785da9e9cd2ea189fa7aa41a7b7f8be1a14df12ec1a1be7bc71bf558b80bb123c444d798d940d3d"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "WEg59z5b"
|
|
||||||
version = "zFWJFG9t"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Diagonal Fences"
|
|
||||||
filename = "DiagonalFences-v21.1.1-1.21.1-NeoForge.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/IKARgflD/versions/bgR1e0O5/DiagonalFences-v21.1.1-1.21.1-NeoForge.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "856e035193eb99264321e6d971881bad14baeb7196cb3ae75463457802dfb4d967eaec27a046e1290f074721fc1cd85d59adfd773a287b159a7baac1435c09d1"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "IKARgflD"
|
|
||||||
version = "bgR1e0O5"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Diagonal Walls"
|
|
||||||
filename = "DiagonalWalls-v21.1.2-1.21.1-NeoForge.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/FQgc8dib/versions/2k3GCxEt/DiagonalWalls-v21.1.2-1.21.1-NeoForge.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "69495235948a9786b6c99eac06cf2a406f478b4425f08699b205da667a3a8a7f9cd3e7ac643199a01487d3a7319b275e014d2a81885008845d2ec798664620f0"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "FQgc8dib"
|
|
||||||
version = "2k3GCxEt"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Diagonal Windows"
|
|
||||||
filename = "DiagonalWindows-v21.1.1-1.21.1-NeoForge.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/oOi0CKes/versions/IwUmOLxe/DiagonalWindows-v21.1.1-1.21.1-NeoForge.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "fd335b7789321a1d0de9691d855c2bcc51d669f4614bdd2cd6fe17f7881f9dd39e63cb28c39a1a1798e98a6876ad1658ef2e3805e884f13e4650810611227849"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "oOi0CKes"
|
|
||||||
version = "IwUmOLxe"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Distant Horizons"
|
|
||||||
filename = "DistantHorizons-2.3.4-b-1.21.1-fabric-neoforge.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/uCdwusMi/versions/P14vqscU/DistantHorizons-2.3.4-b-1.21.1-fabric-neoforge.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "5514def7741ae61517c4b678294b2672c767c3bbe15f4beb3dfb60761a3bf367ed480136c9c1f6e6fcd302d0e4f79984215dbd348cfda983dacc714f377392dd"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "uCdwusMi"
|
|
||||||
version = "P14vqscU"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Distinguished Potions"
|
|
||||||
filename = "DistinguishedPotions-v21.1.1-1.21.1-NeoForge.jar"
|
|
||||||
side = "client"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/lX1xTFBZ/versions/Jya0J2fp/DistinguishedPotions-v21.1.1-1.21.1-NeoForge.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "0e64e8aab8048960a09e8af2cd2379fd255c5a7810757bca787ecd2a123a6cf713820ae422b2b385311236b47519f5f04786bf3f23a533292507794b9a41a216"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "lX1xTFBZ"
|
|
||||||
version = "Jya0J2fp"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Dynamic FPS"
|
|
||||||
filename = "dynamic-fps-3.9.5+minecraft-1.21.0-neoforge.jar"
|
|
||||||
side = "client"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/LQ3K71Q1/versions/TWvfxJSz/dynamic-fps-3.9.5%2Bminecraft-1.21.0-neoforge.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "e6f128e39eee182319d5d0f6f8a602007172906f49b4568e3f4d5c9aa32d0a375bdbd440567318c0d5e31e6fc446294e1919cbbedfb85edd9d7fa6c1853e830a"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "LQ3K71Q1"
|
|
||||||
version = "TWvfxJSz"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "EdivadLib"
|
|
||||||
filename = "EdivadLib-1.21-3.0.0.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/a8Jk9kpK/versions/exl6hgWJ/EdivadLib-1.21-3.0.0.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "3cb39fdc7ce4b68bf4681ef7395fb6b81961372b10a68784abedd33e2026d9c3841daa93d29a44f9872ef0287eac276f10ab8640a8543ae67e9ae294f28bd8b6"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "a8Jk9kpK"
|
|
||||||
version = "exl6hgWJ"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "EMI: Create Schematics"
|
|
||||||
filename = "emi_create_schematics-1.0.2.jar"
|
|
||||||
side = "client"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/5bgqgixq/versions/XhimCTHT/emi_create_schematics-1.0.2.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "afdd6fb0e09ce13e3163cb664786e4b2d20143669b35fbf97cce05a12110feefc4e3e9a81a081c9afb69d175f64ce15a1e92decfbbed8c62b552734afa7a1220"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "5bgqgixq"
|
|
||||||
version = "XhimCTHT"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "EMI Enchanting"
|
|
||||||
filename = "emi_enchanting-0.1.2+1.21+neoforge.jar"
|
|
||||||
side = "client"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/wbWoo11W/versions/ZyJ6TKvh/emi_enchanting-0.1.2%2B1.21%2Bneoforge.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "90944c8ff897fa98d0323fe94e4053fb89f43cbaf4fd28d6ad58134cea1469c9398e0c0edd4328a5530e1578ad2286ec5822292bf9c587182e5606dbfff218be"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "wbWoo11W"
|
|
||||||
version = "ZyJ6TKvh"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "EMI Loot"
|
|
||||||
filename = "emi_loot-0.7.6+1.21+neoforge.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/qbbO7Jns/versions/ZCSyd1co/emi_loot-0.7.6%2B1.21%2Bneoforge.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "273dce3dc8746c664f95cd97f2afc8f32684dd107c69daacd40c514574207d856a9edf6133cb1529cf7c50d6fbc16f30028a9ecb8137162d29f52567cdc4c564"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "qbbO7Jns"
|
|
||||||
version = "ZCSyd1co"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "EMI Ores"
|
|
||||||
filename = "emi_ores-1.2+1.21.1+neoforge.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/sG4TqDb8/versions/1jY6MIrK/emi_ores-1.2%2B1.21.1%2Bneoforge.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "7b01dd29400802a18e3f23bcc2057e12070d28529bf358306758b462d69ab0532aa392a4b683cb0f5cf1a20f09e5f0d965f90923e72fb2fd6476f63a55a210a7"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "sG4TqDb8"
|
|
||||||
version = "1jY6MIrK"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "EMI professions (EMIP)"
|
|
||||||
filename = "EMIProfessions-neoforge-1.21.1-1.0.3.jar"
|
|
||||||
side = "client"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/LGVihYcz/versions/wGOa5uxT/EMIProfessions-neoforge-1.21.1-1.0.3.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "f720f58590e3098459c27e3579f36a00b66443b7c089e3fa9ef1399ed17587d51b046c69e2f07f6e21089fc85d58881a5b224d94a1b2f4738a0c6cbb2dd9c798"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "LGVihYcz"
|
|
||||||
version = "wGOa5uxT"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "EMI"
|
|
||||||
filename = "emi-1.1.22+1.21.1+neoforge.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/fRiHVvU7/versions/ouSj7NfF/emi-1.1.22%2B1.21.1%2Bneoforge.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "6b4f2b93ccd40bbbf3d1f368a9d92b43777543c44243a76ed4010bd563a7f9658decdd58a3d79a3cdc04a288bf98e327a1cce93a5a9d2b8840306578fe633bca"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "fRiHVvU7"
|
|
||||||
version = "ouSj7NfF"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "EMIffect"
|
|
||||||
filename = "emiffect-neoforge-2.1.5+mc1.21.1.jar"
|
|
||||||
side = "client"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/705gWllI/versions/8t6Kpge9/emiffect-neoforge-2.1.5%2Bmc1.21.1.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "f5cc9936e0beccb578814cbb5fd343f1e49fd74d9f157a4314bf6643b4d5fd555dc28975daeb9013918a4ba20c1d50d9f0de779d72f26189599fce41f9202bc8"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "705gWllI"
|
|
||||||
version = "8t6Kpge9"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Enchantment Descriptions"
|
|
||||||
filename = "enchdesc-neoforge-1.21.1-21.1.7.jar"
|
|
||||||
side = "client"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/UVtY3ZAC/versions/pNpo2TdS/enchdesc-neoforge-1.21.1-21.1.7.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "0a7e582189a5946c1f813e66ee54f887e33576868c9752ad0cdc25707599cf00670ae87b7e4d26711d541becc23524bff4c5ffd6cf87afcb690e9131222d664d"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "UVtY3ZAC"
|
|
||||||
version = "pNpo2TdS"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "End's Delight"
|
|
||||||
filename = "ends_delight-2.5.1+neoforge.1.21.1.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/yHN0njMr/versions/YxSK1qNm/ends_delight-2.5.1%2Bneoforge.1.21.1.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "c36b4a7ac0d55bf18506846ae01dbfb3d89b9333d334d309319346b632aac55441240f8b766ab52b1e497d96d47a5ad8d357af7f5a763473f05ce0fe1b861814"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "yHN0njMr"
|
|
||||||
version = "YxSK1qNm"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Entity Culling"
|
|
||||||
filename = "entityculling-neoforge-1.8.2-mc1.21.jar"
|
|
||||||
side = "client"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/NNAgCjsB/versions/11PvLmko/entityculling-neoforge-1.8.2-mc1.21.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "34f9bbfc1773557b3b1eff0c8bc2e9faea08607d732e0090d260dda9e7738d2864d695596eec2e81f8f3d64d873297b91deb5473e45af466babb718a3ac51d57"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "NNAgCjsB"
|
|
||||||
version = "11PvLmko"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Every Compat (Wood Good)"
|
|
||||||
filename = "everycomp-1.21-2.10.14-neoforge.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/eiktJyw1/versions/vNXXgNzK/everycomp-1.21-2.10.14-neoforge.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "0fa4468075189ceab5045cf342414f068524c7db08b4fd76af6e82b4c23b1a6219fc98f77a4299b03ea7895ec93f0f927ad07f384759733932fe53af5d133e2c"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "eiktJyw1"
|
|
||||||
version = "vNXXgNzK"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "EMI Addon: Extra Mod Integrations"
|
|
||||||
filename = "extra-mod-integrations-all-neoforge-1.0.2+1.21.1.jar"
|
|
||||||
side = "client"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/bpRHnWUb/versions/tNXLlCY0/extra-mod-integrations-all-neoforge-1.0.2%2B1.21.1.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "6f41a039a208852b2fa3e62347779099f654ff43e5aac93ad71ef3b1129307494492a188411638a75191c5f940e1e84c9772ed4717f877611e0f37aa9aee218b"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "bpRHnWUb"
|
|
||||||
version = "tNXLlCY0"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "ExtraStorage"
|
|
||||||
filename = "ExtraStorage-1.21.1-5.0.3.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/T34cBZKl/versions/TIwPVmKn/ExtraStorage-1.21.1-5.0.3.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "524445461a20a5ed52598b84b543c0a75c5a7c7678b955fc6327ad3de0fdbd89a813162ae4be6588806d776c5414856d9c161a92be297f91c23738c143284b25"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "T34cBZKl"
|
|
||||||
version = "TIwPVmKn"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Farmer's Delight"
|
|
||||||
filename = "FarmersDelight-1.21.1-1.2.8.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/R2OftAxM/versions/yCkges3O/FarmersDelight-1.21.1-1.2.8.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "ca2d5a21ecd14a25374b26570f1c63c54623b55603108ffe4f83f82b79ff8cf08b35f444078141ec4196dad669699e1beeea41d8d0c34c0602941247b93f4a52"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "R2OftAxM"
|
|
||||||
version = "yCkges3O"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Forgified Fabric API"
|
|
||||||
filename = "forgified-fabric-api-0.115.6+2.1.1+1.21.1.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/Aqlf1Shp/versions/vQbH2z4u/forgified-fabric-api-0.115.6%2B2.1.1%2B1.21.1.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "f3709a29e3289f550f7ffb5a7c2b83d0952321ad3645ccb15eba3c2db8282da491e146d29aac0f6af8a17c2edaa499f5aa9816b471b35e7093abd9dc1eebb209"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "Aqlf1Shp"
|
|
||||||
version = "vQbH2z4u"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Friends&Foes - Beekeeper Hut (Forge/NeoForge)"
|
|
||||||
filename = "beekeeperhut-neoforge-3.0.1+mc1.21.1.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/K62sN7Sd/versions/iXGvdERT/beekeeperhut-neoforge-3.0.1%2Bmc1.21.1.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "c963b122a84e3e10f97e546ed96e2a52ac4dd10f48efc443d3aa1f944c14e785ba331fd7788019b0a59e177b1e62f16e65480e6e05687ca3cddb2423419bb4f2"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "K62sN7Sd"
|
|
||||||
version = "iXGvdERT"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Friends&Foes - Flowery Mooblooms (Forge/NeoForge)"
|
|
||||||
filename = "flowerymooblooms-neoforge-3.0.1+mc1.21.1.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/wYtDgIUZ/versions/qweMeTSH/flowerymooblooms-neoforge-3.0.1%2Bmc1.21.1.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "27fe08f93a2276fa4dd49d395ebc2013c343922d4c5cca45db81997489588afcc12bee384128ad97bda5bc5bc917a0001040b316def31c5b20da1f8b0208147c"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "wYtDgIUZ"
|
|
||||||
version = "qweMeTSH"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Friends&Foes (Forge/NeoForge)"
|
|
||||||
filename = "friendsandfoes-neoforge-4.0.7+mc1.21.1.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/BOCJKD49/versions/Jyj699Gz/friendsandfoes-neoforge-4.0.7%2Bmc1.21.1.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "bc78aa1f59551f4dfa42a968c949456f2fb4b20508b4bb7bc64dcc3b99b18fa850523f922eaabcdd02c3c0df3eb60beaee2cd2f07616032efca72a4cab4348f7"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "BOCJKD49"
|
|
||||||
version = "Jyj699Gz"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Fruits Delight"
|
|
||||||
filename = "fruitsdelight-1.2.8.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/g6sbyCTu/versions/ucAv4AKT/fruitsdelight-1.2.8.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "d503cf5270e0c774848c38250ac0d6c72dfd4a06b42add4f417fdff4ec59abe088ea24ae8061d8f260417392a573382aa93e3339c485184da64bb22c5f5d2b47"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "g6sbyCTu"
|
|
||||||
version = "ucAv4AKT"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Fzzy Config"
|
|
||||||
filename = "fzzy_config-0.7.1+1.21+neoforge.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/hYykXjDp/versions/wFIc6GXf/fzzy_config-0.7.1%2B1.21%2Bneoforge.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "8f911352f36bb7bbe293daa292fd44a3baf5510e02363a31c8614e32276d6075b082828c91bfca36f216955d343932da8c879da0184bc9c9b9f14b6f604abefd"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "hYykXjDp"
|
|
||||||
version = "wFIc6GXf"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Geckolib"
|
|
||||||
filename = "geckolib-neoforge-1.21.1-4.7.6.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/8BmcQJ2H/versions/DTo3uxPN/geckolib-neoforge-1.21.1-4.7.6.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "bb493b082e3a871d0b5df3f9eaee08d47d931a38daa37a9debf6d3e7bfdcc490dc98008f631c2282ea405c383c4b05afdb19a898e4419ed7616e4128fe5460d0"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "8BmcQJ2H"
|
|
||||||
version = "DTo3uxPN"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Hardcore Revival"
|
|
||||||
filename = "hardcorerevival-neoforge-1.21.1-21.1.8.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/HqKoXaXz/versions/5B4eETFU/hardcorerevival-neoforge-1.21.1-21.1.8.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "2fc42170c5f4c4b0b487ba468c690655424969259903f64e16b3a601b32a06ea3996c424ad9546aadb4a6ef8e508bbc39118ccfc1ca216f063bf0e1b677b1025"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "HqKoXaXz"
|
|
||||||
version = "5B4eETFU"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Immersive Engineering"
|
|
||||||
filename = "ImmersiveEngineering-1.21.1-12.4.2-194.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/tIm2nV03/versions/uNRARSH2/ImmersiveEngineering-1.21.1-12.4.2-194.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "862523e84747a8b7eaa65f9b3c337fa832ef9efd0545c27f68e350e01f482c7a1242d0e4bdc2caff3d7eb033508b43a353fcd7150c9b544d0c05765ca2a551b3"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "tIm2nV03"
|
|
||||||
version = "uNRARSH2"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "The Immersive Music Mod"
|
|
||||||
filename = "timm-1.0.6-neoforge-1.21-1.21.1.jar"
|
|
||||||
side = "client"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/EgBj3Bnf/versions/aOkaNqxp/timm-1.0.6-neoforge-1.21-1.21.1.jar"
|
|
||||||
hash-format = "sha512"
|
|
||||||
hash = "37750151e497e33162f09a736b944549b03f4a8b05e8a2e12f52bd5ee54ff0da896f756741050773e71f5172b605278ea706d8119116c0247ece51e2f2c026f1"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "EgBj3Bnf"
|
|
||||||
version = "aOkaNqxp"
|
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Inventory HUD+"
|
|
||||||
filename = "inventoryhud.neoforged.1.21.1-3.4.28.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
hash-format = "sha1"
|
|
||||||
hash = "1bfd8bbb862a8cf55fd83947ded2b0eeda8c6bc8"
|
|
||||||
mode = "metadata:curseforge"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.curseforge]
|
|
||||||
file-id = 6369797
|
|
||||||
project-id = 357540
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue