diff --git a/configuration/default.nix b/configuration/default.nix index 924474a..3c572e0 100644 --- a/configuration/default.nix +++ b/configuration/default.nix @@ -13,6 +13,7 @@ "${modulesPath}/profiles/minimal.nix" (import ../modules) + ./services/auth ./services/backups.nix ./services/battery-manager.nix ./services/conduit @@ -100,6 +101,7 @@ services = { openssh = { enable = true; + allowSFTP = false; ports = [ 2222 ]; startWhenNeeded = true; diff --git a/configuration/hardware-specific/hetzner/default.nix b/configuration/hardware-specific/hetzner/default.nix index 4d0408c..3e35eb0 100644 --- a/configuration/hardware-specific/hetzner/default.nix +++ b/configuration/hardware-specific/hetzner/default.nix @@ -11,10 +11,7 @@ boot.kernelParams = [ "nosgx" ]; networking.hostName = "hetzner-1"; - services = { - btrfs.autoScrub.enable = true; - nginx.domain = "tlater.net"; - }; + services.nginx.domain = "tlater.net"; systemd.network.networks."eth0" = { matchConfig.MACAddress = "90:1b:0e:c1:8c:62"; diff --git a/configuration/nginx.nix b/configuration/nginx.nix index 935b5ac..3abef7f 100644 --- a/configuration/nginx.nix +++ b/configuration/nginx.nix @@ -20,21 +20,22 @@ ''; }; - logrotate.settings = { - # Override the default, just keep fewer logs - nginx.rotate = 6; - } - // lib.mapAttrs' ( - virtualHost: _: - lib.nameValuePair "/var/log/nginx/${virtualHost}/access.log" { - frequency = "daily"; - rotate = 2; - compress = true; - delaycompress = true; - su = "${config.services.nginx.user} ${config.services.nginx.group}"; - postrotate = "[ ! -f /var/run/nginx/nginx.pid ] || kill -USR1 `cat /var/run/nginx/nginx.pid`"; + logrotate.settings = + { + # Override the default, just keep fewer logs + nginx.rotate = 6; } - ) config.services.nginx.virtualHosts; + // lib.mapAttrs' ( + virtualHost: _: + lib.nameValuePair "/var/log/nginx/${virtualHost}/access.log" { + frequency = "daily"; + rotate = 2; + compress = true; + delaycompress = true; + su = "${config.services.nginx.user} ${config.services.nginx.group}"; + postrotate = "[ ! -f /var/run/nginx/nginx.pid ] || kill -USR1 `cat /var/run/nginx/nginx.pid`"; + } + ) config.services.nginx.virtualHosts; backups.acme = { user = "acme"; diff --git a/configuration/services/auth/authelia.nix b/configuration/services/auth/authelia.nix new file mode 100644 index 0000000..e9043c0 --- /dev/null +++ b/configuration/services/auth/authelia.nix @@ -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; + }; + }; +} diff --git a/configuration/services/auth/default.nix b/configuration/services/auth/default.nix new file mode 100644 index 0000000..bbfa1b6 --- /dev/null +++ b/configuration/services/auth/default.nix @@ -0,0 +1,6 @@ +{ + imports = [ + ./authelia.nix + ./lldap.nix + ]; +} diff --git a/configuration/services/auth/lldap-provisioning.nu b/configuration/services/auth/lldap-provisioning.nu new file mode 100644 index 0000000..a2f93f0 --- /dev/null +++ b/configuration/services/auth/lldap-provisioning.nu @@ -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] { + 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 + } +} diff --git a/configuration/services/auth/lldap.nix b/configuration/services/auth/lldap.nix new file mode 100644 index 0000000..250a395 --- /dev/null +++ b/configuration/services/auth/lldap.nix @@ -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"; + }; +} diff --git a/configuration/services/backups.nix b/configuration/services/backups.nix index 688f5f9..baa61e3 100644 --- a/configuration/services/backups.nix +++ b/configuration/services/backups.nix @@ -140,121 +140,123 @@ in }; config = lib.mkIf (config.services.backups != { }) { - systemd.services = { - restic-prune = { - # Doesn't hurt to finish the ongoing prune - restartIfChanged = false; + systemd.services = + { + restic-prune = { + # Doesn't hurt to finish the ongoing prune + restartIfChanged = false; - environment = resticEnv; + environment = resticEnv; - path = with pkgs; [ - openssh - rclone - restic - ]; - - script = '' - # TODO(tlater): In an append-only setup, we should be - # careful with this; an attacker could delete backups by - # simply appending ad infinitum: - # https://restic.readthedocs.io/en/stable/060_forget.html#security-considerations-in-append-only-mode - restic forget --keep-last 3 --prune - restic check - ''; - - serviceConfig = { - DynamicUser = true; - Group = "backup"; - - CacheDirectory = "restic-prune"; - CacheDirectoryMode = "0700"; - }; - }; - } - // lib.mapAttrs' ( - name: backup: - lib.nameValuePair "backup-${name}" { - # Don't want to restart mid-backup - restartIfChanged = false; - - environment = resticEnv // { - RESTIC_CACHE_DIR = "%C/backup-${name}"; - }; - - path = with pkgs; [ - coreutils - openssh - rclone - restic - ]; - - # TODO(tlater): If I ever add more than one repo, service - # shutdown/restarting will potentially break if multiple - # backups for the same service overlap. A more clever - # sentinel file with reference counts would probably solve - # this. - serviceConfig = { - User = backup.user; - Group = "backup"; - RuntimeDirectory = "backup-${name}"; - CacheDirectory = "backup-${name}"; - CacheDirectoryMode = "0700"; - PrivateTmp = true; - - ExecStart = [ - (lib.concatStringsSep " " ( - [ - "${pkgs.restic}/bin/restic" - "backup" - "--tag" - name - ] - ++ backup.paths - )) + path = with pkgs; [ + openssh + rclone + restic ]; - ExecStartPre = - map (service: "+${mkShutdownScript service}") backup.pauseServices - ++ singleton ( - writeScript "backup-${name}-repo-init" [ ] '' - restic snapshots || restic init - '' - ) - ++ optional (backup.preparation.text != null) ( - writeScript "backup-${name}-prepare" backup.preparation.packages backup.preparation.text - ); + script = '' + # TODO(tlater): In an append-only setup, we should be + # careful with this; an attacker could delete backups by + # simply appending ad infinitum: + # https://restic.readthedocs.io/en/stable/060_forget.html#security-considerations-in-append-only-mode + restic forget --keep-last 3 --prune + restic check + ''; - # TODO(tlater): Add repo pruning/checking - ExecStopPost = - map (service: "+${mkRestartScript service}") backup.pauseServices - ++ optional (backup.cleanup.text != null) ( - writeScript "backup-${name}-cleanup" backup.cleanup.packages backup.cleanup.text - ); + serviceConfig = { + DynamicUser = true; + Group = "backup"; + + CacheDirectory = "restic-prune"; + CacheDirectoryMode = "0700"; + }; }; } - ) config.services.backups; + // lib.mapAttrs' ( + name: backup: + lib.nameValuePair "backup-${name}" { + # Don't want to restart mid-backup + restartIfChanged = false; - systemd.timers = { - restic-prune = { - wantedBy = [ "timers.target" ]; - timerConfig.OnCalendar = "Thursday 03:00:00 UTC"; - # Don't make this persistent, in case the server was offline - # for a while. This job cannot run at the same time as any - # of the backup jobs. - }; - } - // lib.mapAttrs' ( - name: _: - lib.nameValuePair "backup-${name}" { - wantedBy = [ "timers.target" ]; - timerConfig = { - OnCalendar = "Wednesday 02:30:00 UTC"; - RandomizedDelaySec = "1h"; - FixedRandomDelay = true; - Persistent = true; + environment = resticEnv // { + RESTIC_CACHE_DIR = "%C/backup-${name}"; + }; + + path = with pkgs; [ + coreutils + openssh + rclone + restic + ]; + + # TODO(tlater): If I ever add more than one repo, service + # shutdown/restarting will potentially break if multiple + # backups for the same service overlap. A more clever + # sentinel file with reference counts would probably solve + # this. + serviceConfig = { + User = backup.user; + Group = "backup"; + RuntimeDirectory = "backup-${name}"; + CacheDirectory = "backup-${name}"; + CacheDirectoryMode = "0700"; + PrivateTmp = true; + + ExecStart = [ + (lib.concatStringsSep " " ( + [ + "${pkgs.restic}/bin/restic" + "backup" + "--tag" + name + ] + ++ backup.paths + )) + ]; + + ExecStartPre = + map (service: "+${mkShutdownScript service}") backup.pauseServices + ++ singleton ( + writeScript "backup-${name}-repo-init" [ ] '' + restic snapshots || restic init + '' + ) + ++ optional (backup.preparation.text != null) ( + writeScript "backup-${name}-prepare" backup.preparation.packages backup.preparation.text + ); + + # TODO(tlater): Add repo pruning/checking + ExecStopPost = + map (service: "+${mkRestartScript service}") backup.pauseServices + ++ optional (backup.cleanup.text != null) ( + writeScript "backup-${name}-cleanup" backup.cleanup.packages backup.cleanup.text + ); + }; + } + ) config.services.backups; + + systemd.timers = + { + restic-prune = { + wantedBy = [ "timers.target" ]; + timerConfig.OnCalendar = "Thursday 03:00:00 UTC"; + # Don't make this persistent, in case the server was offline + # for a while. This job cannot run at the same time as any + # of the backup jobs. }; } - ) config.services.backups; + // lib.mapAttrs' ( + name: _: + lib.nameValuePair "backup-${name}" { + wantedBy = [ "timers.target" ]; + timerConfig = { + OnCalendar = "Wednesday 02:30:00 UTC"; + RandomizedDelaySec = "1h"; + FixedRandomDelay = true; + Persistent = true; + }; + } + ) config.services.backups; users = { # This user is only used to own the ssh key, because apparently diff --git a/configuration/services/crowdsec.nix b/configuration/services/crowdsec.nix index 174115b..b736047 100644 --- a/configuration/services/crowdsec.nix +++ b/configuration/services/crowdsec.nix @@ -30,12 +30,11 @@ { labels.type = "nginx"; - filenames = [ - "/var/log/nginx/*.log" - ] - ++ lib.mapAttrsToList ( - vHost: _: "/var/log/nginx/${vHost}/access.log" - ) config.services.nginx.virtualHosts; + filenames = + [ "/var/log/nginx/*.log" ] + ++ lib.mapAttrsToList ( + vHost: _: "/var/log/nginx/${vHost}/access.log" + ) config.services.nginx.virtualHosts; } ]; diff --git a/configuration/services/metrics/options.nix b/configuration/services/metrics/options.nix index b24ef7a..e1b0761 100644 --- a/configuration/services/metrics/options.nix +++ b/configuration/services/metrics/options.nix @@ -154,7 +154,8 @@ in lib.recursiveUpdate { inherit (scrape) job_name; static_configs = - scrape.static_configs ++ lib.optional (scrape.targets != [ ]) { inherit (scrape) targets; }; + scrape.static_configs + ++ lib.optional (scrape.targets != [ ]) { inherit (scrape) targets; }; } scrape.extraSettings ) config.services.victoriametrics.scrapeConfigs; }; diff --git a/configuration/services/metrics/victoriametrics.nix b/configuration/services/metrics/victoriametrics.nix index f37b8b0..e362c49 100644 --- a/configuration/services/metrics/victoriametrics.nix +++ b/configuration/services/metrics/victoriametrics.nix @@ -9,6 +9,10 @@ in extraOptions = [ "-storage.minFreeDiskSpaceBytes=5GB" ]; scrapeConfigs = { + authelia = { + targets = [ "127.0.0.1:9959" ]; + }; + forgejo = { targets = [ "127.0.0.1:${toString config.services.forgejo.settings.server.HTTP_PORT}" ]; extraSettings.authorization.credentials_file = config.sops.secrets."forgejo/metrics-token".path; diff --git a/configuration/services/minecraft.nix b/configuration/services/minecraft.nix index 5e5a2fe..0477f44 100644 --- a/configuration/services/minecraft.nix +++ b/configuration/services/minecraft.nix @@ -4,9 +4,6 @@ config, ... }: -let - java = pkgs.jdk21_headless; -in { services.minecraft-server = { enable = true; @@ -42,7 +39,7 @@ in package = pkgs.writeShellApplication { name = "minecraft-server"; - runtimeInputs = [ java ]; + runtimeInputs = with pkgs; [ jdk17_headless ]; text = '' exec /var/lib/minecraft/run.sh $@ @@ -51,19 +48,16 @@ in }; 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 # to be up after = [ "nginx.service" ]; - # Don't auto-start the server - wantedBy = lib.mkForce [ ]; - serviceConfig = { # Use packwiz to install mods 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 # little `run.sh` script @@ -77,13 +71,6 @@ in group = "minecraft"; mode = "0775"; }; - - "/srv/minecraft/cobblemon-pack"."L+" = { - user = "nginx"; - group = "minecraft"; - mode = "0775"; - argument = "${../../pkgs/minecraftmon}"; - }; }; services.nginx.virtualHosts."minecraft.${config.services.nginx.domain}" = { diff --git a/configuration/services/postgres.nix b/configuration/services/postgres.nix index 85a6843..9ac9ff3 100644 --- a/configuration/services/postgres.nix +++ b/configuration/services/postgres.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: +{ config, pkgs, ... }: { services.postgresql = { package = pkgs.postgresql_14; @@ -17,10 +17,18 @@ # that operation needs to be performed manually on the system as # well. ensureUsers = [ + { + name = config.services.authelia.instances.tlaternet.user; + ensureDBOwnership = true; + } { name = "grafana"; ensureDBOwnership = true; } + { + name = "lldap"; + ensureDBOwnership = true; + } { name = "nextcloud"; ensureDBOwnership = true; @@ -28,7 +36,9 @@ ]; ensureDatabases = [ + config.services.authelia.instances.tlaternet.user "grafana" + "lldap" "nextcloud" ]; }; diff --git a/configuration/services/wireguard.nix b/configuration/services/wireguard.nix index a6b7763..bbab22e 100644 --- a/configuration/services/wireguard.nix +++ b/configuration/services/wireguard.nix @@ -27,7 +27,7 @@ # yui { AllowedIPs = [ "10.45.249.2/32" ]; - PublicKey = "WbNuxp7tTWTVve/nyiwC1stfaJS0wORvBxiK9IFTpio="; + PublicKey = "5mlnqEVJWks5OqgeFA2bLIrvST9TlCE81Btl+j4myz0="; } ]; }; diff --git a/configuration/sops.nix b/configuration/sops.nix index 0337438..cb16026 100644 --- a/configuration/sops.nix +++ b/configuration/sops.nix @@ -3,6 +3,24 @@ defaultSopsFile = ../keys/production.yaml; 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/password" = { }; @@ -28,6 +46,10 @@ "heisenbridge/as-token" = { }; "heisenbridge/hs-token" = { }; + # lldap + "lldap/admin-password" = { }; + "lldap/key" = { }; + # Matrix-hookshot "matrix-hookshot/as-token" = { }; "matrix-hookshot/hs-token" = { }; diff --git a/flake.lock b/flake.lock index e791aa9..885b579 100644 --- a/flake.lock +++ b/flake.lock @@ -208,11 +208,11 @@ "utils": "utils" }, "locked": { - "lastModified": 1749105467, - "narHash": "sha256-hXh76y/wDl15almBcqvjryB50B0BaiXJKk20f314RoE=", + "lastModified": 1727447169, + "narHash": "sha256-3KyjMPUKHkiWhwR91J1YchF6zb6gvckCAY1jOE+ne0U=", "owner": "serokell", "repo": "deploy-rs", - "rev": "6bc76b872374845ba9d645a2f012b764fecd765f", + "rev": "aa07eb05537d4cd025e2310397a6adcedfe72c76", "type": "github" }, "original": { @@ -300,11 +300,11 @@ ] }, "locked": { - "lastModified": 1754971456, - "narHash": "sha256-p04ZnIBGzerSyiY2dNGmookCldhldWAu03y0s3P8CB0=", + "lastModified": 1747742835, + "narHash": "sha256-kYL4GCwwznsypvsnA20oyvW8zB/Dvn6K5G/tgMjVMT4=", "owner": "nix-community", "repo": "disko", - "rev": "8246829f2e675a46919718f9a64b71afe3bfb22d", + "rev": "df522e787fdffc4f32ed3e1fca9ed0968a384d62", "type": "github" }, "original": { @@ -358,11 +358,11 @@ "flake-compat": { "flake": false, "locked": { - "lastModified": 1733328505, - "narHash": "sha256-NeCCThCEP3eCl2l/+27kNNK7QrwZB1IJCrXfrbv5oqU=", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", "owner": "edolstra", "repo": "flake-compat", - "rev": "ff81ac966bb2cae68946d5ed5fc4994f96d0ffec", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { @@ -595,11 +595,11 @@ ] }, "locked": { - "lastModified": 1752975459, - "narHash": "sha256-nOr9FfazId66oneIeeH6e5eALWcu0/zPn19DqbeFGME=", + "lastModified": 1746877938, + "narHash": "sha256-N9J96pSPg4vbozV+ZZ++dwLnMIf2Le6ONNMO0kZCj1M=", "owner": "reckenrode", "repo": "nix-foundryvtt", - "rev": "924f814523ea8c8792178ec5171ea055abaae0e4", + "rev": "f1b401831d796dd94cf5a11b65fd169a199d4ff0", "type": "github" }, "original": { @@ -730,11 +730,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1743014863, - "narHash": "sha256-jAIUqsiN2r3hCuHji80U7NNEafpIMBXiwKlSrjWMlpg=", + "lastModified": 1702272962, + "narHash": "sha256-D+zHwkwPc6oYQ4G3A1HuadopqRwUY/JkMwHz1YF7j4Q=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "bd3bac8bfb542dbde7ffffb6987a1a1f9d41699f", + "rev": "e97b3e4186bcadf0ef1b6be22b8558eab1cdeb5d", "type": "github" }, "original": { @@ -746,11 +746,11 @@ }, "nixpkgs_2": { "locked": { - "lastModified": 1755390894, - "narHash": "sha256-EhQt25BpE5ykyWEIABX66CYfU6bQZJ+pko+cBdDnJlo=", + "lastModified": 1748085680, + "narHash": "sha256-XG90Q/040NiV70gAVvoYbXg1lULbiwIzfkWmwSINyGQ=", "owner": "nixos", "repo": "nixpkgs", - "rev": "94c847a9f32b7abe9fb6a525de46ce592e7d4c73", + "rev": "4e6eeca5ed45465087274fc9dc6bc2011254a0f3", "type": "github" }, "original": { @@ -1059,11 +1059,11 @@ ] }, "locked": { - "lastModified": 1748144928, - "narHash": "sha256-OPdi6AjrWWwZlukNwDHDWAf1CCFkHsf8JbA3rJoibXM=", + "lastModified": 1740082109, + "narHash": "sha256-WdRNkwsIotFOSymee/yQyH46RmYtuxd1FENhvGL4KRc=", "ref": "refs/heads/main", - "rev": "429036aa8630d2325f8a9f067cc041d628279a8e", - "revCount": 24, + "rev": "a1b48cf2ba194054e2d8816c94a84cebc4fb5de0", + "revCount": 23, "type": "git", "url": "ssh://git@github.com/sonnenshift/battery-manager" }, @@ -1079,11 +1079,11 @@ ] }, "locked": { - "lastModified": 1754988908, - "narHash": "sha256-t+voe2961vCgrzPFtZxha0/kmFSHFobzF00sT8p9h0U=", + "lastModified": 1747603214, + "narHash": "sha256-lAblXm0VwifYCJ/ILPXJwlz0qNY07DDYdLD+9H+Wc8o=", "owner": "Mic92", "repo": "sops-nix", - "rev": "3223c7a92724b5d804e9988c6b447a0d09017d48", + "rev": "8d215e1c981be3aa37e47aeabd4e61bb069548fd", "type": "github" }, "original": { @@ -1209,11 +1209,11 @@ "systems": "systems" }, "locked": { - "lastModified": 1731533236, - "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", + "lastModified": 1701680307, + "narHash": "sha256-kAuep2h5ajznlPMD9rnQyffWG8EM/C73lejGofXvdM8=", "owner": "numtide", "repo": "flake-utils", - "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", + "rev": "4022d587cbbfd70fe950c1e2083a02621806a725", "type": "github" }, "original": { diff --git a/flake.nix b/flake.nix index b5228c3..da8455f 100644 --- a/flake.nix +++ b/flake.nix @@ -141,22 +141,27 @@ ########################### # Development environment # ########################### - devShells.${system} = { - default = nixpkgs.legacyPackages.${system}.mkShell { - sopsPGPKeyDirs = [ - "./keys/hosts/" - "./keys/users/" - ]; - nativeBuildInputs = [ sops-nix.packages.${system}.sops-import-keys-hook ]; + devShells.${system}.default = nixpkgs.legacyPackages.${system}.mkShell { + sopsPGPKeyDirs = [ + "./keys/hosts/" + "./keys/users/" + ]; + nativeBuildInputs = [ sops-nix.packages.${system}.sops-import-keys-hook ]; - packages = with pkgs; [ - sops-nix.packages.${system}.sops-init-gpg-key - deploy-rs.packages.${system}.default - nixpkgs-fmt - ]; - }; + packages = with pkgs; [ + sops-nix.packages.${system}.sops-init-gpg-key + deploy-rs.packages.${system}.default + + nixpkgs-fmt + + cargo + clippy + rustc + rustfmt + rust-analyzer + pkg-config + openssl + ]; }; - - minecraft = nixpkgs.legacyPackages.${system}.mkShell { packages = [ pkgs.packwiz ]; }; }; } diff --git a/keys/staging.yaml b/keys/staging.yaml index 876d60e..8ba5f45 100644 --- a/keys/staging.yaml +++ b/keys/staging.yaml @@ -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: 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] @@ -9,6 +14,9 @@ forgejo: grafana: 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] +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: tlater: ENC[AES256_GCM,data:91kDcO4hpng=,iv:ayuILRmRru4ZxTCur9H2xHuLjkDzwPdS/4lEog/tesU=,tag:qYhJxnNDcCwUM7xe7Tlcjw==,type:str] steam: @@ -32,13 +40,8 @@ turn: #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] sops: - kms: [] - gcp_kms: [] - 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] + lastmodified: "2025-05-26T19:48:08Z" + mac: ENC[AES256_GCM,data:dIuIJlkz6yUKt1MrOgwQTYm8DzwldN4o2E0B89p8c0WeCxgHwWVMtIHt8QsrIet9X7aHDx97/S67XzYEGSXI/9Btc+GCEFNcoVsgZzXy+d7r3io2gQxNrQ6yJwJvStW+ZeWPujg5nJ6NNfhcweLFdquwNwNJ4DC1sGvCl5/m/QY=,iv:n5f8urvZVLfIp46nysSJh3ngx+H8qxLuycmDZVYDOCk=,tag:5ccJtPdIRZmFXDVO1V6y3w==,type:str] pgp: - created_at: "2025-01-21T17:55:30Z" enc: |- @@ -76,4 +79,4 @@ sops: -----END PGP MESSAGE----- fp: 2f5caa73e7ceea4fcc8d2881fde587e6737d2dbc unencrypted_suffix: _unencrypted - version: 3.9.2 + version: 3.10.2 diff --git a/pkgs/crowdsec/_sources/generated.json b/pkgs/crowdsec/_sources/generated.json index fd61141..f3c8f01 100644 --- a/pkgs/crowdsec/_sources/generated.json +++ b/pkgs/crowdsec/_sources/generated.json @@ -13,16 +13,15 @@ "name": null, "owner": "crowdsecurity", "repo": "cs-firewall-bouncer", - "rev": "v0.0.34", - "sha256": "sha256-lDO9pwPkbI+FDTdXBv03c0p8wbkRUiIDNl1ip3AZo2g=", - "sparseCheckout": [], + "rev": "v0.0.31", + "sha256": "sha256-59MWll8v00CF4WA53gjHZSTFc8hpYaHENg9O7LgTCrA=", "type": "github" }, - "version": "v0.0.34" + "version": "v0.0.31" }, "crowdsec-hub": { "cargoLocks": null, - "date": "2025-08-17", + "date": "2025-05-17", "extract": null, "name": "crowdsec-hub", "passthru": null, @@ -34,11 +33,10 @@ "name": null, "owner": "crowdsecurity", "repo": "hub", - "rev": "fc59f78180f3edfce76df3e77b001c454f567d3d", - "sha256": "sha256-Ejx3ta05SMvV/Dj7wy2iF9QYbGoRvxPB3+QuCIoTX4Q=", - "sparseCheckout": [], + "rev": "850614b9fcd4298f559b422c5ac685a69aa2e5ff", + "sha256": "sha256-96MMwFN5KongQA3YJVSuk7Kanbr1gR94CCyiflmez2k=", "type": "github" }, - "version": "fc59f78180f3edfce76df3e77b001c454f567d3d" + "version": "850614b9fcd4298f559b422c5ac685a69aa2e5ff" } } \ No newline at end of file diff --git a/pkgs/crowdsec/_sources/generated.nix b/pkgs/crowdsec/_sources/generated.nix index b5efc4e..19a7f5a 100644 --- a/pkgs/crowdsec/_sources/generated.nix +++ b/pkgs/crowdsec/_sources/generated.nix @@ -3,25 +3,25 @@ { crowdsec-firewall-bouncer = { pname = "crowdsec-firewall-bouncer"; - version = "v0.0.34"; + version = "v0.0.31"; src = fetchFromGitHub { owner = "crowdsecurity"; repo = "cs-firewall-bouncer"; - rev = "v0.0.34"; + rev = "v0.0.31"; fetchSubmodules = false; - sha256 = "sha256-lDO9pwPkbI+FDTdXBv03c0p8wbkRUiIDNl1ip3AZo2g="; + sha256 = "sha256-59MWll8v00CF4WA53gjHZSTFc8hpYaHENg9O7LgTCrA="; }; }; crowdsec-hub = { pname = "crowdsec-hub"; - version = "fc59f78180f3edfce76df3e77b001c454f567d3d"; + version = "850614b9fcd4298f559b422c5ac685a69aa2e5ff"; src = fetchFromGitHub { owner = "crowdsecurity"; repo = "hub"; - rev = "fc59f78180f3edfce76df3e77b001c454f567d3d"; + rev = "850614b9fcd4298f559b422c5ac685a69aa2e5ff"; fetchSubmodules = false; - sha256 = "sha256-Ejx3ta05SMvV/Dj7wy2iF9QYbGoRvxPB3+QuCIoTX4Q="; + sha256 = "sha256-96MMwFN5KongQA3YJVSuk7Kanbr1gR94CCyiflmez2k="; }; - date = "2025-08-17"; + date = "2025-05-17"; }; } diff --git a/pkgs/crowdsec/firewall-bouncer.nix b/pkgs/crowdsec/firewall-bouncer.nix index cfb062a..86370c4 100644 --- a/pkgs/crowdsec/firewall-bouncer.nix +++ b/pkgs/crowdsec/firewall-bouncer.nix @@ -11,7 +11,7 @@ in buildGoModule { inherit (sources.crowdsec-firewall-bouncer) pname version src; - vendorHash = "sha256-SbpclloBgd9vffC0lBduGRqPOqmzQ0J91/KeDHCh0jo="; + vendorHash = "sha256-7Jxvg8UEjUxnIz1llvXyI2AefJ31OVdNzhWD/C8wU/Y="; postInstall = '' mkdir -p $out/lib/systemd/system diff --git a/pkgs/minecraftmon/.packwizignore b/pkgs/minecraftmon/.packwizignore deleted file mode 100644 index 87324bf..0000000 --- a/pkgs/minecraftmon/.packwizignore +++ /dev/null @@ -1,3 +0,0 @@ -.direnv -.envrc -pack.zip diff --git a/pkgs/minecraftmon/config/defaultoptions/extra/config/cataclysm.toml b/pkgs/minecraftmon/config/defaultoptions/extra/config/cataclysm.toml deleted file mode 100644 index 236b83d..0000000 --- a/pkgs/minecraftmon/config/defaultoptions/extra/config/cataclysm.toml +++ /dev/null @@ -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 diff --git a/pkgs/minecraftmon/config/defaultoptions/extra/config/inventoryhud-client.toml b/pkgs/minecraftmon/config/defaultoptions/extra/config/inventoryhud-client.toml deleted file mode 100644 index 6df7190..0000000 --- a/pkgs/minecraftmon/config/defaultoptions/extra/config/inventoryhud-client.toml +++ /dev/null @@ -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 diff --git a/pkgs/minecraftmon/config/defaultoptions/extra/config/iris.properties b/pkgs/minecraftmon/config/defaultoptions/extra/config/iris.properties deleted file mode 100644 index 94e5f28..0000000 --- a/pkgs/minecraftmon/config/defaultoptions/extra/config/iris.properties +++ /dev/null @@ -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 diff --git a/pkgs/minecraftmon/config/defaultoptions/extra/config/sodium-extra-options.json b/pkgs/minecraftmon/config/defaultoptions/extra/config/sodium-extra-options.json deleted file mode 100644 index b18d359..0000000 --- a/pkgs/minecraftmon/config/defaultoptions/extra/config/sodium-extra-options.json +++ /dev/null @@ -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 - } -} \ No newline at end of file diff --git a/pkgs/minecraftmon/config/defaultoptions/extra/config/sodiumdynamiclights-client.toml b/pkgs/minecraftmon/config/defaultoptions/extra/config/sodiumdynamiclights-client.toml deleted file mode 100644 index 97a08c1..0000000 --- a/pkgs/minecraftmon/config/defaultoptions/extra/config/sodiumdynamiclights-client.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/config/defaultoptions/extra/config/sodiumextras-client.toml b/pkgs/minecraftmon/config/defaultoptions/extra/config/sodiumextras-client.toml deleted file mode 100644 index 7545ac7..0000000 --- a/pkgs/minecraftmon/config/defaultoptions/extra/config/sodiumextras-client.toml +++ /dev/null @@ -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 diff --git a/pkgs/minecraftmon/config/defaultoptions/keybindings.txt b/pkgs/minecraftmon/config/defaultoptions/keybindings.txt deleted file mode 100644 index ff62f54..0000000 --- a/pkgs/minecraftmon/config/defaultoptions/keybindings.txt +++ /dev/null @@ -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: diff --git a/pkgs/minecraftmon/config/defaultoptions/options.txt b/pkgs/minecraftmon/config/defaultoptions/options.txt deleted file mode 100644 index d82a4ef..0000000 --- a/pkgs/minecraftmon/config/defaultoptions/options.txt +++ /dev/null @@ -1 +0,0 @@ -guiScale:2 diff --git a/pkgs/minecraftmon/config/defaultoptions/servers.dat b/pkgs/minecraftmon/config/defaultoptions/servers.dat deleted file mode 100644 index a64aa24..0000000 Binary files a/pkgs/minecraftmon/config/defaultoptions/servers.dat and /dev/null differ diff --git a/pkgs/minecraftmon/index.toml b/pkgs/minecraftmon/index.toml deleted file mode 100644 index 9fd6f0c..0000000 --- a/pkgs/minecraftmon/index.toml +++ /dev/null @@ -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 = "c51f5bc71fff2b0df7420b1c3df9f68cadb2572f6d8df239734db83c186b6715" -metafile = true - -[[files]] -file = "mods/barbeques-delight-forge.pw.toml" -hash = "ae63e4f67427755b231839f860c21db3737d8aae799e7d2677e756271294238c" -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 = "98f1c04523e6d97b0d91a40614aff3d15a9e6e3c3107876e1584fdcfcb014d67" -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 = "5e0f65ac9e6e260e213f3d9a6657cafdd35f509965b09404a8eb9ab55c3ffbec" -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 = "6569836247170fbd7c8bc9397cf07961f8f67f7e73b404bfe479172da2f84279" -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 = "1f1c592232159b04b7009d2413eebb2b18b5a92f7d0168cd4dde2f446bf45653" -metafile = true - -[[files]] -file = "mods/fruits-delight.pw.toml" -hash = "70eaf1f619cfa0c05d2b74a3b74f3a8f28466e13feb23aaed538efcb85178a99" -metafile = true - -[[files]] -file = "mods/fzzy-config.pw.toml" -hash = "e00b467d81fc5f35bf7432bc3b5d371281b0719eeae4377854a5f8ca33968190" -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 = "e7d3f7e0472ba9a3ef946fa5defcb157e4126636e603c2306d4ad6065936d5e2" -metafile = true - -[[files]] -file = "mods/jei.pw.toml" -hash = "8d3e669a813af2e685efafeca797f95ad8a99c344078e72d2ce0ee1273369bd8" -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 = "b07bbd76636d50d623dc1c41d27ca42f5f7ba196e3e2a9c846add0ee10c26531" -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 = "28d546c3ea37927bd45975200aa74c1e8fb8bd82d2a29e611abe577389818702" -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 = "e91052ce0d9999e7a1a62ebbe9fe5f347a7cd0b0bfd3b4395ae33e5efa164773" -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 = "dedc0295cba84c8241eeaa078838f333631dd6c67d693b3a0b8dd93cdfdae33d" -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 = "b298b954e05956871a5f724569c226d97cc57059d8f587e5a768f3aa781de014" -metafile = true - -[[files]] -file = "mods/sophisticated-core.pw.toml" -hash = "02c8e010cf0edca6b868cbf16dcc6e70bddea0d6d5451b1ff7fcc10056972adc" -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 = "dc70a1f2d451deb0718c82d08bbdef00bb7b86fb4ecde86a2b63c87a27a6d7a0" -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 diff --git a/pkgs/minecraftmon/mods/aether-emissivity.pw.toml b/pkgs/minecraftmon/mods/aether-emissivity.pw.toml deleted file mode 100644 index 0c2008c..0000000 --- a/pkgs/minecraftmon/mods/aether-emissivity.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/aether-enhanced-extinguishing.pw.toml b/pkgs/minecraftmon/mods/aether-enhanced-extinguishing.pw.toml deleted file mode 100644 index d26ab56..0000000 --- a/pkgs/minecraftmon/mods/aether-enhanced-extinguishing.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/aether.pw.toml b/pkgs/minecraftmon/mods/aether.pw.toml deleted file mode 100644 index 8a2e36b..0000000 --- a/pkgs/minecraftmon/mods/aether.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/ambientsounds.pw.toml b/pkgs/minecraftmon/mods/ambientsounds.pw.toml deleted file mode 100644 index 4617300..0000000 --- a/pkgs/minecraftmon/mods/ambientsounds.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/appleskin.pw.toml b/pkgs/minecraftmon/mods/appleskin.pw.toml deleted file mode 100644 index 23f5126..0000000 --- a/pkgs/minecraftmon/mods/appleskin.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/architectury-api.pw.toml b/pkgs/minecraftmon/mods/architectury-api.pw.toml deleted file mode 100644 index 79469bb..0000000 --- a/pkgs/minecraftmon/mods/architectury-api.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/armourers-workshop.pw.toml b/pkgs/minecraftmon/mods/armourers-workshop.pw.toml deleted file mode 100644 index 3eef4dd..0000000 --- a/pkgs/minecraftmon/mods/armourers-workshop.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/attributefix.pw.toml b/pkgs/minecraftmon/mods/attributefix.pw.toml deleted file mode 100644 index 2e75df6..0000000 --- a/pkgs/minecraftmon/mods/attributefix.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/bad-wither-no-cookie.pw.toml b/pkgs/minecraftmon/mods/bad-wither-no-cookie.pw.toml deleted file mode 100644 index 1d1d265..0000000 --- a/pkgs/minecraftmon/mods/bad-wither-no-cookie.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/badoptimizations.pw.toml b/pkgs/minecraftmon/mods/badoptimizations.pw.toml deleted file mode 100644 index 4d677b1..0000000 --- a/pkgs/minecraftmon/mods/badoptimizations.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/balm.pw.toml b/pkgs/minecraftmon/mods/balm.pw.toml deleted file mode 100644 index de7a64c..0000000 --- a/pkgs/minecraftmon/mods/balm.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Balm" -filename = "balm-neoforge-1.21.1-21.0.49.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/MBAkmtvl/versions/EBGKvOX4/balm-neoforge-1.21.1-21.0.49.jar" -hash-format = "sha512" -hash = "d2b24857515d035b971ec2617d89b490c750bf0763f42c0eb2bc2b3172abc52dd16309bc460a55e4c57023843c5027b91913dcefcddf72cce17393b18537cf5c" - -[update] -[update.modrinth] -mod-id = "MBAkmtvl" -version = "EBGKvOX4" diff --git a/pkgs/minecraftmon/mods/barbeques-delight-forge.pw.toml b/pkgs/minecraftmon/mods/barbeques-delight-forge.pw.toml deleted file mode 100644 index 71ff038..0000000 --- a/pkgs/minecraftmon/mods/barbeques-delight-forge.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Barbeque's Delight [Forge/NeoForge]" -filename = "barbequesdelight-1.2.2.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/rtu7uERF/versions/eS5ZBlEc/barbequesdelight-1.2.2.jar" -hash-format = "sha512" -hash = "5d0dfcf4892526043b0098ffff57beed2a21f06b7705ee95c470ec41f7f74bdde9111838675af2b51d4531d54cda54378fdb3fe654aef87ec705478555e13171" - -[update] -[update.modrinth] -mod-id = "rtu7uERF" -version = "eS5ZBlEc" diff --git a/pkgs/minecraftmon/mods/berry-good.pw.toml b/pkgs/minecraftmon/mods/berry-good.pw.toml deleted file mode 100644 index 0ba2cd4..0000000 --- a/pkgs/minecraftmon/mods/berry-good.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/better-advancements.pw.toml b/pkgs/minecraftmon/mods/better-advancements.pw.toml deleted file mode 100644 index 97b5649..0000000 --- a/pkgs/minecraftmon/mods/better-advancements.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/better-animations-collection.pw.toml b/pkgs/minecraftmon/mods/better-animations-collection.pw.toml deleted file mode 100644 index 85c025b..0000000 --- a/pkgs/minecraftmon/mods/better-animations-collection.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/better-third-person.pw.toml b/pkgs/minecraftmon/mods/better-third-person.pw.toml deleted file mode 100644 index 5d12eb6..0000000 --- a/pkgs/minecraftmon/mods/better-third-person.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/betterf3.pw.toml b/pkgs/minecraftmon/mods/betterf3.pw.toml deleted file mode 100644 index d0f1391..0000000 --- a/pkgs/minecraftmon/mods/betterf3.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/blueprint.pw.toml b/pkgs/minecraftmon/mods/blueprint.pw.toml deleted file mode 100644 index 892a6f8..0000000 --- a/pkgs/minecraftmon/mods/blueprint.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/bookshelf-lib.pw.toml b/pkgs/minecraftmon/mods/bookshelf-lib.pw.toml deleted file mode 100644 index 27ae897..0000000 --- a/pkgs/minecraftmon/mods/bookshelf-lib.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/cant-sleep-clowns-will-eat-me.pw.toml b/pkgs/minecraftmon/mods/cant-sleep-clowns-will-eat-me.pw.toml deleted file mode 100644 index 15d1e20..0000000 --- a/pkgs/minecraftmon/mods/cant-sleep-clowns-will-eat-me.pw.toml +++ /dev/null @@ -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 diff --git a/pkgs/minecraftmon/mods/cloth-config.pw.toml b/pkgs/minecraftmon/mods/cloth-config.pw.toml deleted file mode 100644 index 2dac164..0000000 --- a/pkgs/minecraftmon/mods/cloth-config.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/clumps.pw.toml b/pkgs/minecraftmon/mods/clumps.pw.toml deleted file mode 100644 index 3dcba7e..0000000 --- a/pkgs/minecraftmon/mods/clumps.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/cobblemon-additions.pw.toml b/pkgs/minecraftmon/mods/cobblemon-additions.pw.toml deleted file mode 100644 index ac7fb3f..0000000 --- a/pkgs/minecraftmon/mods/cobblemon-additions.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/cobblemon-counter.pw.toml b/pkgs/minecraftmon/mods/cobblemon-counter.pw.toml deleted file mode 100644 index 7780742..0000000 --- a/pkgs/minecraftmon/mods/cobblemon-counter.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/cobblemon-fight-or-flight-reborn.pw.toml b/pkgs/minecraftmon/mods/cobblemon-fight-or-flight-reborn.pw.toml deleted file mode 100644 index 50def0f..0000000 --- a/pkgs/minecraftmon/mods/cobblemon-fight-or-flight-reborn.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/cobblemon-integrations.pw.toml b/pkgs/minecraftmon/mods/cobblemon-integrations.pw.toml deleted file mode 100644 index 258fd9c..0000000 --- a/pkgs/minecraftmon/mods/cobblemon-integrations.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/cobblemon-pokenav.pw.toml b/pkgs/minecraftmon/mods/cobblemon-pokenav.pw.toml deleted file mode 100644 index e6ae4d5..0000000 --- a/pkgs/minecraftmon/mods/cobblemon-pokenav.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/cobblemon-unchained.pw.toml b/pkgs/minecraftmon/mods/cobblemon-unchained.pw.toml deleted file mode 100644 index 78a9798..0000000 --- a/pkgs/minecraftmon/mods/cobblemon-unchained.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Cobblemon Unchained" -filename = "cobblemon-unchained-1.6-neoforge-1.3.0.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/wh0wnzrT/versions/CtDdOnR5/cobblemon-unchained-1.6-neoforge-1.3.0.jar" -hash-format = "sha512" -hash = "765ea6cbac30b36ff2270bfe018e03f7c1e3def5aa148ecadeb77d22ae99da7e06dd02b415c2d227b4cc224dedd5cbd239e2a9cf616dea9dfb89142f216f1baa" - -[update] -[update.modrinth] -mod-id = "wh0wnzrT" -version = "CtDdOnR5" diff --git a/pkgs/minecraftmon/mods/cobblemon.pw.toml b/pkgs/minecraftmon/mods/cobblemon.pw.toml deleted file mode 100644 index fae2ded..0000000 --- a/pkgs/minecraftmon/mods/cobblemon.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/colorwheel-patcher.pw.toml b/pkgs/minecraftmon/mods/colorwheel-patcher.pw.toml deleted file mode 100644 index f55daf8..0000000 --- a/pkgs/minecraftmon/mods/colorwheel-patcher.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/colorwheel.pw.toml b/pkgs/minecraftmon/mods/colorwheel.pw.toml deleted file mode 100644 index f18aaef..0000000 --- a/pkgs/minecraftmon/mods/colorwheel.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/comforts.pw.toml b/pkgs/minecraftmon/mods/comforts.pw.toml deleted file mode 100644 index d327a32..0000000 --- a/pkgs/minecraftmon/mods/comforts.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/connector.pw.toml b/pkgs/minecraftmon/mods/connector.pw.toml deleted file mode 100644 index b93f699..0000000 --- a/pkgs/minecraftmon/mods/connector.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/controlling.pw.toml b/pkgs/minecraftmon/mods/controlling.pw.toml deleted file mode 100644 index f381798..0000000 --- a/pkgs/minecraftmon/mods/controlling.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/corn-delight.pw.toml b/pkgs/minecraftmon/mods/corn-delight.pw.toml deleted file mode 100644 index b76be53..0000000 --- a/pkgs/minecraftmon/mods/corn-delight.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/corpse.pw.toml b/pkgs/minecraftmon/mods/corpse.pw.toml deleted file mode 100644 index 49fbae4..0000000 --- a/pkgs/minecraftmon/mods/corpse.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/crabbers-delight.pw.toml b/pkgs/minecraftmon/mods/crabbers-delight.pw.toml deleted file mode 100644 index 477f873..0000000 --- a/pkgs/minecraftmon/mods/crabbers-delight.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/create-dragons-plus.pw.toml b/pkgs/minecraftmon/mods/create-dragons-plus.pw.toml deleted file mode 100644 index 564cd88..0000000 --- a/pkgs/minecraftmon/mods/create-dragons-plus.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/create-enchantment-industry.pw.toml b/pkgs/minecraftmon/mods/create-enchantment-industry.pw.toml deleted file mode 100644 index a77e20c..0000000 --- a/pkgs/minecraftmon/mods/create-enchantment-industry.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/create.pw.toml b/pkgs/minecraftmon/mods/create.pw.toml deleted file mode 100644 index 2213297..0000000 --- a/pkgs/minecraftmon/mods/create.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/creativecore.pw.toml b/pkgs/minecraftmon/mods/creativecore.pw.toml deleted file mode 100644 index 7a681f7..0000000 --- a/pkgs/minecraftmon/mods/creativecore.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/curios.pw.toml b/pkgs/minecraftmon/mods/curios.pw.toml deleted file mode 100644 index 5e5f3a9..0000000 --- a/pkgs/minecraftmon/mods/curios.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/cut-through.pw.toml b/pkgs/minecraftmon/mods/cut-through.pw.toml deleted file mode 100644 index 9633487..0000000 --- a/pkgs/minecraftmon/mods/cut-through.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/deep-aether.pw.toml b/pkgs/minecraftmon/mods/deep-aether.pw.toml deleted file mode 100644 index 2b7d1e0..0000000 --- a/pkgs/minecraftmon/mods/deep-aether.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Deep Aether" -filename = "deep_aether-1.21.1-1.1.4.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/gcHIih5B/versions/4izgIGwK/deep_aether-1.21.1-1.1.4.jar" -hash-format = "sha512" -hash = "3279832ff54cfc25bb87d561ea4c7b33fab4e65152c9272e069035676104034e5e9b5a8d911b45c7e12520e691363d6c7278d6f2d094b888270493b9d9e564cf" - -[update] -[update.modrinth] -mod-id = "gcHIih5B" -version = "4izgIGwK" diff --git a/pkgs/minecraftmon/mods/default-options.pw.toml b/pkgs/minecraftmon/mods/default-options.pw.toml deleted file mode 100644 index 9ba3127..0000000 --- a/pkgs/minecraftmon/mods/default-options.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/diagonal-fences.pw.toml b/pkgs/minecraftmon/mods/diagonal-fences.pw.toml deleted file mode 100644 index f849d44..0000000 --- a/pkgs/minecraftmon/mods/diagonal-fences.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/diagonal-walls.pw.toml b/pkgs/minecraftmon/mods/diagonal-walls.pw.toml deleted file mode 100644 index 0406087..0000000 --- a/pkgs/minecraftmon/mods/diagonal-walls.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/diagonal-windows.pw.toml b/pkgs/minecraftmon/mods/diagonal-windows.pw.toml deleted file mode 100644 index e2f9d64..0000000 --- a/pkgs/minecraftmon/mods/diagonal-windows.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/distanthorizons.pw.toml b/pkgs/minecraftmon/mods/distanthorizons.pw.toml deleted file mode 100644 index 775a0ee..0000000 --- a/pkgs/minecraftmon/mods/distanthorizons.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/distinguished-potions.pw.toml b/pkgs/minecraftmon/mods/distinguished-potions.pw.toml deleted file mode 100644 index 9db2fc9..0000000 --- a/pkgs/minecraftmon/mods/distinguished-potions.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/dynamic-fps.pw.toml b/pkgs/minecraftmon/mods/dynamic-fps.pw.toml deleted file mode 100644 index 82d6dcd..0000000 --- a/pkgs/minecraftmon/mods/dynamic-fps.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/edivadlib.pw.toml b/pkgs/minecraftmon/mods/edivadlib.pw.toml deleted file mode 100644 index ae25305..0000000 --- a/pkgs/minecraftmon/mods/edivadlib.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/emi-create-schematics.pw.toml b/pkgs/minecraftmon/mods/emi-create-schematics.pw.toml deleted file mode 100644 index e1522dd..0000000 --- a/pkgs/minecraftmon/mods/emi-create-schematics.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/emi-enchanting.pw.toml b/pkgs/minecraftmon/mods/emi-enchanting.pw.toml deleted file mode 100644 index a8e2ad9..0000000 --- a/pkgs/minecraftmon/mods/emi-enchanting.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/emi-loot.pw.toml b/pkgs/minecraftmon/mods/emi-loot.pw.toml deleted file mode 100644 index 591505a..0000000 --- a/pkgs/minecraftmon/mods/emi-loot.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/emi-ores.pw.toml b/pkgs/minecraftmon/mods/emi-ores.pw.toml deleted file mode 100644 index 2f1a7ec..0000000 --- a/pkgs/minecraftmon/mods/emi-ores.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/emi-professions-(emip).pw.toml b/pkgs/minecraftmon/mods/emi-professions-(emip).pw.toml deleted file mode 100644 index 613da92..0000000 --- a/pkgs/minecraftmon/mods/emi-professions-(emip).pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/emi.pw.toml b/pkgs/minecraftmon/mods/emi.pw.toml deleted file mode 100644 index 3027eba..0000000 --- a/pkgs/minecraftmon/mods/emi.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/emiffect.pw.toml b/pkgs/minecraftmon/mods/emiffect.pw.toml deleted file mode 100644 index 9335560..0000000 --- a/pkgs/minecraftmon/mods/emiffect.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/enchantment-descriptions.pw.toml b/pkgs/minecraftmon/mods/enchantment-descriptions.pw.toml deleted file mode 100644 index c7b2fb0..0000000 --- a/pkgs/minecraftmon/mods/enchantment-descriptions.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/ends-delight.pw.toml b/pkgs/minecraftmon/mods/ends-delight.pw.toml deleted file mode 100644 index 9224f61..0000000 --- a/pkgs/minecraftmon/mods/ends-delight.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/entityculling.pw.toml b/pkgs/minecraftmon/mods/entityculling.pw.toml deleted file mode 100644 index 7ff13db..0000000 --- a/pkgs/minecraftmon/mods/entityculling.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/every-compat.pw.toml b/pkgs/minecraftmon/mods/every-compat.pw.toml deleted file mode 100644 index a4d0d91..0000000 --- a/pkgs/minecraftmon/mods/every-compat.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/extra-mod-integrations.pw.toml b/pkgs/minecraftmon/mods/extra-mod-integrations.pw.toml deleted file mode 100644 index ef80415..0000000 --- a/pkgs/minecraftmon/mods/extra-mod-integrations.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/extrastorage.pw.toml b/pkgs/minecraftmon/mods/extrastorage.pw.toml deleted file mode 100644 index 06f6d4e..0000000 --- a/pkgs/minecraftmon/mods/extrastorage.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "ExtraStorage" -filename = "ExtraStorage-1.21.1-5.0.4.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/T34cBZKl/versions/GDceiWAY/ExtraStorage-1.21.1-5.0.4.jar" -hash-format = "sha512" -hash = "94ec823d77230200083975129b2cc065184556c164edea97e9ca94427c01059133919d6c869e8007a878ea53f97d2de10f11fbc7ac54af7b2c5323a1e47ded63" - -[update] -[update.modrinth] -mod-id = "T34cBZKl" -version = "GDceiWAY" diff --git a/pkgs/minecraftmon/mods/farmers-delight.pw.toml b/pkgs/minecraftmon/mods/farmers-delight.pw.toml deleted file mode 100644 index 8427ba3..0000000 --- a/pkgs/minecraftmon/mods/farmers-delight.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/forgified-fabric-api.pw.toml b/pkgs/minecraftmon/mods/forgified-fabric-api.pw.toml deleted file mode 100644 index 061c356..0000000 --- a/pkgs/minecraftmon/mods/forgified-fabric-api.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/friends-and-foes-beekeeper-hut-forge.pw.toml b/pkgs/minecraftmon/mods/friends-and-foes-beekeeper-hut-forge.pw.toml deleted file mode 100644 index 3c628de..0000000 --- a/pkgs/minecraftmon/mods/friends-and-foes-beekeeper-hut-forge.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/friends-and-foes-flowery-mooblooms-forge.pw.toml b/pkgs/minecraftmon/mods/friends-and-foes-flowery-mooblooms-forge.pw.toml deleted file mode 100644 index 46a437a..0000000 --- a/pkgs/minecraftmon/mods/friends-and-foes-flowery-mooblooms-forge.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/friends-and-foes-forge.pw.toml b/pkgs/minecraftmon/mods/friends-and-foes-forge.pw.toml deleted file mode 100644 index 33c3baf..0000000 --- a/pkgs/minecraftmon/mods/friends-and-foes-forge.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Friends&Foes (Forge/NeoForge)" -filename = "friendsandfoes-neoforge-4.0.8+mc1.21.1.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/BOCJKD49/versions/ny2EmjXC/friendsandfoes-neoforge-4.0.8%2Bmc1.21.1.jar" -hash-format = "sha512" -hash = "6e029c5eb6424c6b907f15e33463ed5edabfd072f7f8ded7c6080f232a84dd1710796ad34323bb0c1aafaa60152be892a003e9fca8f31e6a1366d64cb28c6719" - -[update] -[update.modrinth] -mod-id = "BOCJKD49" -version = "ny2EmjXC" diff --git a/pkgs/minecraftmon/mods/fruits-delight.pw.toml b/pkgs/minecraftmon/mods/fruits-delight.pw.toml deleted file mode 100644 index 48bdb31..0000000 --- a/pkgs/minecraftmon/mods/fruits-delight.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Fruits Delight" -filename = "fruitsdelight-1.2.9.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/g6sbyCTu/versions/O5Jcrl5j/fruitsdelight-1.2.9.jar" -hash-format = "sha512" -hash = "099534972426d3fd842cbad1e78820d217efaca16cf44e8d513b850d1e1913e45dfa2266843b965521735499d1edd9d57081e84ed04a26749ab069ba0248a56f" - -[update] -[update.modrinth] -mod-id = "g6sbyCTu" -version = "O5Jcrl5j" diff --git a/pkgs/minecraftmon/mods/fzzy-config.pw.toml b/pkgs/minecraftmon/mods/fzzy-config.pw.toml deleted file mode 100644 index 4ee7fc6..0000000 --- a/pkgs/minecraftmon/mods/fzzy-config.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Fzzy Config" -filename = "fzzy_config-0.7.2+1.21+neoforge.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/hYykXjDp/versions/ZWbJxzBB/fzzy_config-0.7.2%2B1.21%2Bneoforge.jar" -hash-format = "sha512" -hash = "ae1d5c32323066cdf018cf714362181adcea37cdc0408914e1598963b0457ad3001f5da599006e1a434a838324859d622f5cc438998ec334cab173efd3b64f00" - -[update] -[update.modrinth] -mod-id = "hYykXjDp" -version = "ZWbJxzBB" diff --git a/pkgs/minecraftmon/mods/geckolib.pw.toml b/pkgs/minecraftmon/mods/geckolib.pw.toml deleted file mode 100644 index d5908ff..0000000 --- a/pkgs/minecraftmon/mods/geckolib.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/hardcore-revival.pw.toml b/pkgs/minecraftmon/mods/hardcore-revival.pw.toml deleted file mode 100644 index 729bfdf..0000000 --- a/pkgs/minecraftmon/mods/hardcore-revival.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/immersiveengineering.pw.toml b/pkgs/minecraftmon/mods/immersiveengineering.pw.toml deleted file mode 100644 index 30a132e..0000000 --- a/pkgs/minecraftmon/mods/immersiveengineering.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/immersivemusicmod.pw.toml b/pkgs/minecraftmon/mods/immersivemusicmod.pw.toml deleted file mode 100644 index 0cd5f50..0000000 --- a/pkgs/minecraftmon/mods/immersivemusicmod.pw.toml +++ /dev/null @@ -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" diff --git a/pkgs/minecraftmon/mods/inventory-hud-forge.pw.toml b/pkgs/minecraftmon/mods/inventory-hud-forge.pw.toml deleted file mode 100644 index dfae5a9..0000000 --- a/pkgs/minecraftmon/mods/inventory-hud-forge.pw.toml +++ /dev/null @@ -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 diff --git a/pkgs/minecraftmon/mods/iris.pw.toml b/pkgs/minecraftmon/mods/iris.pw.toml deleted file mode 100644 index cb7be00..0000000 --- a/pkgs/minecraftmon/mods/iris.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Iris Shaders" -filename = "iris-neoforge-1.8.12+mc1.21.1.jar" -side = "client" - -[download] -url = "https://cdn.modrinth.com/data/YL57xq9U/versions/t3ruzodq/iris-neoforge-1.8.12%2Bmc1.21.1.jar" -hash-format = "sha512" -hash = "57b8026a3c3c433cf6123d63dc6ce7e11f6d480a72926370db1fc7f2b06059bc16a753ecd7e7af659c19e90b592103196b0e89585ce4f0744a4ca433f59bcf1a" - -[update] -[update.modrinth] -mod-id = "YL57xq9U" -version = "t3ruzodq" diff --git a/pkgs/minecraftmon/mods/irons-spells-n-spellbooks.pw.toml b/pkgs/minecraftmon/mods/irons-spells-n-spellbooks.pw.toml deleted file mode 100644 index b66e580..0000000 --- a/pkgs/minecraftmon/mods/irons-spells-n-spellbooks.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Iron's Spells 'n Spellbooks" -filename = "irons_spellbooks-1.21.1-3.13.0.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/s4OWxYQQ/versions/ffmzJG9V/irons_spellbooks-1.21.1-3.13.0.jar" -hash-format = "sha512" -hash = "6e89d01e385cadb3c57abbc834d3d4cd2f5636a1e2971ff7ed92482e43586ff599fd4e0a200d8f101da0138503830982a1922e616170bdbda53b997ca5982b1c" - -[update] -[update.modrinth] -mod-id = "s4OWxYQQ" -version = "ffmzJG9V" diff --git a/pkgs/minecraftmon/mods/jade.pw.toml b/pkgs/minecraftmon/mods/jade.pw.toml deleted file mode 100644 index 453b928..0000000 --- a/pkgs/minecraftmon/mods/jade.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Jade 🔍" -filename = "Jade-1.21.1-NeoForge-15.10.3.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/nvQzSEkH/versions/43sRR8f6/Jade-1.21.1-NeoForge-15.10.3.jar" -hash-format = "sha512" -hash = "351926187c564d1f2bae2f084c77f80fe850dc90837153ef01506c049f16b02307196ed383ae25cd334530106aa741b12dd90f5e1b205439fde2b74d09274bc0" - -[update] -[update.modrinth] -mod-id = "nvQzSEkH" -version = "43sRR8f6" diff --git a/pkgs/minecraftmon/mods/jei.pw.toml b/pkgs/minecraftmon/mods/jei.pw.toml deleted file mode 100644 index 4455174..0000000 --- a/pkgs/minecraftmon/mods/jei.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Just Enough Items" -filename = "jei-1.21.1-neoforge-19.22.1.316.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/u6dRKJwZ/versions/oghFmDkL/jei-1.21.1-neoforge-19.22.1.316.jar" -hash-format = "sha512" -hash = "63dba55f429f8504f600db45b87143ab2005fc68f7314adf364e82afb3399c7e6488008d66cc9a7b13b17e43bcef11bbb36f909f4313219308fc0a4a12400d0b" - -[update] -[update.modrinth] -mod-id = "u6dRKJwZ" -version = "oghFmDkL" diff --git a/pkgs/minecraftmon/mods/journey-pac.pw.toml b/pkgs/minecraftmon/mods/journey-pac.pw.toml deleted file mode 100644 index cf234a7..0000000 --- a/pkgs/minecraftmon/mods/journey-pac.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "JourneyPAC" -filename = "JourneyPAC-neoforge-1.21-1.1.7.jar" -side = "client" - -[download] -url = "https://cdn.modrinth.com/data/UUErFmkX/versions/Q22HXCFT/JourneyPAC-neoforge-1.21-1.1.7.jar" -hash-format = "sha512" -hash = "367930b9fc3eaf78f78bb215524521905617e35d6c705e4b48153ae6eb8d08943f5c6398ebf5fa52025609d7cb0f607722b64deac0c99a55fc7854c67f06d82e" - -[update] -[update.modrinth] -mod-id = "UUErFmkX" -version = "Q22HXCFT" diff --git a/pkgs/minecraftmon/mods/journeymap-integration.pw.toml b/pkgs/minecraftmon/mods/journeymap-integration.pw.toml deleted file mode 100644 index df334f1..0000000 --- a/pkgs/minecraftmon/mods/journeymap-integration.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "JourneyMap Integration" -filename = "jmi-neoforge-1.21.1-1.9.jar" -side = "client" - -[download] -url = "https://cdn.modrinth.com/data/M1ZKbfkJ/versions/x1p0RNwd/jmi-neoforge-1.21.1-1.9.jar" -hash-format = "sha512" -hash = "1e2d32012d76be0ac50aa80da07b12a2e4c38710ff15f3db66519cf9c0071c80a5cadf3410d248318a65443e436c7610c241fc48a119761f3fadc8fb1a12f7b2" - -[update] -[update.modrinth] -mod-id = "M1ZKbfkJ" -version = "x1p0RNwd" diff --git a/pkgs/minecraftmon/mods/journeymap.pw.toml b/pkgs/minecraftmon/mods/journeymap.pw.toml deleted file mode 100644 index 6ac92ed..0000000 --- a/pkgs/minecraftmon/mods/journeymap.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "JourneyMap" -filename = "journeymap-neoforge-1.21.1-6.0.0-beta.52.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/lfHFW1mp/versions/vyOPsWNv/journeymap-neoforge-1.21.1-6.0.0-beta.52.jar" -hash-format = "sha512" -hash = "14cab1df5ef4f650afb7e677e808a6e082aae723171d7a0c4de9c2bbee468af0a06a1fbcbdc89649ff759b044b4653d2295a9fb8c46e250b22d552387a527ae2" - -[update] -[update.modrinth] -mod-id = "lfHFW1mp" -version = "vyOPsWNv" diff --git a/pkgs/minecraftmon/mods/kiwi.pw.toml b/pkgs/minecraftmon/mods/kiwi.pw.toml deleted file mode 100644 index bce1545..0000000 --- a/pkgs/minecraftmon/mods/kiwi.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Kiwi 🥝" -filename = "Kiwi-1.21.1-NeoForge-15.6.1.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/ufdDoWPd/versions/EWWtrwik/Kiwi-1.21.1-NeoForge-15.6.1.jar" -hash-format = "sha512" -hash = "1270a11c3732fb8217804000d18080c995508b3cda32a000241645a0eb36ee86827262d82ff3cf0bae1a7f695c2c73cac24a64d752699481875dca3ea91cb8a5" - -[update] -[update.modrinth] -mod-id = "ufdDoWPd" -version = "EWWtrwik" diff --git a/pkgs/minecraftmon/mods/kotlin-for-forge.pw.toml b/pkgs/minecraftmon/mods/kotlin-for-forge.pw.toml deleted file mode 100644 index e4cdad4..0000000 --- a/pkgs/minecraftmon/mods/kotlin-for-forge.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Kotlin for Forge" -filename = "kotlinforforge-5.9.0-all.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/ordsPcFz/versions/4qCjWixP/kotlinforforge-5.9.0-all.jar" -hash-format = "sha512" -hash = "cfa784389e7d373b23d2c9d9cc0becc4e3b9ffd0c7bf75f23aeee1625f39bde44cbf15b28403c490f716b436a748fa7531c607673b5a85dd116008a6fc43236f" - -[update] -[update.modrinth] -mod-id = "ordsPcFz" -version = "4qCjWixP" diff --git a/pkgs/minecraftmon/mods/l_enders-cataclysm.pw.toml b/pkgs/minecraftmon/mods/l_enders-cataclysm.pw.toml deleted file mode 100644 index 973786b..0000000 --- a/pkgs/minecraftmon/mods/l_enders-cataclysm.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "L_Ender's Cataclysm" -filename = "L_Ender's Cataclysm 1.21.1-3.15.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/46KJle7n/versions/wdUO0pSd/L_Ender%27s%20Cataclysm%201.21.1-3.15.jar" -hash-format = "sha512" -hash = "a868231411cd01b4ade57dfa75ed069dd18c6affeb5c4e49ee9d3d2367e7b9d9867e35334462b3cf627e45e229f415667f52bc19f37eb360eccba9b82a9996df" - -[update] -[update.modrinth] -mod-id = "46KJle7n" -version = "wdUO0pSd" diff --git a/pkgs/minecraftmon/mods/leave-my-bars-alone.pw.toml b/pkgs/minecraftmon/mods/leave-my-bars-alone.pw.toml deleted file mode 100644 index 940bace..0000000 --- a/pkgs/minecraftmon/mods/leave-my-bars-alone.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Leave My Bars Alone" -filename = "LeaveMyBarsAlone-v21.1.2-1.21.1-NeoForge.jar" -side = "client" - -[download] -url = "https://cdn.modrinth.com/data/gK9mebQg/versions/27kYf7JI/LeaveMyBarsAlone-v21.1.2-1.21.1-NeoForge.jar" -hash-format = "sha512" -hash = "b42b4dc923df1557a475e3528ff7aa21ed8fd031f99dc807ce4c06035bb40008bf7f713b4ba883d97d91d43064a0d7c5b4f73ba22473c72f32e0e0e36cacd8f2" - -[update] -[update.modrinth] -mod-id = "gK9mebQg" -version = "27kYf7JI" diff --git a/pkgs/minecraftmon/mods/leaves-be-gone.pw.toml b/pkgs/minecraftmon/mods/leaves-be-gone.pw.toml deleted file mode 100644 index bda6365..0000000 --- a/pkgs/minecraftmon/mods/leaves-be-gone.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Leaves Be Gone" -filename = "LeavesBeGone-v21.1.0-1.21.1-NeoForge.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/AVq17PqV/versions/TOHEOE2X/LeavesBeGone-v21.1.0-1.21.1-NeoForge.jar" -hash-format = "sha512" -hash = "0f6e5131b2be64f3ebc9cc628bace6023c8d4748051092d1490e6523bd708892acfdf353dcec8032076be6fbc2fc6e5f4c7656e0b2a127b277c3676798d1e92a" - -[update] -[update.modrinth] -mod-id = "AVq17PqV" -version = "TOHEOE2X" diff --git a/pkgs/minecraftmon/mods/lionfish-api.pw.toml b/pkgs/minecraftmon/mods/lionfish-api.pw.toml deleted file mode 100644 index 2784496..0000000 --- a/pkgs/minecraftmon/mods/lionfish-api.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Lionfish-API" -filename = "lionfishapi-2.6.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/FoVacERa/versions/RdsxgL41/lionfishapi-2.6.jar" -hash-format = "sha512" -hash = "87167d2c54f6a5539c30ed5ae12cdfe407c608ca32d6b864b27f3d1c994134687b0e4aba42aced0d204fba1d72452906dcc02bb5b17ba9f6e8951834d4758202" - -[update] -[update.modrinth] -mod-id = "FoVacERa" -version = "RdsxgL41" diff --git a/pkgs/minecraftmon/mods/lithostitched.pw.toml b/pkgs/minecraftmon/mods/lithostitched.pw.toml deleted file mode 100644 index 893eb20..0000000 --- a/pkgs/minecraftmon/mods/lithostitched.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Lithostitched" -filename = "lithostitched-neoforge-1.21.1-1.4.11.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/XaDC71GB/versions/r3TO8PWe/lithostitched-neoforge-1.21.1-1.4.11.jar" -hash-format = "sha512" -hash = "43130d892ee5af5481c2911a6afc629ea28b21fc8ca156f654af434a561c2cab209622796d44e92014523c7df2243ee41411bc342173605610975d3c4a0eaa8a" - -[update] -[update.modrinth] -mod-id = "XaDC71GB" -version = "r3TO8PWe" diff --git a/pkgs/minecraftmon/mods/magnum-torch.pw.toml b/pkgs/minecraftmon/mods/magnum-torch.pw.toml deleted file mode 100644 index ebfaf0e..0000000 --- a/pkgs/minecraftmon/mods/magnum-torch.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Magnum Torch" -filename = "MagnumTorch-v21.1.0-1.21.1-NeoForge.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/jorDmSKv/versions/wuc5gqR2/MagnumTorch-v21.1.0-1.21.1-NeoForge.jar" -hash-format = "sha512" -hash = "ffee695b632c0c5d5ae36b3fe9a4b8f1ae940928ea335f32ef1521c8c861590ba04ca0ecf0f97f55530cee25bd5c0e22508a5965fe74e251e2d5dba216766caf" - -[update] -[update.modrinth] -mod-id = "jorDmSKv" -version = "wuc5gqR2" diff --git a/pkgs/minecraftmon/mods/mmlib.pw.toml b/pkgs/minecraftmon/mods/mmlib.pw.toml deleted file mode 100644 index af23f2f..0000000 --- a/pkgs/minecraftmon/mods/mmlib.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Mysterious Mountain Lib" -filename = "mysterious_mountain_lib-1.1.8-1.21.1.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/ntMyNH8c/versions/QCo1JpCt/mysterious_mountain_lib-1.1.8-1.21.1.jar" -hash-format = "sha512" -hash = "89563f6c781be68c4f49f199b28e6b5cf50dbbdf46780c38b11097ac2b55ca26335513cf89671b19bab7952982ac4ae61e37bbe125b7a0a78650d2fe935489e7" - -[update] -[update.modrinth] -mod-id = "ntMyNH8c" -version = "QCo1JpCt" diff --git a/pkgs/minecraftmon/mods/modelfix.pw.toml b/pkgs/minecraftmon/mods/modelfix.pw.toml deleted file mode 100644 index cb3470e..0000000 --- a/pkgs/minecraftmon/mods/modelfix.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Model Gap Fix" -filename = "modelfix-1.21-1.10.jar" -side = "client" - -[download] -url = "https://cdn.modrinth.com/data/QdG47OkI/versions/X2U8ceG9/modelfix-1.21-1.10.jar" -hash-format = "sha512" -hash = "647cab9a1bed84e10cfe77732a66bdfe116a6371dcceadcf896083654f7ab39542df4152674b5a3a653e3b36f517f5c1bff4c25db37dd789df9eeb1e1d799c07" - -[update] -[update.modrinth] -mod-id = "QdG47OkI" -version = "X2U8ceG9" diff --git a/pkgs/minecraftmon/mods/moderately-enough-effect-descriptions-(meed)-jeed-addon.pw.toml b/pkgs/minecraftmon/mods/moderately-enough-effect-descriptions-(meed)-jeed-addon.pw.toml deleted file mode 100644 index 81e639b..0000000 --- a/pkgs/minecraftmon/mods/moderately-enough-effect-descriptions-(meed)-jeed-addon.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Moderately Enough Effect Descriptions (MEED) - A JEED Addon" -filename = "MEED-1.21.1-5.6.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/1dxbxzCg/versions/4VAzmU5r/MEED-1.21.1-5.6.jar" -hash-format = "sha512" -hash = "42672a63125b9cd52fc29de8dc5d514fc288d6139ca88e93e2a0b2119f77b7664595dbd07594a74781b000d0dfdca751e4ee7de9930700f024d5009521cff7c3" - -[update] -[update.modrinth] -mod-id = "1dxbxzCg" -version = "4VAzmU5r" diff --git a/pkgs/minecraftmon/mods/modernfix.pw.toml b/pkgs/minecraftmon/mods/modernfix.pw.toml deleted file mode 100644 index 7af05d4..0000000 --- a/pkgs/minecraftmon/mods/modernfix.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "ModernFix" -filename = "modernfix-neoforge-5.24.3+mc1.21.1.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/nmDcB62a/versions/4SPHwiDB/modernfix-neoforge-5.24.3%2Bmc1.21.1.jar" -hash-format = "sha512" -hash = "3105b37c9ddf8652433067ea29567c21f36e179d3a904c0800c90585f94c51560bd45222d82e397939e1be7f57c5144e0994edf6764edccfeb64ac4cec53dded" - -[update] -[update.modrinth] -mod-id = "nmDcB62a" -version = "4SPHwiDB" diff --git a/pkgs/minecraftmon/mods/moonlight.pw.toml b/pkgs/minecraftmon/mods/moonlight.pw.toml deleted file mode 100644 index 7c953c3..0000000 --- a/pkgs/minecraftmon/mods/moonlight.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Moonlight Lib" -filename = "moonlight-1.21-2.20.7-neoforge.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/twkfQtEc/versions/cMfBtPs2/moonlight-1.21-2.20.7-neoforge.jar" -hash-format = "sha512" -hash = "7d7704aea1b98a017010cb0e15a6aa3048430e99fa136236069bbccd7a743ad23d3eeb15f10d70f75bee0406a5a62945f905a8e5fe9c20cc8c6bb407ecbebd87" - -[update] -[update.modrinth] -mod-id = "twkfQtEc" -version = "cMfBtPs2" diff --git a/pkgs/minecraftmon/mods/more-concrete.pw.toml b/pkgs/minecraftmon/mods/more-concrete.pw.toml deleted file mode 100644 index e42b274..0000000 --- a/pkgs/minecraftmon/mods/more-concrete.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "More Concrete" -filename = "moreconcrete-neoforge-1.6.0-1.21.1.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/sUSfS0sK/versions/koNg0E1I/moreconcrete-neoforge-1.6.0-1.21.1.jar" -hash-format = "sha512" -hash = "699b067a5b1adbcc0292cb8a3fb63e6d6b566e8e329a9244c3cba05511bd7bac060d54dd2e0809af12bc19631f623fb3ddf2805b0d390f5855763a4e67f457c0" - -[update] -[update.modrinth] -mod-id = "sUSfS0sK" -version = "koNg0E1I" diff --git a/pkgs/minecraftmon/mods/mouse-tweaks.pw.toml b/pkgs/minecraftmon/mods/mouse-tweaks.pw.toml deleted file mode 100644 index c665b4f..0000000 --- a/pkgs/minecraftmon/mods/mouse-tweaks.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Mouse Tweaks" -filename = "MouseTweaks-neoforge-mc1.21-2.26.1.jar" -side = "client" - -[download] -url = "https://cdn.modrinth.com/data/aC3cM3Vq/versions/9I21YYxf/MouseTweaks-neoforge-mc1.21-2.26.1.jar" -hash-format = "sha512" -hash = "f95c0cc881211ee0442434976775e07aae40b4a2ba4e3a85455bc57ca9d3c991e239cd98374a8abd442dc9c378dcd9001e2caa1bf69991d424b5652dd7f3483b" - -[update] -[update.modrinth] -mod-id = "aC3cM3Vq" -version = "9I21YYxf" diff --git a/pkgs/minecraftmon/mods/no-chat-reports.pw.toml b/pkgs/minecraftmon/mods/no-chat-reports.pw.toml deleted file mode 100644 index 8042b65..0000000 --- a/pkgs/minecraftmon/mods/no-chat-reports.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "No Chat Reports" -filename = "NoChatReports-NEOFORGE-1.21.1-v2.9.1.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/qQyHxfxd/versions/ZV8eL55E/NoChatReports-NEOFORGE-1.21.1-v2.9.1.jar" -hash-format = "sha512" -hash = "292a3623b5addb17e9f15681a4f2534562e9882ef809e504f49da4778fafc12e21a71995b5d05554d435201f401ace1e86af50e6e26f6ce9d203a5896a1ece21" - -[update] -[update.modrinth] -mod-id = "qQyHxfxd" -version = "ZV8eL55E" diff --git a/pkgs/minecraftmon/mods/noisium.pw.toml b/pkgs/minecraftmon/mods/noisium.pw.toml deleted file mode 100644 index 0f5aaf8..0000000 --- a/pkgs/minecraftmon/mods/noisium.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Noisium" -filename = "noisium-neoforge-2.3.0+mc1.21-1.21.1.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/KuNKN7d2/versions/nJBE6tif/noisium-neoforge-2.3.0%2Bmc1.21-1.21.1.jar" -hash-format = "sha512" -hash = "b50c37d2f69d51742d4407d272cea525b428784d2a39338d34b692937320495cd77d47b2d2321b3976713447028f50823e9ba44ca618900eba4ced907985ec84" - -[update] -[update.modrinth] -mod-id = "KuNKN7d2" -version = "nJBE6tif" diff --git a/pkgs/minecraftmon/mods/notenoughrecipebook.pw.toml b/pkgs/minecraftmon/mods/notenoughrecipebook.pw.toml deleted file mode 100644 index 4674c6e..0000000 --- a/pkgs/minecraftmon/mods/notenoughrecipebook.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Not Enough Recipe Book [NERB]" -filename = "Not Enough Recipe Book-NEOFORGE-0.4.2+1.21.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/bQh7xzFq/versions/oJLEqcbX/Not%20Enough%20Recipe%20Book-NEOFORGE-0.4.2%2B1.21.jar" -hash-format = "sha512" -hash = "2ef2d508527273acb68c6fd34692b172148760e514fc979f141e16d718bec3ecf94dfeefe1ded6783634d2ca574ec16df2eac7a99f27f8a860f490c8a8fe1d68" - -[update] -[update.modrinth] -mod-id = "bQh7xzFq" -version = "oJLEqcbX" diff --git a/pkgs/minecraftmon/mods/nullscape.pw.toml b/pkgs/minecraftmon/mods/nullscape.pw.toml deleted file mode 100644 index 29eb81a..0000000 --- a/pkgs/minecraftmon/mods/nullscape.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Nullscape" -filename = "Nullscape_1.21.x_v1.2.13.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/LPjGiSO4/versions/GdvpapkA/Nullscape_1.21.x_v1.2.13.jar" -hash-format = "sha512" -hash = "869540da8f56885c576c8933f4b737599f6e724b3df7e5112e23d1b0d295f96035aab92090611332b2de46696c40092cee6d13cb9d34bc0c42dcc640d3feda67" - -[update] -[update.modrinth] -mod-id = "LPjGiSO4" -version = "GdvpapkA" diff --git a/pkgs/minecraftmon/mods/oceans-delight.pw.toml b/pkgs/minecraftmon/mods/oceans-delight.pw.toml deleted file mode 100644 index f01e3dc..0000000 --- a/pkgs/minecraftmon/mods/oceans-delight.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Ocean's Delight" -filename = "oceansdelight-neoforge-1.0.3-1.21.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/DGiq4ZSW/versions/uYwpUE9A/oceansdelight-neoforge-1.0.3-1.21.jar" -hash-format = "sha512" -hash = "1e340a7ad3cd026ed2f15daa6308146ebeacbcb642e312dc131d3637a1c24b20ce448688a83476323a52e122b467e74da20cf02dc04d28faa0b9a2c60684467b" - -[update] -[update.modrinth] -mod-id = "DGiq4ZSW" -version = "uYwpUE9A" diff --git a/pkgs/minecraftmon/mods/octo-lib.pw.toml b/pkgs/minecraftmon/mods/octo-lib.pw.toml deleted file mode 100644 index 5eeb3c9..0000000 --- a/pkgs/minecraftmon/mods/octo-lib.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "OctoLib" -filename = "OctoLib-NEOFORGE-0.5.0.1.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/RH2KUdKJ/versions/b1bY4oKd/OctoLib-NEOFORGE-0.5.0.1.jar" -hash-format = "sha512" -hash = "65abdc523833288dc3b14429befe0c68a188572d01049671aa9d186757bce447015852b4898ddd656959d91d903d508767ec07bab070ba2767bb6a66b058c756" - -[update] -[update.modrinth] -mod-id = "RH2KUdKJ" -version = "b1bY4oKd" diff --git a/pkgs/minecraftmon/mods/ominous-phantoms.pw.toml b/pkgs/minecraftmon/mods/ominous-phantoms.pw.toml deleted file mode 100644 index 6cbac50..0000000 --- a/pkgs/minecraftmon/mods/ominous-phantoms.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Ominous Phantoms" -filename = "ominous_phantoms-1.0.6.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/NQKAQdLb/versions/J4R0QrDz/ominous_phantoms-1.0.6.jar" -hash-format = "sha512" -hash = "acc1e8d65899657a9108d2ca4a164d591e28c7dfc51d4127ab90649f1c7658c8230f43df530d9f1b4c5729fab35b65dea9a6ee1ba201a99a10c954439dcdb140" - -[update] -[update.modrinth] -mod-id = "NQKAQdLb" -version = "J4R0QrDz" diff --git a/pkgs/minecraftmon/mods/open-loader.pw.toml b/pkgs/minecraftmon/mods/open-loader.pw.toml deleted file mode 100644 index aa8f2aa..0000000 --- a/pkgs/minecraftmon/mods/open-loader.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Open Loader" -filename = "OpenLoader-neoforge-1.21.1-21.1.5.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/KwWsINvD/versions/Szobbnyh/OpenLoader-neoforge-1.21.1-21.1.5.jar" -hash-format = "sha512" -hash = "3a4b0b6605f30b98a9d26954f8e211e6422f1f6402d400a9f9eb32a5af065da808dd3648a839dd60e47e50c8075b6a71624e142e50fb61273a6ba505bf6b1d09" - -[update] -[update.modrinth] -mod-id = "KwWsINvD" -version = "Szobbnyh" diff --git a/pkgs/minecraftmon/mods/open-parties-and-claims.pw.toml b/pkgs/minecraftmon/mods/open-parties-and-claims.pw.toml deleted file mode 100644 index cb48558..0000000 --- a/pkgs/minecraftmon/mods/open-parties-and-claims.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Open Parties and Claims" -filename = "open-parties-and-claims-neoforge-1.21.1-0.25.4.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/gF3BGWvG/versions/a49p7KOL/open-parties-and-claims-neoforge-1.21.1-0.25.4.jar" -hash-format = "sha512" -hash = "46ce717e8298366a6616568e5ceadf6ab16a6128d5637143c12786a841dd000aafcb170b67e9f4af6ae71c3cd79a0295645093d0af5c5a47ca129d5dcfaf4310" - -[update] -[update.modrinth] -mod-id = "gF3BGWvG" -version = "a49p7KOL" diff --git a/pkgs/minecraftmon/mods/overflowing-bars.pw.toml b/pkgs/minecraftmon/mods/overflowing-bars.pw.toml deleted file mode 100644 index aaee0dd..0000000 --- a/pkgs/minecraftmon/mods/overflowing-bars.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Overflowing Bars" -filename = "OverflowingBars-v21.1.1-1.21.1-NeoForge.jar" -side = "client" - -[download] -url = "https://cdn.modrinth.com/data/XD7XOrAF/versions/PYRrjTaY/OverflowingBars-v21.1.1-1.21.1-NeoForge.jar" -hash-format = "sha512" -hash = "2962a12664e24711096d9be98bfda2ae0b86c5050d0860a36b3567870d794767d308328060c6fbe4f4854b569d97ce465b8b250775f3ae7a5d0a563f342a4136" - -[update] -[update.modrinth] -mod-id = "XD7XOrAF" -version = "PYRrjTaY" diff --git a/pkgs/minecraftmon/mods/owo-lib.pw.toml b/pkgs/minecraftmon/mods/owo-lib.pw.toml deleted file mode 100644 index e0124c1..0000000 --- a/pkgs/minecraftmon/mods/owo-lib.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "oωo (owo-lib)" -filename = "owo-lib-neoforge-0.12.15.5-beta.1+1.21.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/ccKDOlHs/versions/NMCHU6DZ/owo-lib-neoforge-0.12.15.5-beta.1%2B1.21.jar" -hash-format = "sha512" -hash = "4de5c5d52139244b8c5260d641087664d992624b822599a32e03c08eb133be854a2f413667dbca1e55772445b04a70210c17b3bc13e3c88e425e7d928104b9fa" - -[update] -[update.modrinth] -mod-id = "ccKDOlHs" -version = "NMCHU6DZ" diff --git a/pkgs/minecraftmon/mods/pick-up-notifier.pw.toml b/pkgs/minecraftmon/mods/pick-up-notifier.pw.toml deleted file mode 100644 index 1a80b55..0000000 --- a/pkgs/minecraftmon/mods/pick-up-notifier.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Pick Up Notifier" -filename = "PickUpNotifier-v21.1.1-1.21.1-NeoForge.jar" -side = "client" - -[download] -url = "https://cdn.modrinth.com/data/ZX66K16c/versions/5NZounJc/PickUpNotifier-v21.1.1-1.21.1-NeoForge.jar" -hash-format = "sha512" -hash = "9754f44f3bf084f45b47c88c3830dc37ffc68b4b5d6cf03ca5015177611068e8c1725670d20c0ed4674fb619227b18ccbff39cfc687a46f5258caf91c96db6db" - -[update] -[update.modrinth] -mod-id = "ZX66K16c" -version = "5NZounJc" diff --git a/pkgs/minecraftmon/mods/platter.pw.toml b/pkgs/minecraftmon/mods/platter.pw.toml deleted file mode 100644 index 83f577b..0000000 --- a/pkgs/minecraftmon/mods/platter.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Platter" -filename = "platter-1.21-1.0.0.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/BFWLOSg1/versions/Q2lrz2We/platter-1.21-1.0.0.jar" -hash-format = "sha512" -hash = "2052024aed030760339cab25067cc2035e9ff5f2d50788577c75f2a07741a6b86da9a374e779f3fb6c314b6d8d0255a5188126779780559ed94100cfefe81c56" - -[update] -[update.modrinth] -mod-id = "BFWLOSg1" -version = "Q2lrz2We" diff --git a/pkgs/minecraftmon/mods/playeranimator.pw.toml b/pkgs/minecraftmon/mods/playeranimator.pw.toml deleted file mode 100644 index 68dd423..0000000 --- a/pkgs/minecraftmon/mods/playeranimator.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "playerAnimator" -filename = "player-animation-lib-forge-2.0.1+1.21.1.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/gedNE4y2/versions/q60QWuOK/player-animation-lib-forge-2.0.1%2B1.21.1.jar" -hash-format = "sha512" -hash = "1b6fdeec973d36fed687d27af05c1ea8467564b21b8f884a0de8cf97e8a8f91d5e7b0cffaa3a687a7341f2357dae8c47e989e2bba44cd3fbb9d90726207f427b" - -[update] -[update.modrinth] -mod-id = "gedNE4y2" -version = "q60QWuOK" diff --git a/pkgs/minecraftmon/mods/prickle.pw.toml b/pkgs/minecraftmon/mods/prickle.pw.toml deleted file mode 100644 index baf3c41..0000000 --- a/pkgs/minecraftmon/mods/prickle.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Prickle" -filename = "prickle-neoforge-1.21.1-21.1.8.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/aaRl8GiW/versions/u5HZtlyZ/prickle-neoforge-1.21.1-21.1.8.jar" -hash-format = "sha512" -hash = "40025298c04099ac3f61f6d3095a03f949e46e6508414372662499f51e1161dcf99563f8ca2f3686755fdceba479da1aa653d247da5ec12a883b31741fcb6aa7" - -[update] -[update.modrinth] -mod-id = "aaRl8GiW" -version = "u5HZtlyZ" diff --git a/pkgs/minecraftmon/mods/puzzles-lib.pw.toml b/pkgs/minecraftmon/mods/puzzles-lib.pw.toml deleted file mode 100644 index ecddc8c..0000000 --- a/pkgs/minecraftmon/mods/puzzles-lib.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Puzzles Lib" -filename = "PuzzlesLib-v21.1.37-1.21.1-NeoForge.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/QAGBst4M/versions/qSpAmWns/PuzzlesLib-v21.1.37-1.21.1-NeoForge.jar" -hash-format = "sha512" -hash = "5320c766e154c629c98d86131c53e717fb32b27e5bde877067cafbeff337fabcd9d7a8d320a8f5a4fb8dfa210118a37fba2d094149deb07e08937111eef78036" - -[update] -[update.modrinth] -mod-id = "QAGBst4M" -version = "qSpAmWns" diff --git a/pkgs/minecraftmon/mods/reeses-sodium-options.pw.toml b/pkgs/minecraftmon/mods/reeses-sodium-options.pw.toml deleted file mode 100644 index 8d69bd9..0000000 --- a/pkgs/minecraftmon/mods/reeses-sodium-options.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Reese's Sodium Options" -filename = "reeses-sodium-options-neoforge-1.8.3+mc1.21.4.jar" -side = "client" - -[download] -url = "https://cdn.modrinth.com/data/Bh37bMuy/versions/xAiCe6w8/reeses-sodium-options-neoforge-1.8.3%2Bmc1.21.4.jar" -hash-format = "sha512" -hash = "d66b5d30e1bb8316cb75d52ba8485c6c1cfb0d03624288f39c1826b92de9da9c3d79351be9d7303ca3226176255921f35063139da118c755cf9a709186129744" - -[update] -[update.modrinth] -mod-id = "Bh37bMuy" -version = "xAiCe6w8" diff --git a/pkgs/minecraftmon/mods/refined-storage-emi-integration.pw.toml b/pkgs/minecraftmon/mods/refined-storage-emi-integration.pw.toml deleted file mode 100644 index 0332f48..0000000 --- a/pkgs/minecraftmon/mods/refined-storage-emi-integration.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Refined Storage - EMI Integration" -filename = "refinedstorage-emi-integration-neoforge-1.0.0.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/TCSDwmbf/versions/zpz6Pcxn/refinedstorage-emi-integration-neoforge-1.0.0.jar" -hash-format = "sha512" -hash = "9e6f4e487c1a1b50e75074b3128a8d27f8dc94260db435aab0efceb41e5c13ca5d1e177d6b78153fa97253408acde0eff3dcb5427c2d28f5ab5fe2c40529e377" - -[update] -[update.modrinth] -mod-id = "TCSDwmbf" -version = "zpz6Pcxn" diff --git a/pkgs/minecraftmon/mods/refined-storage.pw.toml b/pkgs/minecraftmon/mods/refined-storage.pw.toml deleted file mode 100644 index ea5f9c6..0000000 --- a/pkgs/minecraftmon/mods/refined-storage.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Refined Storage" -filename = "refinedstorage-neoforge-2.0.0-beta.7.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/KDvYkUg3/versions/LA7H6hhg/refinedstorage-neoforge-2.0.0-beta.7.jar" -hash-format = "sha512" -hash = "1891eedef79462546107ecbd3f769e013db6faa99f7e73ae06913926785a3c2576ccc010bfa9c94ab8d0f9983c0258670ec4bfae1f610d34dfbba4f74a5d122d" - -[update] -[update.modrinth] -mod-id = "KDvYkUg3" -version = "LA7H6hhg" diff --git a/pkgs/minecraftmon/mods/resource-pack-overrides.pw.toml b/pkgs/minecraftmon/mods/resource-pack-overrides.pw.toml deleted file mode 100644 index 2db74e5..0000000 --- a/pkgs/minecraftmon/mods/resource-pack-overrides.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Resource Pack Overrides" -filename = "ResourcePackOverrides-v21.1.0-1.21.1-NeoForge.jar" -side = "client" - -[download] -url = "https://cdn.modrinth.com/data/YsFycamt/versions/xf3H2eJV/ResourcePackOverrides-v21.1.0-1.21.1-NeoForge.jar" -hash-format = "sha512" -hash = "9a15db96ffc86bc93624392c22c2aaea4ad4a7267c20ff528ff2dd61d8d84b9db611fc24673fba5b5d0bac318b4ce1e9d1725085ce2fad68f4231afa6bbb43c4" - -[update] -[update.modrinth] -mod-id = "YsFycamt" -version = "xf3H2eJV" diff --git a/pkgs/minecraftmon/mods/resourceful-lib.pw.toml b/pkgs/minecraftmon/mods/resourceful-lib.pw.toml deleted file mode 100644 index ab5aa95..0000000 --- a/pkgs/minecraftmon/mods/resourceful-lib.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Resourceful Lib" -filename = "resourcefullib-neoforge-1.21-3.0.12.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/G1hIVOrD/versions/x99nCLTm/resourcefullib-neoforge-1.21-3.0.12.jar" -hash-format = "sha512" -hash = "a9d20e345faa9bcb297bd95ac9524205834804d1bb13518397dd4f7f62b352b08c3339ee7f7870d3669078ceeb33d5c31ea527aecce4b31d62ec1ff7d8b562c8" - -[update] -[update.modrinth] -mod-id = "G1hIVOrD" -version = "x99nCLTm" diff --git a/pkgs/minecraftmon/mods/respawning-animals.pw.toml b/pkgs/minecraftmon/mods/respawning-animals.pw.toml deleted file mode 100644 index bf9c7f8..0000000 --- a/pkgs/minecraftmon/mods/respawning-animals.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Respawning Animals" -filename = "RespawningAnimals-v21.1.1-1.21.1-NeoForge.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/WnwcSeWc/versions/9AQKRTYv/RespawningAnimals-v21.1.1-1.21.1-NeoForge.jar" -hash-format = "sha512" -hash = "5ce56ed8110f4fac4c8e64dedd0f6de2c58ed1d6a35a9dd5e3cb33200362018873dd66203e70b13dd21b0a0e19c35ce3419abe1e3a59eced41d83f74b83a19a2" - -[update] -[update.modrinth] -mod-id = "WnwcSeWc" -version = "9AQKRTYv" diff --git a/pkgs/minecraftmon/mods/rrls.pw.toml b/pkgs/minecraftmon/mods/rrls.pw.toml deleted file mode 100644 index b070bd5..0000000 --- a/pkgs/minecraftmon/mods/rrls.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Remove Reloading Screen" -filename = "rrls-5.0.10+mc1.21.1-forge.jar" -side = "client" - -[download] -url = "https://cdn.modrinth.com/data/ZP7xHXtw/versions/CSHa8VOm/rrls-5.0.10%2Bmc1.21.1-forge.jar" -hash-format = "sha512" -hash = "5a1d6776b2b8769f752a8c60b0f816b05385dfc7c0d27d0b8435bb11825531988e216f108ea7b38fb40ec38796036a6a6421572ec86e1ffd22d3963ba67f019b" - -[update] -[update.modrinth] -mod-id = "ZP7xHXtw" -version = "CSHa8VOm" diff --git a/pkgs/minecraftmon/mods/searchables.pw.toml b/pkgs/minecraftmon/mods/searchables.pw.toml deleted file mode 100644 index fded818..0000000 --- a/pkgs/minecraftmon/mods/searchables.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Searchables" -filename = "Searchables-neoforge-1.21.1-1.0.2.jar" -side = "client" - -[download] -url = "https://cdn.modrinth.com/data/fuuu3xnx/versions/iEE85X0w/Searchables-neoforge-1.21.1-1.0.2.jar" -hash-format = "sha512" -hash = "d0824bac1900142ac9a53e68f7ec3b4c0d33d9366bbd3f1d0d93eed860e5eb6b5e6f5a215a69bfffa70bcb48573ff49b5a12bbaa96096ceac6636000d506027a" - -[update] -[update.modrinth] -mod-id = "fuuu3xnx" -version = "iEE85X0w" diff --git a/pkgs/minecraftmon/mods/silent-gear.pw.toml b/pkgs/minecraftmon/mods/silent-gear.pw.toml deleted file mode 100644 index 7f74924..0000000 --- a/pkgs/minecraftmon/mods/silent-gear.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Silent Gear" -filename = "silent-gear-1.21.1-neoforge-4.0.25.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/73mSSnCf/versions/5QBZXkgM/silent-gear-1.21.1-neoforge-4.0.25.jar" -hash-format = "sha512" -hash = "409ee7ba03e2f36598076492693b96992a9ab0221a2f10b62bc1c638850567d56e2d40590f3e65d553b22309b30574ade744021cc8dd88ae672f37334d22cc70" - -[update] -[update.modrinth] -mod-id = "73mSSnCf" -version = "5QBZXkgM" diff --git a/pkgs/minecraftmon/mods/silent-lib.pw.toml b/pkgs/minecraftmon/mods/silent-lib.pw.toml deleted file mode 100644 index 12ca647..0000000 --- a/pkgs/minecraftmon/mods/silent-lib.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Silent Lib" -filename = "silent-lib-1.21.1-neoforge-10.5.1.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/BQhuHQo4/versions/djmtrwla/silent-lib-1.21.1-neoforge-10.5.1.jar" -hash-format = "sha512" -hash = "c6e2f244940eeef1e251f3bb2e8ce68f749d324848f9b4bf37454a5f5b64d3ea046ccd7b7dc53f781e0b567e9f7149afc4cc6502c3e7bb7cc8513e3cfac24c67" - -[update] -[update.modrinth] -mod-id = "BQhuHQo4" -version = "djmtrwla" diff --git a/pkgs/minecraftmon/mods/simpletms-tms-and-trs-for-cobblemon.pw.toml b/pkgs/minecraftmon/mods/simpletms-tms-and-trs-for-cobblemon.pw.toml deleted file mode 100644 index e40f858..0000000 --- a/pkgs/minecraftmon/mods/simpletms-tms-and-trs-for-cobblemon.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "SimpleTMs: TMs and TRs for Cobblemon" -filename = "SimpleTMs-neoforge-2.1.2.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/yFqR0DNc/versions/SiplD8Nd/SimpleTMs-neoforge-2.1.2.jar" -hash-format = "sha512" -hash = "902156fd009d808d11e1b9a2e73fa8891440a17e0b305fdcfdc988ec96c270b82cc79a54b13c2ccf2df8dd43f96e020389668a68b4c324cd5ce1e72b5f2b1ce9" - -[update] -[update.modrinth] -mod-id = "yFqR0DNc" -version = "SiplD8Nd" diff --git a/pkgs/minecraftmon/mods/snow-real-magic.pw.toml b/pkgs/minecraftmon/mods/snow-real-magic.pw.toml deleted file mode 100644 index d00d566..0000000 --- a/pkgs/minecraftmon/mods/snow-real-magic.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Snow! Real Magic! ⛄" -filename = "SnowRealMagic-1.21.1-NeoForge-12.1.2.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/iJNje1E8/versions/bRJ7ymMR/SnowRealMagic-1.21.1-NeoForge-12.1.2.jar" -hash-format = "sha512" -hash = "f575a67758e225ac8cc98fc34ea54b7ee5b98da8e950ca6c9f60ca9da58b1004889de44b534fd7abb1de4facc7cd280a0f101c7f5a424735c78a7b741d370957" - -[update] -[update.modrinth] -mod-id = "iJNje1E8" -version = "bRJ7ymMR" diff --git a/pkgs/minecraftmon/mods/snow-under-trees.pw.toml b/pkgs/minecraftmon/mods/snow-under-trees.pw.toml deleted file mode 100644 index 418aa47..0000000 --- a/pkgs/minecraftmon/mods/snow-under-trees.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Snow Under Trees" -filename = "snowundertrees-1.21.1-1.5.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/Q3vyMuj2/versions/rtNRLZvR/snowundertrees-1.21.1-1.5.jar" -hash-format = "sha512" -hash = "9babd0bbc70f513ad9f00f62c7cdb1c078f251a1b3818ec90160189762672d0c57de5fff6aea235dcf9cc570784f2f0540aac7986917612d0f5d0f968ff54f53" - -[update] -[update.modrinth] -mod-id = "Q3vyMuj2" -version = "rtNRLZvR" diff --git a/pkgs/minecraftmon/mods/sodium-dynamic-lights.pw.toml b/pkgs/minecraftmon/mods/sodium-dynamic-lights.pw.toml deleted file mode 100644 index 4a5c7aa..0000000 --- a/pkgs/minecraftmon/mods/sodium-dynamic-lights.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Sodium Dynamic Lights" -filename = "sodiumdynamiclights-neoforge-1.0.10-1.21.1.jar" -side = "client" - -[download] -url = "https://cdn.modrinth.com/data/PxQSWIcD/versions/XI0WLXdn/sodiumdynamiclights-neoforge-1.0.10-1.21.1.jar" -hash-format = "sha512" -hash = "ec19a81cf2dfde255990a457d8f6d7375df53cb94190dce71c4bfe5d5263f4862027ce4aa0af20cb11d56c7c031d5e149b3bdf95bec6343e5bd4552450b14c0a" - -[update] -[update.modrinth] -mod-id = "PxQSWIcD" -version = "XI0WLXdn" diff --git a/pkgs/minecraftmon/mods/sodium-extra.pw.toml b/pkgs/minecraftmon/mods/sodium-extra.pw.toml deleted file mode 100644 index 5004f97..0000000 --- a/pkgs/minecraftmon/mods/sodium-extra.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Sodium Extra" -filename = "sodium-extra-neoforge-0.6.0+mc1.21.1.jar" -side = "client" - -[download] -url = "https://cdn.modrinth.com/data/PtjYWJkn/versions/pFmw1eci/sodium-extra-neoforge-0.6.0%2Bmc1.21.1.jar" -hash-format = "sha512" -hash = "6f7383ef3f4b572c76d3371a7441bc3d625db9d404cf61b249fab018bc3ffd1fa82e735ec21916df3f4072f0927dad3673efbc40bf8d11846c3d6fecc9329bb7" - -[update] -[update.modrinth] -mod-id = "PtjYWJkn" -version = "pFmw1eci" diff --git a/pkgs/minecraftmon/mods/sodium-extras.pw.toml b/pkgs/minecraftmon/mods/sodium-extras.pw.toml deleted file mode 100644 index aaec9e7..0000000 --- a/pkgs/minecraftmon/mods/sodium-extras.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Sodium Extras" -filename = "sodiumextras-neoforge-1.0.8-1.21.1.jar" -side = "client" - -[download] -url = "https://cdn.modrinth.com/data/vqqx0QiE/versions/qDEGbszS/sodiumextras-neoforge-1.0.8-1.21.1.jar" -hash-format = "sha512" -hash = "1bab2a7651b628a04066ce5221cd2df9bbbd8811da41a1f1c30c367b0a92bd5b42c5c13c9c45b961330d156836f367daf6225c72ba4f6acc7e42e9b44df3f419" - -[update] -[update.modrinth] -mod-id = "vqqx0QiE" -version = "qDEGbszS" diff --git a/pkgs/minecraftmon/mods/sodium-options-api.pw.toml b/pkgs/minecraftmon/mods/sodium-options-api.pw.toml deleted file mode 100644 index b034e9e..0000000 --- a/pkgs/minecraftmon/mods/sodium-options-api.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Sodium Options API" -filename = "sodiumoptionsapi-neoforge-1.0.10-1.21.1.jar" -side = "client" - -[download] -url = "https://cdn.modrinth.com/data/Es5v4eyq/versions/lrsX3TMS/sodiumoptionsapi-neoforge-1.0.10-1.21.1.jar" -hash-format = "sha512" -hash = "f2f022183f300961d7d0503461daa59e3e606c32f189f1cb3307edaf765986c541929205b7bf6f40c4c88319696e9d863c1bf711bd441dc9b7081c198ddb445b" - -[update] -[update.modrinth] -mod-id = "Es5v4eyq" -version = "lrsX3TMS" diff --git a/pkgs/minecraftmon/mods/sodium.pw.toml b/pkgs/minecraftmon/mods/sodium.pw.toml deleted file mode 100644 index b2530b8..0000000 --- a/pkgs/minecraftmon/mods/sodium.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Sodium" -filename = "sodium-neoforge-0.6.13+mc1.21.1.jar" -side = "client" - -[download] -url = "https://cdn.modrinth.com/data/AANobbMI/versions/Pb3OXVqC/sodium-neoforge-0.6.13%2Bmc1.21.1.jar" -hash-format = "sha512" -hash = "ce58f34d05d96c0a109a5cea23c741f6bdb2e6be31fc087c5989274cefca5f10ba0c08c62083cf554a51f2c7667bf46e4164383f675c844e77633aef2659996b" - -[update] -[update.modrinth] -mod-id = "AANobbMI" -version = "Pb3OXVqC" diff --git a/pkgs/minecraftmon/mods/sophisticated-backpacks.pw.toml b/pkgs/minecraftmon/mods/sophisticated-backpacks.pw.toml deleted file mode 100644 index 733ddf2..0000000 --- a/pkgs/minecraftmon/mods/sophisticated-backpacks.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Sophisticated Backpacks" -filename = "sophisticatedbackpacks-1.21.1-3.24.19.1292.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/TyCTlI4b/versions/lRnJUyr8/sophisticatedbackpacks-1.21.1-3.24.19.1292.jar" -hash-format = "sha512" -hash = "225fbf47520959757891750706c65b3e39f03f1d825c182b13b91bb4f7fcb9d4b373d3e37fe02d7fd0601f4e5513f27c607cdfb23cb7a6758447c5f3b4d0b5dc" - -[update] -[update.modrinth] -mod-id = "TyCTlI4b" -version = "lRnJUyr8" diff --git a/pkgs/minecraftmon/mods/sophisticated-core.pw.toml b/pkgs/minecraftmon/mods/sophisticated-core.pw.toml deleted file mode 100644 index b88c464..0000000 --- a/pkgs/minecraftmon/mods/sophisticated-core.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Sophisticated Core" -filename = "sophisticatedcore-1.21.1-1.3.61.1070.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/nmoqTijg/versions/BKXo0SiM/sophisticatedcore-1.21.1-1.3.61.1070.jar" -hash-format = "sha512" -hash = "25885aa646c0d9a99d757fc4894a39d992361d659da0cc028ca1744b8d43016c3eb3a9223574d0176d7f1c17f4384477e2804a22ea6036d54aa77feff92afa20" - -[update] -[update.modrinth] -mod-id = "nmoqTijg" -version = "BKXo0SiM" diff --git a/pkgs/minecraftmon/mods/sophisticated-storage-create-integration.pw.toml b/pkgs/minecraftmon/mods/sophisticated-storage-create-integration.pw.toml deleted file mode 100644 index 9e10c1d..0000000 --- a/pkgs/minecraftmon/mods/sophisticated-storage-create-integration.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Sophisticated Storage Create Integration" -filename = "sophisticatedstoragecreateintegration-1.21.1-0.1.11.37.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/MJ0hdevs/versions/OYSeWrSs/sophisticatedstoragecreateintegration-1.21.1-0.1.11.37.jar" -hash-format = "sha512" -hash = "457467bd3a0b67ed0aba8027c688278b209748727b0847b49fb119eea7787cea4da4fea3f5686d5580c0b469131302b9d54846e75e2152e0eab09b6ee9f327be" - -[update] -[update.modrinth] -mod-id = "MJ0hdevs" -version = "OYSeWrSs" diff --git a/pkgs/minecraftmon/mods/sophisticated-storage.pw.toml b/pkgs/minecraftmon/mods/sophisticated-storage.pw.toml deleted file mode 100644 index 4cfe6c7..0000000 --- a/pkgs/minecraftmon/mods/sophisticated-storage.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Sophisticated Storage" -filename = "sophisticatedstorage-1.21.1-1.4.46.1216.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/hMlaZH8f/versions/lqwfnUyS/sophisticatedstorage-1.21.1-1.4.46.1216.jar" -hash-format = "sha512" -hash = "20081ca7df31f06781747e72c16e56a9b738a4511d15ed30bb9877d9c7d2cd34bb061ef7258689dac7c5819b89255d81afebecd00f8a0d60f5e6039e6cc0f71f" - -[update] -[update.modrinth] -mod-id = "hMlaZH8f" -version = "lqwfnUyS" diff --git a/pkgs/minecraftmon/mods/spice-of-life-onion.pw.toml b/pkgs/minecraftmon/mods/spice-of-life-onion.pw.toml deleted file mode 100644 index 34dd437..0000000 --- a/pkgs/minecraftmon/mods/spice-of-life-onion.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Spice of Life Onion" -filename = "Spice of Life Onion_NEOFORGE_v1.5.0_mc1.21.1.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/eHGYGKJz/versions/pe8GOHZh/Spice%20of%20Life%20Onion_NEOFORGE_v1.5.0_mc1.21.1.jar" -hash-format = "sha512" -hash = "d42f489caa0142266839ba5ecece697aa2ba2718a5f6f0bb1533799bcb6b4f33dcce11b358e2ffeef4833f069d013bb5f31d70dbe3cd3fda4893c923a9291505" - -[update] -[update.modrinth] -mod-id = "eHGYGKJz" -version = "pe8GOHZh" diff --git a/pkgs/minecraftmon/mods/storage-delight.pw.toml b/pkgs/minecraftmon/mods/storage-delight.pw.toml deleted file mode 100644 index 2e379b6..0000000 --- a/pkgs/minecraftmon/mods/storage-delight.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Storage Delight" -filename = "storagedelight-25.06.24-1.21-neoforge.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/LTTvOp5L/versions/FMxmvSzX/storagedelight-25.06.24-1.21-neoforge.jar" -hash-format = "sha512" -hash = "9d533883378f701c8501cb7b0a5fb0269733311e052d2ea2d90d9cd6a21d7bb37aba324094c39f04cfed57f64feb3f7174edea0c73d0b72950ca5fdd82a161f5" - -[update] -[update.modrinth] -mod-id = "LTTvOp5L" -version = "FMxmvSzX" diff --git a/pkgs/minecraftmon/mods/stylish-effects.pw.toml b/pkgs/minecraftmon/mods/stylish-effects.pw.toml deleted file mode 100644 index 91de54d..0000000 --- a/pkgs/minecraftmon/mods/stylish-effects.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Stylish Effects" -filename = "StylishEffects-v21.1.1-1.21.1-NeoForge.jar" -side = "client" - -[download] -url = "https://cdn.modrinth.com/data/onDuQF5e/versions/35SKbZ6h/StylishEffects-v21.1.1-1.21.1-NeoForge.jar" -hash-format = "sha512" -hash = "d6e7f5104e9635d42ba759ddccb9544d3897be0ddb9354990d0697950dd42cb4dbeb57dcef5c452b6decd977f0a91365d3cf1590d18fefc0cb0092e05b5d6662" - -[update] -[update.modrinth] -mod-id = "onDuQF5e" -version = "35SKbZ6h" diff --git a/pkgs/minecraftmon/mods/subtle-effects.pw.toml b/pkgs/minecraftmon/mods/subtle-effects.pw.toml deleted file mode 100644 index 0f99bc8..0000000 --- a/pkgs/minecraftmon/mods/subtle-effects.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Subtle Effects" -filename = "SubtleEffects-neoforge-1.21.1-1.12.0.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/4q8UOK1d/versions/ptGRGthk/SubtleEffects-neoforge-1.21.1-1.12.0.jar" -hash-format = "sha512" -hash = "1da957562815a1ab8efd66daa7ac5a29fc72d1e763eebe1cb6d6ecaeecd84ae409b448e4a80ff6ca4375412ac1b9e89a54f95a4db14249313d1b39a4720e5c92" - -[update] -[update.modrinth] -mod-id = "4q8UOK1d" -version = "ptGRGthk" diff --git a/pkgs/minecraftmon/mods/tax-free-levels.pw.toml b/pkgs/minecraftmon/mods/tax-free-levels.pw.toml deleted file mode 100644 index a777775..0000000 --- a/pkgs/minecraftmon/mods/tax-free-levels.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Tax Free Levels" -filename = "TaxFreeLevels-1.4.7-neoforge-1.21.1.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/jCBrrLTs/versions/eD8qmM43/TaxFreeLevels-1.4.7-neoforge-1.21.1.jar" -hash-format = "sha512" -hash = "f02e7c8ba0aacca9a04db0861fb61e3940cba767a77fea347f65f86fd9443a52cfee85d96678bdf2cb935970eb98c8573673d03b1263e0b6f6bcdfbd9ecc39b5" - -[update] -[update.modrinth] -mod-id = "jCBrrLTs" -version = "eD8qmM43" diff --git a/pkgs/minecraftmon/mods/tectonic.pw.toml b/pkgs/minecraftmon/mods/tectonic.pw.toml deleted file mode 100644 index 6245ad1..0000000 --- a/pkgs/minecraftmon/mods/tectonic.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Tectonic" -filename = "tectonic-3.0.5-neoforge-1.21.1.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/lWDHr9jE/versions/fQ85u6Yv/tectonic-3.0.5-neoforge-1.21.1.jar" -hash-format = "sha512" -hash = "2b8d687e53620bae3260f45709b1f1589c485e122005ce623e7a3cf90193d17a5094700095bf5900cc3e65c69b6d84815396d62133b07a6fbd4b835a4bf6e122" - -[update] -[update.modrinth] -mod-id = "lWDHr9jE" -version = "fQ85u6Yv" diff --git a/pkgs/minecraftmon/mods/terralith.pw.toml b/pkgs/minecraftmon/mods/terralith.pw.toml deleted file mode 100644 index b662da4..0000000 --- a/pkgs/minecraftmon/mods/terralith.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Terralith" -filename = "Terralith_1.21.x_v2.5.8.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/8oi3bsk5/versions/MuJMtPGQ/Terralith_1.21.x_v2.5.8.jar" -hash-format = "sha512" -hash = "f862ed5435ce4c11a97d2ea5c40eee9f817c908f3223b5fd3e3fff0562a55111d7429dc73a2f1ca0b1af7b1ff6fa0470ed6efebb5de13336c40bb70fb357dd60" - -[update] -[update.modrinth] -mod-id = "8oi3bsk5" -version = "MuJMtPGQ" diff --git a/pkgs/minecraftmon/mods/tidal-towns.pw.toml b/pkgs/minecraftmon/mods/tidal-towns.pw.toml deleted file mode 100644 index af8b9a1..0000000 --- a/pkgs/minecraftmon/mods/tidal-towns.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Tidal Towns" -filename = "tidal-towns-1.3.4.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/EEIwvQVo/versions/xWUN0cml/tidal-towns-1.3.4.jar" -hash-format = "sha512" -hash = "f40954849ed782fe262505c859bfee749eab57a2963d10d5e0b95b5eb1b1835729a98e76e7995f6ecfeba60141448203d3e0f36b1ae9f69db75aceff7175b607" - -[update] -[update.modrinth] -mod-id = "EEIwvQVo" -version = "xWUN0cml" diff --git a/pkgs/minecraftmon/mods/wall-jump-txf.pw.toml b/pkgs/minecraftmon/mods/wall-jump-txf.pw.toml deleted file mode 100644 index 36eb2e1..0000000 --- a/pkgs/minecraftmon/mods/wall-jump-txf.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Wall-Jump TXF" -filename = "walljump-1.21.1-1.3.5-neoforge.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/oUoetxfR/versions/IiZ17Hgu/walljump-1.21.1-1.3.5-neoforge.jar" -hash-format = "sha512" -hash = "4ff0c15d033d2aeb9a8338adc49349a22fb25f04a0713035851312ee451eed0d14444f7bf4241af721c31b3426738624aa53e4c0b1afa7f92832da3a9e1c94af" - -[update] -[update.modrinth] -mod-id = "oUoetxfR" -version = "IiZ17Hgu" diff --git a/pkgs/minecraftmon/mods/yacl.pw.toml b/pkgs/minecraftmon/mods/yacl.pw.toml deleted file mode 100644 index 195ebc5..0000000 --- a/pkgs/minecraftmon/mods/yacl.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "YetAnotherConfigLib (YACL)" -filename = "yet_another_config_lib_v3-3.7.1+1.21.1-neoforge.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/1eAoo2KR/versions/zwRKksBU/yet_another_config_lib_v3-3.7.1%2B1.21.1-neoforge.jar" -hash-format = "sha512" -hash = "bd0bbbc8563117bc817b0d40ee345928713ac93976e34e4947472e57d3c6bad307cb56881e6772c3712cf3afed9577604c100fa9ccf22255896b703f44ec003b" - -[update] -[update.modrinth] -mod-id = "1eAoo2KR" -version = "zwRKksBU" diff --git a/pkgs/minecraftmon/mods/yeetus-experimentus.pw.toml b/pkgs/minecraftmon/mods/yeetus-experimentus.pw.toml deleted file mode 100644 index ef0f5df..0000000 --- a/pkgs/minecraftmon/mods/yeetus-experimentus.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Yeetus Experimentus" -filename = "yeetusexperimentus-neoforge-87.0.0.jar" -side = "client" - -[download] -url = "https://cdn.modrinth.com/data/HaaH232J/versions/Pp0TjcvD/yeetusexperimentus-neoforge-87.0.0.jar" -hash-format = "sha512" -hash = "cc2dc46dcaa0424c820cb7931fd2ceb3826669934189c011fd1ebd5692cdf7652c725034abec2828bfea2238c9615d6f9c36e3e01e21fc9eb44551eb51e06fe3" - -[update] -[update.modrinth] -mod-id = "HaaH232J" -version = "Pp0TjcvD" diff --git a/pkgs/minecraftmon/mods/yungs-api.pw.toml b/pkgs/minecraftmon/mods/yungs-api.pw.toml deleted file mode 100644 index 113a482..0000000 --- a/pkgs/minecraftmon/mods/yungs-api.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "YUNG's API" -filename = "YungsApi-1.21.1-NeoForge-5.1.6.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/Ua7DFN59/versions/ZB22DE9q/YungsApi-1.21.1-NeoForge-5.1.6.jar" -hash-format = "sha512" -hash = "5f36d5166a67a156df52699071f20219bc2320b3c4fbcd9dac38631f66136f034e3219ac89ff4bfb6e26e4c68513a94c833797f2e5ed5bf58cfa1531eeed162d" - -[update] -[update.modrinth] -mod-id = "Ua7DFN59" -version = "ZB22DE9q" diff --git a/pkgs/minecraftmon/mods/yungs-better-desert-temples.pw.toml b/pkgs/minecraftmon/mods/yungs-better-desert-temples.pw.toml deleted file mode 100644 index 56de381..0000000 --- a/pkgs/minecraftmon/mods/yungs-better-desert-temples.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "YUNG's Better Desert Temples" -filename = "YungsBetterDesertTemples-1.21.1-NeoForge-4.1.5.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/XNlO7sBv/versions/GQ9iNWkI/YungsBetterDesertTemples-1.21.1-NeoForge-4.1.5.jar" -hash-format = "sha512" -hash = "6454c955f75f66104810e967a59ae032ddf1ccc5a854346af6bfba6e44cd456e755cd8feb1e0968be4e9132ea6c5d1cb2126fe5e85d3eb18c8d3ea3c81ffdf9a" - -[update] -[update.modrinth] -mod-id = "XNlO7sBv" -version = "GQ9iNWkI" diff --git a/pkgs/minecraftmon/mods/yungs-better-dungeons.pw.toml b/pkgs/minecraftmon/mods/yungs-better-dungeons.pw.toml deleted file mode 100644 index a649aba..0000000 --- a/pkgs/minecraftmon/mods/yungs-better-dungeons.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "YUNG's Better Dungeons" -filename = "YungsBetterDungeons-1.21.1-NeoForge-5.1.4.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/o1C1Dkj5/versions/D6aZn0Em/YungsBetterDungeons-1.21.1-NeoForge-5.1.4.jar" -hash-format = "sha512" -hash = "40513bacd13fa9860abcab507b1fc09dc51649af4b615ce466e0ec361557f02d35e6e44bea1cc17cb4120805f862aad01394eb185f46611e7be63dfd97f272df" - -[update] -[update.modrinth] -mod-id = "o1C1Dkj5" -version = "D6aZn0Em" diff --git a/pkgs/minecraftmon/mods/yungs-better-end-island.pw.toml b/pkgs/minecraftmon/mods/yungs-better-end-island.pw.toml deleted file mode 100644 index d795854..0000000 --- a/pkgs/minecraftmon/mods/yungs-better-end-island.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "YUNG's Better End Island" -filename = "YungsBetterEndIsland-1.21.1-NeoForge-3.1.2.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/2BwBOmBQ/versions/I52NZ1qK/YungsBetterEndIsland-1.21.1-NeoForge-3.1.2.jar" -hash-format = "sha512" -hash = "02923a1a97eb81ec13d69bdc6b7e8b36dfb9e6f1a98adfcf103707ec3afde35831ccd4b210e9b3a9c7662541c38ea593a3d94c12171b4072ea7feafa75c95f96" - -[update] -[update.modrinth] -mod-id = "2BwBOmBQ" -version = "I52NZ1qK" diff --git a/pkgs/minecraftmon/mods/yungs-better-jungle-temples.pw.toml b/pkgs/minecraftmon/mods/yungs-better-jungle-temples.pw.toml deleted file mode 100644 index 70743ab..0000000 --- a/pkgs/minecraftmon/mods/yungs-better-jungle-temples.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "YUNG's Better Jungle Temples" -filename = "YungsBetterJungleTemples-1.21.1-NeoForge-3.1.2.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/z9Ve58Ih/versions/P00i2hJn/YungsBetterJungleTemples-1.21.1-NeoForge-3.1.2.jar" -hash-format = "sha512" -hash = "eca4233e874a55886c63d2111b8685d479771d3627bad2922582e65b78c51ba74733dc4624aabf91f2a2178a940a72d9209ae33eef74e34f84f07d62256709d9" - -[update] -[update.modrinth] -mod-id = "z9Ve58Ih" -version = "P00i2hJn" diff --git a/pkgs/minecraftmon/mods/yungs-better-mineshafts.pw.toml b/pkgs/minecraftmon/mods/yungs-better-mineshafts.pw.toml deleted file mode 100644 index 59cf262..0000000 --- a/pkgs/minecraftmon/mods/yungs-better-mineshafts.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "YUNG's Better Mineshafts" -filename = "YungsBetterMineshafts-1.21.1-NeoForge-5.1.1.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/HjmxVlSr/versions/Go3nbneL/YungsBetterMineshafts-1.21.1-NeoForge-5.1.1.jar" -hash-format = "sha512" -hash = "8b01b386f53feeaa55f0c62697578b82e00501e45e428b2a68df6bda34efb6a4b3b4e3582abf13fe767ebcb61aef9368186f53c03999958bef38f31c41a7f8b2" - -[update] -[update.modrinth] -mod-id = "HjmxVlSr" -version = "Go3nbneL" diff --git a/pkgs/minecraftmon/mods/yungs-better-nether-fortresses.pw.toml b/pkgs/minecraftmon/mods/yungs-better-nether-fortresses.pw.toml deleted file mode 100644 index 9daa847..0000000 --- a/pkgs/minecraftmon/mods/yungs-better-nether-fortresses.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "YUNG's Better Nether Fortresses" -filename = "YungsBetterNetherFortresses-1.21.1-NeoForge-3.1.5.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/Z2mXHnxP/versions/iopJiJQp/YungsBetterNetherFortresses-1.21.1-NeoForge-3.1.5.jar" -hash-format = "sha512" -hash = "18b461298d3df1215fa3b4d2c0cb2ef1c7ed76701d8a0bb140277b21923e31abd939f0fd9b400c5bd676d739f1cda31c43b4dc753f9187251542223f3424d336" - -[update] -[update.modrinth] -mod-id = "Z2mXHnxP" -version = "iopJiJQp" diff --git a/pkgs/minecraftmon/mods/yungs-better-ocean-monuments.pw.toml b/pkgs/minecraftmon/mods/yungs-better-ocean-monuments.pw.toml deleted file mode 100644 index 009b0ce..0000000 --- a/pkgs/minecraftmon/mods/yungs-better-ocean-monuments.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "YUNG's Better Ocean Monuments" -filename = "YungsBetterOceanMonuments-1.21.1-NeoForge-4.1.2.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/3dT9sgt4/versions/yFjEcj2g/YungsBetterOceanMonuments-1.21.1-NeoForge-4.1.2.jar" -hash-format = "sha512" -hash = "77c864da36f1d2173e6460dc335996893a804954b8a5c274173fc95dfdbf437e80d9dce32f6060306a662fc35322566eecf5dfe24e2d3fab79bf7e0ff9fa4db6" - -[update] -[update.modrinth] -mod-id = "3dT9sgt4" -version = "yFjEcj2g" diff --git a/pkgs/minecraftmon/mods/yungs-better-strongholds.pw.toml b/pkgs/minecraftmon/mods/yungs-better-strongholds.pw.toml deleted file mode 100644 index 444c38b..0000000 --- a/pkgs/minecraftmon/mods/yungs-better-strongholds.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "YUNG's Better Strongholds" -filename = "YungsBetterStrongholds-1.21.1-NeoForge-5.1.3.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/kidLKymU/versions/8U0dIfSM/YungsBetterStrongholds-1.21.1-NeoForge-5.1.3.jar" -hash-format = "sha512" -hash = "385d67e07f2c67af5ea387d92d92949d8f671e8f99204457b6396dbe987ac3b14c2bff765df5fcbaa68016604f82a1fc6ec5a69c012ca22ad088d1a7c9bc135d" - -[update] -[update.modrinth] -mod-id = "kidLKymU" -version = "8U0dIfSM" diff --git a/pkgs/minecraftmon/mods/yungs-better-witch-huts.pw.toml b/pkgs/minecraftmon/mods/yungs-better-witch-huts.pw.toml deleted file mode 100644 index 707ab19..0000000 --- a/pkgs/minecraftmon/mods/yungs-better-witch-huts.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "YUNG's Better Witch Huts" -filename = "YungsBetterWitchHuts-1.21.1-NeoForge-4.1.1.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/t5FRdP87/versions/AvedwcIe/YungsBetterWitchHuts-1.21.1-NeoForge-4.1.1.jar" -hash-format = "sha512" -hash = "9baa8a1f36a2a36efc3df58ab9347fd9f326b551ad78e3f600ed9d68862c619752ac0770804807efb15a46fcb4d9f6e2baf6a11f622d3ebb6c865662f6c7bcfd" - -[update] -[update.modrinth] -mod-id = "t5FRdP87" -version = "AvedwcIe" diff --git a/pkgs/minecraftmon/mods/yungs-bridges.pw.toml b/pkgs/minecraftmon/mods/yungs-bridges.pw.toml deleted file mode 100644 index 55e0414..0000000 --- a/pkgs/minecraftmon/mods/yungs-bridges.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "YUNG's Bridges" -filename = "YungsBridges-1.21.1-NeoForge-5.1.1.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/Ht4BfYp6/versions/urkCzBf6/YungsBridges-1.21.1-NeoForge-5.1.1.jar" -hash-format = "sha512" -hash = "20b07ae4c08974980f976bcae32f18ccb885745d6cd50d4a5d0156eb5c51c29e49f8b2bf7dc2ae160d39b62f2332513bd9850efc5cba13697e36a2ac2848bc3b" - -[update] -[update.modrinth] -mod-id = "Ht4BfYp6" -version = "urkCzBf6" diff --git a/pkgs/minecraftmon/mods/yungs-extras.pw.toml b/pkgs/minecraftmon/mods/yungs-extras.pw.toml deleted file mode 100644 index bc9a150..0000000 --- a/pkgs/minecraftmon/mods/yungs-extras.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "YUNG's Extras" -filename = "YungsExtras-1.21.1-NeoForge-5.1.1.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/ZYgyPyfq/versions/N2EpMhR7/YungsExtras-1.21.1-NeoForge-5.1.1.jar" -hash-format = "sha512" -hash = "d4ef831a034977abdcaec40a7662adbc37c32cf141c68245250da501f6ada2ce193c5351166fbcf2ffb1c452b60bfca8ac578963332aa4a1b523e43912b8cb8c" - -[update] -[update.modrinth] -mod-id = "ZYgyPyfq" -version = "N2EpMhR7" diff --git a/pkgs/minecraftmon/pack.toml b/pkgs/minecraftmon/pack.toml deleted file mode 100644 index 4149443..0000000 --- a/pkgs/minecraftmon/pack.toml +++ /dev/null @@ -1,15 +0,0 @@ -name = "Bidoof and Friends" -version = "2.0.0" -pack-format = "packwiz:1.1.0" - -[index] -file = "index.toml" -hash-format = "sha256" -hash = "a35901970241b054b4f6c1bab49f62728506f2be2cdd60ef0c26b2f9db672d6f" - -[versions] -minecraft = "1.21.1" -neoforge = "21.1.186" - -[options] -datapack-folder = "config/openloader/data" diff --git a/pkgs/minecraftmon/pack.zip b/pkgs/minecraftmon/pack.zip deleted file mode 100644 index 731e212..0000000 Binary files a/pkgs/minecraftmon/pack.zip and /dev/null differ diff --git a/pkgs/minecraftmon/shaderpacks/complementary-reimagined.pw.toml b/pkgs/minecraftmon/shaderpacks/complementary-reimagined.pw.toml deleted file mode 100644 index 8ba6ae5..0000000 --- a/pkgs/minecraftmon/shaderpacks/complementary-reimagined.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Complementary Shaders - Reimagined" -filename = "ComplementaryReimagined_r5.5.1.zip" -side = "client" - -[download] -url = "https://cdn.modrinth.com/data/HVnmMxH1/versions/sAAjYvFB/ComplementaryReimagined_r5.5.1.zip" -hash-format = "sha512" -hash = "e3168c3e8b9a59e70dbc7dd27931d8b245e5b16b093c87f1dccd01edc3a8be0fb14153fe8175e822ea6463ac0d715de377d186455580915c6f9d98c02b39194f" - -[update] -[update.modrinth] -mod-id = "HVnmMxH1" -version = "sAAjYvFB"