├── .gitignore ├── LICENSE ├── README.md ├── build_pack.py ├── logo ├── logo.ai └── logo.png └── pack ├── .packwizignore ├── config └── yosbr │ ├── config │ ├── betterf3.json │ ├── blur.json │ ├── capes.json5 │ ├── citresewn.json │ ├── custom-hud │ │ ├── config.json │ │ └── profile1.txt │ ├── dark-loading-screen.json │ ├── debugify.json │ ├── dynamicfps.toml │ ├── fallingleaves.json │ ├── firstperson.json │ ├── iris.properties │ ├── isxander-main-menu-credits.json │ ├── lambdynlights.toml │ ├── modmenu.json │ ├── moreculling.toml │ ├── shulkerboxtooltip.json5 │ ├── sodium-extra-options.json │ ├── sodium-options.json │ └── textile_backup.json5 │ └── options.txt ├── datapacks ├── amplified_nether.pw.toml ├── blazeandcaves-advancements-pack-hardcore-version.pw.toml ├── blazeandcaves-advancements-pack.pw.toml ├── nullscape.pw.toml └── terralith.pw.toml ├── icon.png ├── index.toml ├── mods ├── achievetodo.pw.toml ├── advancementsfullscreen.pw.toml ├── advancementssearch.pw.toml ├── betterf3.pw.toml ├── blur-plus.pw.toml ├── c2me-fabric.pw.toml! ├── capes.pw.toml ├── cloth-config.pw.toml ├── continuity.pw.toml! ├── cursorcentered-fix.pw.toml ├── customhud.pw.toml ├── dark-loading-screen.pw.toml ├── dcwa.pw.toml ├── debugify.pw.toml ├── dynamic-fps.pw.toml ├── ebe.pw.toml! ├── entityculling.pw.toml ├── fabric-api.pw.toml ├── fabric-language-kotlin.pw.toml ├── fabricskyboxes.pw.toml! ├── fallingleaves.pw.toml ├── ferrite-core.pw.toml ├── fixbookgui.pw.toml ├── forge-config-api-port.pw.toml! ├── iris.pw.toml ├── krypton.pw.toml ├── lambdynamiclights.pw.toml ├── language-reload.pw.toml ├── libjf.pw.toml ├── lithium.pw.toml ├── main-menu-credits.pw.toml ├── mc+264204-fix.pw.toml ├── modelfix.pw.toml ├── modmenu.pw.toml ├── moreculling.pw.toml ├── multilineactionbar.pw.toml ├── no-resource-pack-warnings.pw.toml ├── real-arrow-tip.pw.toml! ├── reeses-sodium-options.pw.toml! ├── respackopts.pw.toml ├── rrls.pw.toml! ├── screenshot-to-clipboard.pw.toml ├── shulkerboxtooltip.pw.toml ├── shutupdeadentities.pw.toml ├── sodium-extra.pw.toml ├── sodium.pw.toml ├── textile-backup.pw.toml! ├── xyzbook.pw.toml ├── yacl.pw.toml ├── yosbr.pw.toml └── zoomify.pw.toml ├── pack.toml ├── resourcepacks ├── Better Waxed Copper.zip ├── Visual Fish Buckets.zip ├── Visual Goat Horns.zip ├── bacap-better-ru.pw.toml ├── bacap-language-pack.pw.toml ├── centered-crosshair-fix.pw.toml ├── centered-stone-bricks.pw.toml ├── colorful-sheared-sheep.pw.toml ├── ctm-overhaul.pw.toml! ├── default-dark-mode.pw.toml ├── fast-better-grass.pw.toml ├── fixed-barrel.pw.toml ├── hardcore-absorption-fix.pw.toml ├── map-marking-fix.pw.toml ├── minimal-rain.pw.toml ├── nether-bricks-fix.pw.toml ├── no-z-fighting.pw.toml ├── translations-for-sodium.pw.toml ├── trap-door-fix.pw.toml ├── unique-enchanted-books.pw.toml └── yetanotherglint.pw.toml └── shaderpacks ├── bsl-shaders.pw.toml ├── complementary-reimagined.pw.toml └── complementary-unbound.pw.toml /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | /pack/*.mrpack 3 | /pack/mods/*.jar 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Attribution-NonCommercial 4.0 International 2 | 3 | ======================================================================= 4 | 5 | Creative Commons Corporation ("Creative Commons") is not a law firm and 6 | does not provide legal services or legal advice. Distribution of 7 | Creative Commons public licenses does not create a lawyer-client or 8 | other relationship. Creative Commons makes its licenses and related 9 | information available on an "as-is" basis. Creative Commons gives no 10 | warranties regarding its licenses, any material licensed under their 11 | terms and conditions, or any related information. Creative Commons 12 | disclaims all liability for damages resulting from their use to the 13 | fullest extent possible. 14 | 15 | Using Creative Commons Public Licenses 16 | 17 | Creative Commons public licenses provide a standard set of terms and 18 | conditions that creators and other rights holders may use to share 19 | original works of authorship and other material subject to copyright 20 | and certain other rights specified in the public license below. The 21 | following considerations are for informational purposes only, are not 22 | exhaustive, and do not form part of our licenses. 23 | 24 | Considerations for licensors: Our public licenses are 25 | intended for use by those authorized to give the public 26 | permission to use material in ways otherwise restricted by 27 | copyright and certain other rights. Our licenses are 28 | irrevocable. Licensors should read and understand the terms 29 | and conditions of the license they choose before applying it. 30 | Licensors should also secure all rights necessary before 31 | applying our licenses so that the public can reuse the 32 | material as expected. Licensors should clearly mark any 33 | material not subject to the license. This includes other CC- 34 | licensed material, or material used under an exception or 35 | limitation to copyright. More considerations for licensors: 36 | wiki.creativecommons.org/Considerations_for_licensors 37 | 38 | Considerations for the public: By using one of our public 39 | licenses, a licensor grants the public permission to use the 40 | licensed material under specified terms and conditions. If 41 | the licensor's permission is not necessary for any reason--for 42 | example, because of any applicable exception or limitation to 43 | copyright--then that use is not regulated by the license. Our 44 | licenses grant only permissions under copyright and certain 45 | other rights that a licensor has authority to grant. Use of 46 | the licensed material may still be restricted for other 47 | reasons, including because others have copyright or other 48 | rights in the material. A licensor may make special requests, 49 | such as asking that all changes be marked or described. 50 | Although not required by our licenses, you are encouraged to 51 | respect those requests where reasonable. More considerations 52 | for the public: 53 | wiki.creativecommons.org/Considerations_for_licensees 54 | 55 | ======================================================================= 56 | 57 | Creative Commons Attribution-NonCommercial 4.0 International Public 58 | License 59 | 60 | By exercising the Licensed Rights (defined below), You accept and agree 61 | to be bound by the terms and conditions of this Creative Commons 62 | Attribution-NonCommercial 4.0 International Public License ("Public 63 | License"). To the extent this Public License may be interpreted as a 64 | contract, You are granted the Licensed Rights in consideration of Your 65 | acceptance of these terms and conditions, and the Licensor grants You 66 | such rights in consideration of benefits the Licensor receives from 67 | making the Licensed Material available under these terms and 68 | conditions. 69 | 70 | 71 | Section 1 -- Definitions. 72 | 73 | a. Adapted Material means material subject to Copyright and Similar 74 | Rights that is derived from or based upon the Licensed Material 75 | and in which the Licensed Material is translated, altered, 76 | arranged, transformed, or otherwise modified in a manner requiring 77 | permission under the Copyright and Similar Rights held by the 78 | Licensor. For purposes of this Public License, where the Licensed 79 | Material is a musical work, performance, or sound recording, 80 | Adapted Material is always produced where the Licensed Material is 81 | synched in timed relation with a moving image. 82 | 83 | b. Adapter's License means the license You apply to Your Copyright 84 | and Similar Rights in Your contributions to Adapted Material in 85 | accordance with the terms and conditions of this Public License. 86 | 87 | c. Copyright and Similar Rights means copyright and/or similar rights 88 | closely related to copyright including, without limitation, 89 | performance, broadcast, sound recording, and Sui Generis Database 90 | Rights, without regard to how the rights are labeled or 91 | categorized. For purposes of this Public License, the rights 92 | specified in Section 2(b)(1)-(2) are not Copyright and Similar 93 | Rights. 94 | d. Effective Technological Measures means those measures that, in the 95 | absence of proper authority, may not be circumvented under laws 96 | fulfilling obligations under Article 11 of the WIPO Copyright 97 | Treaty adopted on December 20, 1996, and/or similar international 98 | agreements. 99 | 100 | e. Exceptions and Limitations means fair use, fair dealing, and/or 101 | any other exception or limitation to Copyright and Similar Rights 102 | that applies to Your use of the Licensed Material. 103 | 104 | f. Licensed Material means the artistic or literary work, database, 105 | or other material to which the Licensor applied this Public 106 | License. 107 | 108 | g. Licensed Rights means the rights granted to You subject to the 109 | terms and conditions of this Public License, which are limited to 110 | all Copyright and Similar Rights that apply to Your use of the 111 | Licensed Material and that the Licensor has authority to license. 112 | 113 | h. Licensor means the individual(s) or entity(ies) granting rights 114 | under this Public License. 115 | 116 | i. NonCommercial means not primarily intended for or directed towards 117 | commercial advantage or monetary compensation. For purposes of 118 | this Public License, the exchange of the Licensed Material for 119 | other material subject to Copyright and Similar Rights by digital 120 | file-sharing or similar means is NonCommercial provided there is 121 | no payment of monetary compensation in connection with the 122 | exchange. 123 | 124 | j. Share means to provide material to the public by any means or 125 | process that requires permission under the Licensed Rights, such 126 | as reproduction, public display, public performance, distribution, 127 | dissemination, communication, or importation, and to make material 128 | available to the public including in ways that members of the 129 | public may access the material from a place and at a time 130 | individually chosen by them. 131 | 132 | k. Sui Generis Database Rights means rights other than copyright 133 | resulting from Directive 96/9/EC of the European Parliament and of 134 | the Council of 11 March 1996 on the legal protection of databases, 135 | as amended and/or succeeded, as well as other essentially 136 | equivalent rights anywhere in the world. 137 | 138 | l. You means the individual or entity exercising the Licensed Rights 139 | under this Public License. Your has a corresponding meaning. 140 | 141 | 142 | Section 2 -- Scope. 143 | 144 | a. License grant. 145 | 146 | 1. Subject to the terms and conditions of this Public License, 147 | the Licensor hereby grants You a worldwide, royalty-free, 148 | non-sublicensable, non-exclusive, irrevocable license to 149 | exercise the Licensed Rights in the Licensed Material to: 150 | 151 | a. reproduce and Share the Licensed Material, in whole or 152 | in part, for NonCommercial purposes only; and 153 | 154 | b. produce, reproduce, and Share Adapted Material for 155 | NonCommercial purposes only. 156 | 157 | 2. Exceptions and Limitations. For the avoidance of doubt, where 158 | Exceptions and Limitations apply to Your use, this Public 159 | License does not apply, and You do not need to comply with 160 | its terms and conditions. 161 | 162 | 3. Term. The term of this Public License is specified in Section 163 | 6(a). 164 | 165 | 4. Media and formats; technical modifications allowed. The 166 | Licensor authorizes You to exercise the Licensed Rights in 167 | all media and formats whether now known or hereafter created, 168 | and to make technical modifications necessary to do so. The 169 | Licensor waives and/or agrees not to assert any right or 170 | authority to forbid You from making technical modifications 171 | necessary to exercise the Licensed Rights, including 172 | technical modifications necessary to circumvent Effective 173 | Technological Measures. For purposes of this Public License, 174 | simply making modifications authorized by this Section 2(a) 175 | (4) never produces Adapted Material. 176 | 177 | 5. Downstream recipients. 178 | 179 | a. Offer from the Licensor -- Licensed Material. Every 180 | recipient of the Licensed Material automatically 181 | receives an offer from the Licensor to exercise the 182 | Licensed Rights under the terms and conditions of this 183 | Public License. 184 | 185 | b. No downstream restrictions. You may not offer or impose 186 | any additional or different terms or conditions on, or 187 | apply any Effective Technological Measures to, the 188 | Licensed Material if doing so restricts exercise of the 189 | Licensed Rights by any recipient of the Licensed 190 | Material. 191 | 192 | 6. No endorsement. Nothing in this Public License constitutes or 193 | may be construed as permission to assert or imply that You 194 | are, or that Your use of the Licensed Material is, connected 195 | with, or sponsored, endorsed, or granted official status by, 196 | the Licensor or others designated to receive attribution as 197 | provided in Section 3(a)(1)(A)(i). 198 | 199 | b. Other rights. 200 | 201 | 1. Moral rights, such as the right of integrity, are not 202 | licensed under this Public License, nor are publicity, 203 | privacy, and/or other similar personality rights; however, to 204 | the extent possible, the Licensor waives and/or agrees not to 205 | assert any such rights held by the Licensor to the limited 206 | extent necessary to allow You to exercise the Licensed 207 | Rights, but not otherwise. 208 | 209 | 2. Patent and trademark rights are not licensed under this 210 | Public License. 211 | 212 | 3. To the extent possible, the Licensor waives any right to 213 | collect royalties from You for the exercise of the Licensed 214 | Rights, whether directly or through a collecting society 215 | under any voluntary or waivable statutory or compulsory 216 | licensing scheme. In all other cases the Licensor expressly 217 | reserves any right to collect such royalties, including when 218 | the Licensed Material is used other than for NonCommercial 219 | purposes. 220 | 221 | 222 | Section 3 -- License Conditions. 223 | 224 | Your exercise of the Licensed Rights is expressly made subject to the 225 | following conditions. 226 | 227 | a. Attribution. 228 | 229 | 1. If You Share the Licensed Material (including in modified 230 | form), You must: 231 | 232 | a. retain the following if it is supplied by the Licensor 233 | with the Licensed Material: 234 | 235 | i. identification of the creator(s) of the Licensed 236 | Material and any others designated to receive 237 | attribution, in any reasonable manner requested by 238 | the Licensor (including by pseudonym if 239 | designated); 240 | 241 | ii. a copyright notice; 242 | 243 | iii. a notice that refers to this Public License; 244 | 245 | iv. a notice that refers to the disclaimer of 246 | warranties; 247 | 248 | v. a URI or hyperlink to the Licensed Material to the 249 | extent reasonably practicable; 250 | 251 | b. indicate if You modified the Licensed Material and 252 | retain an indication of any previous modifications; and 253 | 254 | c. indicate the Licensed Material is licensed under this 255 | Public License, and include the text of, or the URI or 256 | hyperlink to, this Public License. 257 | 258 | 2. You may satisfy the conditions in Section 3(a)(1) in any 259 | reasonable manner based on the medium, means, and context in 260 | which You Share the Licensed Material. For example, it may be 261 | reasonable to satisfy the conditions by providing a URI or 262 | hyperlink to a resource that includes the required 263 | information. 264 | 265 | 3. If requested by the Licensor, You must remove any of the 266 | information required by Section 3(a)(1)(A) to the extent 267 | reasonably practicable. 268 | 269 | 4. If You Share Adapted Material You produce, the Adapter's 270 | License You apply must not prevent recipients of the Adapted 271 | Material from complying with this Public License. 272 | 273 | 274 | Section 4 -- Sui Generis Database Rights. 275 | 276 | Where the Licensed Rights include Sui Generis Database Rights that 277 | apply to Your use of the Licensed Material: 278 | 279 | a. for the avoidance of doubt, Section 2(a)(1) grants You the right 280 | to extract, reuse, reproduce, and Share all or a substantial 281 | portion of the contents of the database for NonCommercial purposes 282 | only; 283 | 284 | b. if You include all or a substantial portion of the database 285 | contents in a database in which You have Sui Generis Database 286 | Rights, then the database in which You have Sui Generis Database 287 | Rights (but not its individual contents) is Adapted Material; and 288 | 289 | c. You must comply with the conditions in Section 3(a) if You Share 290 | all or a substantial portion of the contents of the database. 291 | 292 | For the avoidance of doubt, this Section 4 supplements and does not 293 | replace Your obligations under this Public License where the Licensed 294 | Rights include other Copyright and Similar Rights. 295 | 296 | 297 | Section 5 -- Disclaimer of Warranties and Limitation of Liability. 298 | 299 | a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE 300 | EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS 301 | AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF 302 | ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, 303 | IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, 304 | WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR 305 | PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, 306 | ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT 307 | KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT 308 | ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. 309 | 310 | b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE 311 | TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, 312 | NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, 313 | INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, 314 | COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR 315 | USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN 316 | ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR 317 | DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR 318 | IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. 319 | 320 | c. The disclaimer of warranties and limitation of liability provided 321 | above shall be interpreted in a manner that, to the extent 322 | possible, most closely approximates an absolute disclaimer and 323 | waiver of all liability. 324 | 325 | 326 | Section 6 -- Term and Termination. 327 | 328 | a. This Public License applies for the term of the Copyright and 329 | Similar Rights licensed here. However, if You fail to comply with 330 | this Public License, then Your rights under this Public License 331 | terminate automatically. 332 | 333 | b. Where Your right to use the Licensed Material has terminated under 334 | Section 6(a), it reinstates: 335 | 336 | 1. automatically as of the date the violation is cured, provided 337 | it is cured within 30 days of Your discovery of the 338 | violation; or 339 | 340 | 2. upon express reinstatement by the Licensor. 341 | 342 | For the avoidance of doubt, this Section 6(b) does not affect any 343 | right the Licensor may have to seek remedies for Your violations 344 | of this Public License. 345 | 346 | c. For the avoidance of doubt, the Licensor may also offer the 347 | Licensed Material under separate terms or conditions or stop 348 | distributing the Licensed Material at any time; however, doing so 349 | will not terminate this Public License. 350 | 351 | d. Sections 1, 5, 6, 7, and 8 survive termination of this Public 352 | License. 353 | 354 | 355 | Section 7 -- Other Terms and Conditions. 356 | 357 | a. The Licensor shall not be bound by any additional or different 358 | terms or conditions communicated by You unless expressly agreed. 359 | 360 | b. Any arrangements, understandings, or agreements regarding the 361 | Licensed Material not stated herein are separate from and 362 | independent of the terms and conditions of this Public License. 363 | 364 | 365 | Section 8 -- Interpretation. 366 | 367 | a. For the avoidance of doubt, this Public License does not, and 368 | shall not be interpreted to, reduce, limit, restrict, or impose 369 | conditions on any use of the Licensed Material that could lawfully 370 | be made without permission under this Public License. 371 | 372 | b. To the extent possible, if any provision of this Public License is 373 | deemed unenforceable, it shall be automatically reformed to the 374 | minimum extent necessary to make it enforceable. If the provision 375 | cannot be reformed, it shall be severed from this Public License 376 | without affecting the enforceability of the remaining terms and 377 | conditions. 378 | 379 | c. No term or condition of this Public License will be waived and no 380 | failure to comply consented to unless expressly agreed to by the 381 | Licensor. 382 | 383 | d. Nothing in this Public License constitutes or may be interpreted 384 | as a limitation upon, or waiver of, any privileges and immunities 385 | that apply to the Licensor or You, including from the legal 386 | processes of any jurisdiction or authority. 387 | 388 | ======================================================================= 389 | 390 | Creative Commons is not a party to its public 391 | licenses. Notwithstanding, Creative Commons may elect to apply one of 392 | its public licenses to material it publishes and in those instances 393 | will be considered the “Licensor.” The text of the Creative Commons 394 | public licenses is dedicated to the public domain under the CC0 Public 395 | Domain Dedication. Except for the limited purpose of indicating that 396 | material is shared under a Creative Commons public license or as 397 | otherwise permitted by the Creative Commons policies published at 398 | creativecommons.org/policies, Creative Commons does not authorize the 399 | use of the trademark "Creative Commons" or any other trademark or logo 400 | of Creative Commons without its prior written consent including, 401 | without limitation, in connection with any unauthorized modifications 402 | to any of its public licenses or any other arrangements, 403 | understandings, or agreements concerning use of licensed material. For 404 | the avoidance of doubt, this paragraph does not form part of the 405 | public licenses. 406 | 407 | Creative Commons may be contacted at creativecommons.org. 408 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diskree/AchieveToDo-ModPack/894c0a5135c376fd1a89bd3a64e792e5eb391398/README.md -------------------------------------------------------------------------------- /build_pack.py: -------------------------------------------------------------------------------- 1 | import os 2 | import re 3 | from pathlib import Path 4 | 5 | NAME_COLOR_FROM = "#07c5fa" 6 | NAME_COLOR_TO = "#b2e8f7" 7 | 8 | VERSION_COLOR_MAJOR = "#d4b73a" 9 | VERSION_COLOR_MINOR = "#edd362" 10 | VERSION_COLOR_PATCH = "#d4b73a" 11 | 12 | pack_name, pack_version, author, repo_url, minecraft_version, loader_version = ( 13 | os.sys.argv[1:7] 14 | ) 15 | 16 | pack_dir = "pack" 17 | 18 | for file in Path(pack_dir).glob("*.mrpack"): 19 | file.unlink() 20 | 21 | os.chdir(pack_dir) 22 | 23 | word_center = pack_name 24 | word_start_array = [] 25 | word_end_array = [] 26 | 27 | while word_center: 28 | word_center_len = len(word_center) 29 | if word_center_len in {1, 3, 4}: 30 | piece = 1 31 | else: 32 | piece = 2 33 | if word_center_len == piece: 34 | break 35 | word_start_array.append(word_center[:piece]) 36 | word_end_array.append(word_center[-piece:]) 37 | word_center = word_center[piece:-piece] 38 | 39 | name_color_steps = len(word_start_array) 40 | 41 | def hex_to_rgb(hex_color): 42 | return tuple(int(hex_color[i:i + 2], 16) for i in (1, 3, 5)) 43 | 44 | def rgb_to_hex(rgb): 45 | return f"#{rgb[0]:02x}{rgb[1]:02x}{rgb[2]:02x}" 46 | 47 | from_rgb = hex_to_rgb(NAME_COLOR_FROM) 48 | to_rgb = hex_to_rgb(NAME_COLOR_TO) 49 | 50 | name_colors = [ 51 | rgb_to_hex( 52 | ( 53 | from_rgb[0] + (to_rgb[0] - from_rgb[0]) * i // name_color_steps, 54 | from_rgb[1] + (to_rgb[1] - from_rgb[1]) * i // name_color_steps, 55 | from_rgb[2] + (to_rgb[2] - from_rgb[2]) * i // name_color_steps, 56 | ) 57 | ) 58 | for i in range(name_color_steps + 1) 59 | ] 60 | 61 | colored_pack_name = "" 62 | for i, part in enumerate(word_start_array): 63 | color_index = i % (len(name_colors) - 1) 64 | colored_pack_name += f"&{{{name_colors[color_index]}}}{part}" 65 | 66 | colored_pack_name += f"&{{{name_colors[-1]}}}{word_center}" 67 | 68 | for i, part in reversed(list(enumerate(word_end_array))): 69 | color_index = i % (len(name_colors) - 1) 70 | colored_pack_name += f"&{{{name_colors[color_index]}}}{part}" 71 | 72 | major, minor, patch = (pack_version.split('.') + ["", ""])[:3] 73 | colored_pack_version = ( 74 | f"&{{{VERSION_COLOR_MAJOR}}}{major}" if major else "" 75 | ) + (f".&{{{VERSION_COLOR_MINOR}}}{minor}" if minor else "") + ( 76 | f".&{{{VERSION_COLOR_PATCH}}}{patch}" if patch else "" 77 | ) 78 | 79 | def replace_in_file(file_path, replacements): 80 | file = Path(file_path) 81 | original_content = file.read_text() 82 | 83 | updated_content = original_content 84 | for placeholder, value in replacements.items(): 85 | updated_content = re.sub(re.escape(f"${{{placeholder}}}"), value, updated_content) 86 | file.write_text(updated_content) 87 | 88 | return original_content 89 | 90 | 91 | file_replacements = { 92 | "pack.toml": { 93 | "packName": pack_name, 94 | "author": author, 95 | "packVersion": pack_version, 96 | "loaderVersion": loader_version, 97 | "minecraftVersion": minecraft_version, 98 | }, 99 | "config/yosbr/config/custom-hud/profile1.txt": { 100 | "coloredPackName": colored_pack_name, 101 | "coloredPackVersion": colored_pack_version, 102 | }, 103 | "config/yosbr/config/isxander-main-menu-credits.json": { 104 | "packName": pack_name, 105 | "packVersion": pack_version, 106 | "repoUrl": repo_url, 107 | }, 108 | } 109 | 110 | original_contents = {} 111 | for file_path, replacements in file_replacements.items(): 112 | original_contents[file_path] = replace_in_file(file_path, replacements) 113 | 114 | os.system("packwiz refresh --build") 115 | os.system("packwiz modrinth export") 116 | os.system("packwiz refresh") 117 | 118 | for file_path, original_content in original_contents.items(): 119 | Path(file_path).write_text(original_content) 120 | -------------------------------------------------------------------------------- /logo/logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diskree/AchieveToDo-ModPack/894c0a5135c376fd1a89bd3a64e792e5eb391398/logo/logo.ai -------------------------------------------------------------------------------- /logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diskree/AchieveToDo-ModPack/894c0a5135c376fd1a89bd3a64e792e5eb391398/logo/logo.png -------------------------------------------------------------------------------- /pack/.packwizignore: -------------------------------------------------------------------------------- 1 | # Exclude exported Modrinth modpacks 2 | *.mrpack 3 | 4 | # Exclude Packwiz metadata 5 | index.toml 6 | pack.toml 7 | 8 | # Exclude ignored mods 9 | *.toml\! 10 | -------------------------------------------------------------------------------- /pack/config/yosbr/config/betterf3.json: -------------------------------------------------------------------------------- 1 | { 2 | "general": { 3 | "disable_mod": false, 4 | "hide_bossbar": false, 5 | "shadow_text": false, 6 | "auto_start": false, 7 | "animationSpeed": 1.0, 8 | "always_show_ping": false, 9 | "hide_debug_crosshair": true, 10 | "background_color": -581939120, 11 | "space_modules": false, 12 | "always_show_profiler": false, 13 | "animations": false, 14 | "fontScale": 1.0, 15 | "hide_sidebar": false, 16 | "always_show_tps": false 17 | }, 18 | "modules_right": [ 19 | { 20 | "name": "system", 21 | "name_color": 15658734, 22 | "value_color": 15658734, 23 | "lines": { 24 | "opengl_version": false, 25 | "allocation_rate": false, 26 | "display": false, 27 | "java_version": true, 28 | "gpu_driver": false, 29 | "memory_usage": true, 30 | "allocated_memory": false, 31 | "cpu": true, 32 | "gpu_utilization": false, 33 | "time": false, 34 | "gpu": true 35 | }, 36 | "enabled": true 37 | }, 38 | { 39 | "empty_lines": 1, 40 | "name": "empty", 41 | "lines": { 42 | "nothing": true 43 | }, 44 | "enabled": true 45 | }, 46 | { 47 | "name": "target", 48 | "name_color": 15658734, 49 | "value_color": 15658734, 50 | "lines": { 51 | "id_fluid": false, 52 | "fluid_tags": false, 53 | "block_states": true, 54 | "targeted_block": true, 55 | "block_tags": false, 56 | "id_block": true, 57 | "nothing": true, 58 | "nothing2": false, 59 | "targeted_fluid": false, 60 | "targeted_entity": true, 61 | "fluid_states": false 62 | }, 63 | "enabled": true 64 | } 65 | ], 66 | "modules_left": [ 67 | { 68 | "name": "minecraft", 69 | "name_color": 15658734, 70 | "value_color": 15658734, 71 | "lines": { 72 | "minecraft": true 73 | }, 74 | "enabled": true 75 | }, 76 | { 77 | "color_high": 15658734, 78 | "color_med": 15658734, 79 | "name": "fps", 80 | "lines": { 81 | "fps": true 82 | }, 83 | "enabled": true, 84 | "color_low": 16738657 85 | }, 86 | { 87 | "empty_lines": 1, 88 | "name": "empty", 89 | "lines": { 90 | "nothing": true 91 | }, 92 | "enabled": true 93 | }, 94 | { 95 | "color_x": 16624980, 96 | "color_y": 16767923, 97 | "color_z": 12827107, 98 | "name": "coords", 99 | "name_color": 15658734, 100 | "lines": { 101 | "chunk_coords": false, 102 | "player_coords": true, 103 | "block_coords": false, 104 | "velocity": false, 105 | "chunk_relative_coords": true, 106 | "abs_velocity": false 107 | }, 108 | "enabled": true 109 | }, 110 | { 111 | "empty_lines": 1, 112 | "name": "empty", 113 | "lines": { 114 | "nothing": true 115 | }, 116 | "enabled": true 117 | }, 118 | { 119 | "name": "location", 120 | "name_color": 15658734, 121 | "value_color": 15658734, 122 | "lines": { 123 | "light": true, 124 | "biome": true, 125 | "rotation": false, 126 | "facing": true, 127 | "slime_chunk": false, 128 | "local_difficulty": false, 129 | "day_ticks": false, 130 | "days_played": true, 131 | "dimension": true, 132 | "highest_block": false, 133 | "highest_block_server": false, 134 | "light_server": false 135 | }, 136 | "enabled": true 137 | }, 138 | { 139 | "empty_lines": 1, 140 | "name": "empty", 141 | "lines": { 142 | "nothing": true 143 | }, 144 | "enabled": true 145 | }, 146 | { 147 | "name": "entity", 148 | "name_color": 15658734, 149 | "value_color": 16767923, 150 | "total_entities_color": 16624980, 151 | "lines": { 152 | "entities": true, 153 | "water_creature": true, 154 | "underground_water_creature": true, 155 | "ambient": true, 156 | "particles": true, 157 | "axolotls": true, 158 | "creature": true, 159 | "water_ambient": true, 160 | "monster": true, 161 | "misc": true 162 | }, 163 | "enabled": true 164 | } 165 | ] 166 | } 167 | -------------------------------------------------------------------------------- /pack/config/yosbr/config/blur.json: -------------------------------------------------------------------------------- 1 | { 2 | "blurExclusions": [], 3 | "fadeTimeMillis": 85, 4 | "ease": true, 5 | "radius": 4, 6 | "gradientStart": "#000000", 7 | "gradientStartAlpha": 70, 8 | "gradientEnd": "#000000", 9 | "gradientEndAlpha": 80, 10 | "showScreenTitle": true 11 | } 12 | -------------------------------------------------------------------------------- /pack/config/yosbr/config/capes.json5: -------------------------------------------------------------------------------- 1 | { 2 | "clientCapeType": "OPTIFINE", 3 | "enableOptifine": true, 4 | "enableLabyMod": false, 5 | "enableWynntils": false, 6 | "enableMinecraftCapesMod": false, 7 | "enableCosmetica": false, 8 | "enableCloaksPlus": false, 9 | "enableElytraTexture": true 10 | } 11 | -------------------------------------------------------------------------------- /pack/config/yosbr/config/citresewn.json: -------------------------------------------------------------------------------- 1 | { 2 | "broken_paths": true 3 | } 4 | -------------------------------------------------------------------------------- /pack/config/yosbr/config/custom-hud/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "enabled": true, 3 | "activeProfile": 1 4 | } 5 | -------------------------------------------------------------------------------- /pack/config/yosbr/config/custom-hud/profile1.txt: -------------------------------------------------------------------------------- 1 | ==BackgroundColor:0x22000000== 2 | ==Section:TopLeft== 3 | ${coloredPackName} ${coloredPackVersion} &7| {fps} fps 4 | -------------------------------------------------------------------------------- /pack/config/yosbr/config/dark-loading-screen.json: -------------------------------------------------------------------------------- 1 | { 2 | "background": "FED668", 3 | "bar": "2C1711", 4 | "barBackground": "FED668", 5 | "border": "5F3225", 6 | "logo": "5F3225", 7 | "fadeIn": 1.0, 8 | "fadeOut": 2.0 9 | } 10 | -------------------------------------------------------------------------------- /pack/config/yosbr/config/debugify.json: -------------------------------------------------------------------------------- 1 | { 2 | "MC-577": true, 3 | "MC-59810": true, 4 | "MC-89146": true, 5 | "MC-90683": true, 6 | "MC-112730": true, 7 | "MC-121772": true, 8 | "MC-122477": true, 9 | "MC-140646": true, 10 | "MC-199467": true, 11 | "MC-235035": true, 12 | "MC-237493": true, 13 | "opt_out_updater": true, 14 | "gameplay_fixes_in_multiplayer": false, 15 | "default_disabled": true 16 | } 17 | -------------------------------------------------------------------------------- /pack/config/yosbr/config/dynamicfps.toml: -------------------------------------------------------------------------------- 1 | runGCOnUnfocus = true 2 | -------------------------------------------------------------------------------- /pack/config/yosbr/config/fallingleaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "displayDebugData": false, 4 | "enabled": true, 5 | "leafSize": 6, 6 | "leafLifespan": 160, 7 | "leafSpawnRate": 8, 8 | "coniferLeafSpawnRate": 6, 9 | "dropFromPlayerPlacedBlocks": true, 10 | "leavesOnBlockHit": true, 11 | "minimumFreeSpaceBelow": 1, 12 | "windEnabled": true, 13 | "windlessDimensions": [ 14 | "minecraft:the_end", 15 | "minecraft:the_nether" 16 | ], 17 | "leafSettings": { 18 | "minecraft:jungle_leaves": { 19 | "spawnRateFactor": 0.0, 20 | "isConiferBlock": false 21 | }, 22 | "minecraft:flowering_azalea_leaves": { 23 | "spawnRateFactor": 1.0, 24 | "isConiferBlock": false 25 | }, 26 | "minecraft:mangrove_leaves": { 27 | "spawnRateFactor": 1.0, 28 | "isConiferBlock": false 29 | }, 30 | "minecraft:azalea_leaves": { 31 | "spawnRateFactor": 1.0, 32 | "isConiferBlock": false 33 | }, 34 | "minecraft:birch_leaves": { 35 | "spawnRateFactor": 1.0, 36 | "isConiferBlock": false 37 | }, 38 | "minecraft:acacia_leaves": { 39 | "spawnRateFactor": 1.0, 40 | "isConiferBlock": false 41 | }, 42 | "minecraft:oak_leaves": { 43 | "spawnRateFactor": 1.0, 44 | "isConiferBlock": false 45 | }, 46 | "minecraft:dark_oak_leaves": { 47 | "spawnRateFactor": 1.0, 48 | "isConiferBlock": false 49 | }, 50 | "minecraft:spruce_leaves": { 51 | "spawnRateFactor": 1.0, 52 | "isConiferBlock": true 53 | } 54 | }, 55 | "leafSpawners": [], 56 | "fallSpawnRateFactor": 1.8, 57 | "winterSpawnRateFactor": 0.1, 58 | "startingSpawnRadius": 0, 59 | "decaySpawnRateFactor": 2.6, 60 | "maxDecayLeaves": 9 61 | } 62 | -------------------------------------------------------------------------------- /pack/config/yosbr/config/firstperson.json: -------------------------------------------------------------------------------- 1 | { 2 | "enabledByDefault": true, 3 | "xOffset": -2, 4 | "sneakXOffset": 2, 5 | "sitXOffset": 2, 6 | "renderStuckFeatures": true, 7 | "vanillaHands": false, 8 | "doubleHands": false, 9 | "forceActive": false, 10 | "autoVanillaHands": [ 11 | "twilightforest:filled_ore_map", 12 | "twilightforest:filled_magic_map", 13 | "twilightforest:filled_maze_map", 14 | "antiqueatlas:antique_atlas" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /pack/config/yosbr/config/iris.properties: -------------------------------------------------------------------------------- 1 | disableUpdateMessage=true 2 | maxShadowRenderDistance=8 3 | enableShaders=false 4 | -------------------------------------------------------------------------------- /pack/config/yosbr/config/isxander-main-menu-credits.json: -------------------------------------------------------------------------------- 1 | { 2 | "main_menu": { 3 | "top_left": [], 4 | "top_right": [], 5 | "bottom_left": [ 6 | { 7 | "text": "${packName} ${packVersion}", 8 | "clickEvent": { 9 | "action": "open_url", 10 | "value": "${repoUrl}" 11 | }, 12 | "hoverEvent": { 13 | "action": "show_text", 14 | "contents": "Open modpack page on Github" 15 | } 16 | } 17 | ], 18 | "bottom_right": [], 19 | "mod_blacklist": [] 20 | }, 21 | "pause_menu": { 22 | "top_left": [], 23 | "top_right": [], 24 | "bottom_left": [ 25 | { 26 | "text": "${packName} ${packVersion}", 27 | "color": "gray", 28 | "clickEvent": { 29 | "action": "open_url", 30 | "value": "${repoUrl}" 31 | }, 32 | "hoverEvent": { 33 | "action": "show_text", 34 | "contents": "Open modpack page on Github" 35 | } 36 | } 37 | ], 38 | "bottom_right": [], 39 | "mod_blacklist": [] 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /pack/config/yosbr/config/lambdynlights.toml: -------------------------------------------------------------------------------- 1 | mode = "fastest" 2 | 3 | [light_sources] 4 | water_sensitive_check = true 5 | block_entities = true 6 | entities = true 7 | tnt = "simple" 8 | creeper = "simple" 9 | -------------------------------------------------------------------------------- /pack/config/yosbr/config/modmenu.json: -------------------------------------------------------------------------------- 1 | { 2 | "sorting": "ascending", 3 | "count_libraries": false, 4 | "compact_list": false, 5 | "count_children": true, 6 | "mods_button_style": "shrink", 7 | "game_menu_button_style": "replace_bugs", 8 | "count_hidden_mods": false, 9 | "mod_count_location": "title_screen", 10 | "hide_mod_links": false, 11 | "show_libraries": false, 12 | "hide_mod_license": true, 13 | "hide_badges": true, 14 | "hide_mod_credits": true, 15 | "easter_eggs": false, 16 | "modify_title_screen": true, 17 | "modify_game_menu": true, 18 | "hide_config_buttons": false, 19 | "random_java_colors": false, 20 | "translate_names": true, 21 | "translate_descriptions": true, 22 | "config_mode": false, 23 | "disable_drag_and_drop": false, 24 | "hidden_mods": ["minecraft"], 25 | "hidden_configs": [], 26 | "disable_update_checker": [], 27 | "update_checker": false, 28 | "button_update_badge": false, 29 | "quick_configure": true 30 | } 31 | -------------------------------------------------------------------------------- /pack/config/yosbr/config/moreculling.toml: -------------------------------------------------------------------------------- 1 | enableSodiumMenu = true 2 | cloudCulling = true 3 | signTextCulling = true 4 | useBlockStateCulling = true 5 | useCustomItemFrameRenderer = false 6 | itemFrameMapCulling = true 7 | useItemFrameLOD = true 8 | itemFrameLODRange = 384 9 | useItemFrame3FaceCulling = true 10 | itemFrame3FaceCullingRange = 12.0 11 | leavesCullingMode = "DEFAULT" 12 | leavesCullingAmount = 2 13 | includeMangroveRoots = true 14 | powderSnowCulling = true 15 | entityModelCulling = false 16 | useOnModdedBlocksByDefault = true 17 | 18 | [modCompatibility] 19 | minecraft = true 20 | -------------------------------------------------------------------------------- /pack/config/yosbr/config/shulkerboxtooltip.json5: -------------------------------------------------------------------------------- 1 | { 2 | "preview": { 3 | "enable": true, 4 | "swapModes": true, 5 | "alwaysOn": true, 6 | "compactPreviewNbtBehavior": "SEPARATE", 7 | "defaultMaxRowSize": 9, 8 | "serverIntegration": true, 9 | "theme": "SHULKERBOXTOOLTIP", 10 | "position": "OUTSIDE_BOTTOM", 11 | "shortItemCounts": true 12 | }, 13 | "tooltip": { 14 | "showKeyHints": false, 15 | "type": "NONE", 16 | "lootTableInfoType": "HIDE", 17 | "hideShulkerBoxLore": false 18 | }, 19 | "colors": { 20 | "coloredPreview": true, 21 | "colors": { 22 | "shulkerboxtooltip:shulker_boxes": { 23 | "shulker_box": 0x976797, 24 | "white_shulker_box": 0xf9fffe, 25 | "orange_shulker_box": 0xf98026, 26 | "magenta_shulker_box": 0xc74ebd, 27 | "light_blue_shulker_box": 0x3ab3da, 28 | "yellow_shulker_box": 0xfed83d, 29 | "lime_shulker_box": 0x80c726, 30 | "pink_shulker_box": 0xf38baa, 31 | "gray_shulker_box": 0x474f52, 32 | "light_gray_shulker_box": 0x9d9d97, 33 | "cyan_shulker_box": 0x269c9c, 34 | "purple_shulker_box": 0x8932b8, 35 | "blue_shulker_box": 0x3c44aa, 36 | "brown_shulker_box": 0x835432, 37 | "green_shulker_box": 0x5e7c26, 38 | "red_shulker_box": 0xb02e26, 39 | "black_shulker_box": 0x262626 40 | }, 41 | "shulkerboxtooltip:default": { 42 | "default": 0xffffff, 43 | "ender_chest": 0xb4b41 44 | } 45 | } 46 | }, 47 | "controls": { 48 | "previewKey": { 49 | "code": "key.keyboard.unknown" 50 | }, 51 | "fullPreviewKey": { 52 | "code": "key.keyboard.left.control" 53 | }, 54 | "lockTooltipKey": { 55 | "code": "key.keyboard.unknown" 56 | } 57 | }, 58 | "server": { 59 | "clientIntegration": true, 60 | "enderChestSyncType": "ACTIVE" 61 | } 62 | } 63 | -------------------------------------------------------------------------------- /pack/config/yosbr/config/sodium-extra-options.json: -------------------------------------------------------------------------------- 1 | { 2 | "animation_settings": { 3 | "animation": true, 4 | "water": true, 5 | "lava": true, 6 | "fire": true, 7 | "portal": true, 8 | "block_animations": true, 9 | "sculk_sensor": true 10 | }, 11 | "particle_settings": { 12 | "particles": true, 13 | "rain_splash": true, 14 | "block_break": true, 15 | "block_breaking": true, 16 | "other": {} 17 | }, 18 | "detail_settings": { 19 | "sky": true, 20 | "sun_moon": true, 21 | "stars": true, 22 | "rain_snow": true, 23 | "biome_colors": true, 24 | "sky_colors": true 25 | }, 26 | "render_settings": { 27 | "fog_distance": 0, 28 | "fog_start": 100, 29 | "multi_dimension_fog_control": false, 30 | "dimensionFogDistance": {}, 31 | "light_updates": true, 32 | "item_frame": true, 33 | "armor_stand": true, 34 | "painting": true, 35 | "piston": true, 36 | "beacon_beam": true, 37 | "enchanting_table_book": true, 38 | "item_frame_name_tag": true, 39 | "player_name_tag": true 40 | }, 41 | "extra_settings": { 42 | "overlay_corner": "BOTTOM_LEFT", 43 | "text_contrast": "SHADOW", 44 | "show_fps": false, 45 | "show_f_p_s_extended": false, 46 | "show_coords": false, 47 | "reduce_resolution_on_mac": true, 48 | "use_adaptive_sync": false, 49 | "cloud_height": 192, 50 | "cloud_distance": 100, 51 | "toasts": true, 52 | "advancement_toast": true, 53 | "recipe_toast": true, 54 | "system_toast": true, 55 | "tutorial_toast": false, 56 | "instant_sneak": false, 57 | "prevent_shaders": true, 58 | "steady_debug_hud": true, 59 | "steady_debug_hud_refresh_interval": 1 60 | }, 61 | "super_secret_settings": { 62 | "fetch_sodium_extra_crowdin_translations": false, 63 | "sodium_extra_crowdin_project_identifier": "sodium-extra", 64 | "fetch_sodium_crowdin_translations": false, 65 | "sodium_crowdin_project_identifier": "sodium-fabric" 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /pack/config/yosbr/config/sodium-options.json: -------------------------------------------------------------------------------- 1 | { 2 | "quality": { 3 | "weather_quality": "FAST", 4 | "leaves_quality": "DEFAULT", 5 | "enable_vignette": true 6 | }, 7 | "advanced": { 8 | "enable_memory_tracing": false, 9 | "use_advanced_staging_buffers": true, 10 | "cpu_render_ahead_limit": 3 11 | }, 12 | "performance": { 13 | "chunk_builder_threads": 0, 14 | "always_defer_chunk_updates_v2": true, 15 | "animate_only_visible_textures": true, 16 | "use_entity_culling": true, 17 | "use_fog_occlusion": true, 18 | "use_block_face_culling": true, 19 | "use_no_error_g_l_context": true 20 | }, 21 | "notifications": { 22 | "hide_donation_button": true 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /pack/config/yosbr/config/textile_backup.json5: -------------------------------------------------------------------------------- 1 | { 2 | "perWorldBackup": true, 3 | "backupInterval": 0, 4 | "restoreDelay": 30, 5 | "doBackupsOnEmptyServer": false, 6 | "shutdownBackup": true, 7 | "backupOldWorlds": false, 8 | "path": "backup/", 9 | "fileBlacklist": [], 10 | "deleteOldBackupAfterRestore": true, 11 | "backupsToKeep": 3, 12 | "maxAge": 0, 13 | "maxSize": 0, 14 | "compression": 7, 15 | "compressionCoreCountLimit": 0, 16 | "format": "ZIP", 17 | "permissionLevel": 4, 18 | "alwaysSingleplayerAllowed": false, 19 | "playerWhitelist": [], 20 | "playerBlacklist": [], 21 | "broadcastBackupStart": false, 22 | "broadcastBackupDone": false, 23 | "dateTimeFormat": "yyyy.MM.dd_HH-mm-ss", 24 | "integrityVerificationMode": "STRICT" 25 | } 26 | -------------------------------------------------------------------------------- /pack/config/yosbr/options.txt: -------------------------------------------------------------------------------- 1 | version:4189 2 | ao:true 3 | biomeBlendRadius:5 4 | enableVsync:false 5 | entityDistanceScaling:1.0 6 | entityShadows:true 7 | forceUnicodeFont:false 8 | japaneseGlyphVariants:false 9 | fov:0.0 10 | fovEffectScale:0.5000000000000001 11 | darknessEffectScale:1.0 12 | glintSpeed:0.5 13 | glintStrength:0.75 14 | prioritizeChunkUpdates:0 15 | fullscreen:false 16 | gamma:0.5 17 | graphicsMode:1 18 | guiScale:4 19 | maxFps:260 20 | inactivityFpsLimit:"afk" 21 | mipmapLevels:4 22 | narrator:0 23 | particles:0 24 | reducedDebugInfo:false 25 | renderClouds:"true" 26 | renderDistance:12 27 | simulationDistance:12 28 | screenEffectScale:0.5 29 | soundDevice:"" 30 | autoJump:false 31 | rotateWithMinecart:false 32 | operatorItemsTab:false 33 | autoSuggestions:true 34 | chatColors:true 35 | chatLinks:true 36 | chatLinksPrompt:true 37 | discrete_mouse_scroll:false 38 | invertYMouse:false 39 | realmsNotifications:false 40 | showSubtitles:true 41 | directionalAudio:false 42 | touchscreen:false 43 | bobView:true 44 | toggleCrouch:false 45 | toggleSprint:false 46 | darkMojangStudiosBackground:true 47 | hideLightningFlashes:false 48 | hideSplashTexts:false 49 | mouseSensitivity:0.5 50 | damageTiltStrength:1.0 51 | highContrast:false 52 | highContrastBlockOutline:false 53 | narratorHotkey:false 54 | resourcePacks:["vanilla","fabric","file/BACAP Language Pack.zip","file/BACAP Better RU.zip","file/Translations for Sodium.zip","file/Default Dark Mode.zip","file/Z-Fighting Fix.zip","file/Centered Crosshair Fix.zip","file/Hardcore Absorption Fix.zip","file/Map Marking Fix.zip","file/Trapdoor Fix.zip","file/Barrel Fix.zip","file/Nether Bricks Fix.zip","file/Centered Stone Bricks Fix.zip","file/Colorful Sheared Sheep.zip","file/Better Waxed Copper.zip","file/Visual Goat Horns.zip","file/Visual Fish Buckets.zip","file/Unique Enchanted Books.zip","file/Yet Another Glint.zip","file/Minimal Rain \u0026 Snow.zip","file/Fast Better Grass.zip"] 55 | incompatibleResourcePacks:[] 56 | lastServer: 57 | lang:en_us 58 | chatVisibility:0 59 | chatOpacity:1.0 60 | chatLineSpacing:0.0 61 | textBackgroundOpacity:0.3 62 | backgroundForChatOnly:true 63 | hideServerAddress:false 64 | advancedItemTooltips:true 65 | pauseOnLostFocus:true 66 | overrideWidth:0 67 | overrideHeight:0 68 | chatHeightFocused:1.0 69 | chatDelay:0.0 70 | chatHeightUnfocused:0.45 71 | chatScale:1.0 72 | chatWidth:1.0 73 | notificationDisplayTime:1.0 74 | useNativeTransport:true 75 | mainHand:"right" 76 | attackIndicator:1 77 | tutorialStep:none 78 | mouseWheelSensitivity:1.0 79 | rawMouseInput:true 80 | glDebugVerbosity:1 81 | skipMultiplayerWarning:true 82 | hideMatchedNames:true 83 | joinedFirstServer:true 84 | syncChunkWrites:false 85 | showAutosaveIndicator:false 86 | allowServerListing:true 87 | onlyShowSecureChat:false 88 | panoramaScrollSpeed:1.0 89 | debugifyTelemetry:0 90 | telemetryOptInExtra:false 91 | onboardAccessibility:false 92 | menuBackgroundBlurriness:5 93 | key_key.attack:key.mouse.left 94 | key_key.use:key.mouse.right 95 | key_key.forward:key.keyboard.w 96 | key_key.left:key.keyboard.a 97 | key_key.back:key.keyboard.s 98 | key_key.right:key.keyboard.d 99 | key_key.jump:key.keyboard.space 100 | key_key.sneak:key.keyboard.left.shift 101 | key_key.sprint:key.keyboard.left.control 102 | key_key.drop:key.keyboard.q 103 | key_key.inventory:key.keyboard.e 104 | key_key.chat:key.keyboard.t 105 | key_key.playerlist:key.keyboard.tab 106 | key_key.pickItem:key.mouse.middle 107 | key_key.command:key.keyboard.slash 108 | key_key.socialInteractions:key.keyboard.p 109 | key_key.screenshot:key.keyboard.f2 110 | key_key.togglePerspective:key.keyboard.f5 111 | key_key.smoothCamera:key.keyboard.unknown 112 | key_key.fullscreen:key.keyboard.f11 113 | key_key.spectatorOutlines:key.keyboard.unknown 114 | key_key.swapOffhand:key.keyboard.f 115 | key_key.saveToolbarActivator:key.keyboard.unknown 116 | key_key.loadToolbarActivator:key.keyboard.unknown 117 | key_key.advancements:key.keyboard.l 118 | key_key.hotbar.1:key.keyboard.1 119 | key_key.hotbar.2:key.keyboard.2 120 | key_key.hotbar.3:key.keyboard.3 121 | key_key.hotbar.4:key.keyboard.4 122 | key_key.hotbar.5:key.keyboard.5 123 | key_key.hotbar.6:key.keyboard.6 124 | key_key.hotbar.7:key.keyboard.7 125 | key_key.hotbar.8:key.keyboard.8 126 | key_key.hotbar.9:key.keyboard.9 127 | key_key.dynamic_fps.toggle_forced:key.keyboard.unknown 128 | key_key.dynamic_fps.toggle_disabled:key.keyboard.unknown 129 | key_key.custom_hud.enable:key.keyboard.unknown 130 | key_key.custom_hud.cycle_profiles:key.keyboard.unknown 131 | key_key.custom_hud.show_errors:key.keyboard.unknown 132 | key_key.custom_hud.refresh_profiler_timings:key.keyboard.unknown 133 | key_key.entityculling.toggle:key.keyboard.unknown 134 | key_zoomify.key.zoom:key.keyboard.c 135 | key_zoomify.key.zoom.secondary:key.keyboard.unknown 136 | key_iris.keybind.reload:key.keyboard.unknown 137 | key_iris.keybind.toggleShaders:key.keyboard.unknown 138 | key_iris.keybind.shaderPackSelection:key.keyboard.unknown 139 | key_iris.keybind.wireframe:key.keyboard.unknown 140 | soundCategory_master:1.0 141 | soundCategory_music:0.15 142 | soundCategory_record:0.25 143 | soundCategory_weather:0.15 144 | soundCategory_block:0.5 145 | soundCategory_hostile:1.0 146 | soundCategory_neutral:0.5 147 | soundCategory_player:0.5 148 | soundCategory_ambient:0.15 149 | soundCategory_voice:0.5 150 | modelPart_cape:true 151 | modelPart_jacket:true 152 | modelPart_left_sleeve:true 153 | modelPart_right_sleeve:true 154 | modelPart_left_pants_leg:true 155 | modelPart_right_pants_leg:true 156 | modelPart_hat:true 157 | -------------------------------------------------------------------------------- /pack/datapacks/amplified_nether.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Amplified Nether" 2 | filename = "amplified_nether.zip" 3 | side = "both" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/wXiGiyGX/versions/jfHNaJaE/Amplified_Nether_1.21_v1.2.7.zip" 7 | hash-format = "sha1" 8 | hash = "473ddf1042ae7d4c19eff01944d0b9da0f11c831" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "wXiGiyGX" 13 | version = "jfHNaJaE" 14 | -------------------------------------------------------------------------------- /pack/datapacks/blazeandcaves-advancements-pack-hardcore-version.pw.toml: -------------------------------------------------------------------------------- 1 | name = "BlazeandCave's Advancements Pack Hardcore Version" 2 | filename = "bacap_hardcore.zip" 3 | side = "both" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/QEv1xmKi/versions/uRKM9Bou/BlazeandCave%27s%20Advancements%20Pack%20Hardcore.zip" 7 | hash-format = "sha512" 8 | hash = "2f198e638f8bc35a23e96fd436b454f79a2015845acde9f05bfb2f5791f1fbac7f9c7f023e4664152b651e6473aaa389b77ef1fab6b30c23222892ca8430406b" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "QEv1xmKi" 13 | version = "uRKM9Bou" 14 | -------------------------------------------------------------------------------- /pack/datapacks/blazeandcaves-advancements-pack.pw.toml: -------------------------------------------------------------------------------- 1 | name = "BlazeandCave's Advancements Pack" 2 | filename = "bacap.zip" 3 | side = "both" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/VoVJ47kN/versions/i8N5hYLH/BlazeandCave%27s%20Advancements%20Pack%201.18.1.zip" 7 | hash-format = "sha512" 8 | hash = "a8c3fb54ba5651719e6b281676ecc0e4c7e864a7f789dabe5cf0d4190d11ec4ecfab7c4b85a08f0acf97f0a8717f069bb4caa952b9f2c7e45462e6ab9ff89947" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "VoVJ47kN" 13 | version = "i8N5hYLH" 14 | -------------------------------------------------------------------------------- /pack/datapacks/nullscape.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Nullscape" 2 | filename = "nullscape.zip" 3 | side = "both" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/LPjGiSO4/versions/J4B2BaWk/Nullscape_1.21_v1.2.10.zip" 7 | hash-format = "sha1" 8 | hash = "0a55bff36ab26b13963213ed1482d1b8b84ab568" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "LPjGiSO4" 13 | version = "J4B2BaWk" 14 | -------------------------------------------------------------------------------- /pack/datapacks/terralith.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Terralith" 2 | filename = "terralith.zip" 3 | side = "both" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/8oi3bsk5/versions/PcYlKx8w/Terralith_1.21_v2.5.7.zip" 7 | hash-format = "sha1" 8 | hash = "9645d4c557e8419154cc5775c5fe3ba9e82bfb8f" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "8oi3bsk5" 13 | version = "PcYlKx8w" 14 | -------------------------------------------------------------------------------- /pack/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diskree/AchieveToDo-ModPack/894c0a5135c376fd1a89bd3a64e792e5eb391398/pack/icon.png -------------------------------------------------------------------------------- /pack/index.toml: -------------------------------------------------------------------------------- 1 | hash-format = "sha256" 2 | 3 | [[files]] 4 | file = "config/yosbr/config/betterf3.json" 5 | 6 | [[files]] 7 | file = "config/yosbr/config/blur.json" 8 | 9 | [[files]] 10 | file = "config/yosbr/config/capes.json5" 11 | 12 | [[files]] 13 | file = "config/yosbr/config/citresewn.json" 14 | 15 | [[files]] 16 | file = "config/yosbr/config/custom-hud/config.json" 17 | 18 | [[files]] 19 | file = "config/yosbr/config/custom-hud/profile1.txt" 20 | 21 | [[files]] 22 | file = "config/yosbr/config/dark-loading-screen.json" 23 | 24 | [[files]] 25 | file = "config/yosbr/config/debugify.json" 26 | 27 | [[files]] 28 | file = "config/yosbr/config/dynamicfps.toml" 29 | 30 | [[files]] 31 | file = "config/yosbr/config/fallingleaves.json" 32 | 33 | [[files]] 34 | file = "config/yosbr/config/firstperson.json" 35 | 36 | [[files]] 37 | file = "config/yosbr/config/iris.properties" 38 | 39 | [[files]] 40 | file = "config/yosbr/config/isxander-main-menu-credits.json" 41 | 42 | [[files]] 43 | file = "config/yosbr/config/lambdynlights.toml" 44 | 45 | [[files]] 46 | file = "config/yosbr/config/modmenu.json" 47 | 48 | [[files]] 49 | file = "config/yosbr/config/moreculling.toml" 50 | 51 | [[files]] 52 | file = "config/yosbr/config/shulkerboxtooltip.json5" 53 | 54 | [[files]] 55 | file = "config/yosbr/config/sodium-extra-options.json" 56 | 57 | [[files]] 58 | file = "config/yosbr/config/sodium-options.json" 59 | 60 | [[files]] 61 | file = "config/yosbr/config/textile_backup.json5" 62 | 63 | [[files]] 64 | file = "config/yosbr/options.txt" 65 | 66 | [[files]] 67 | file = "datapacks/amplified_nether.pw.toml" 68 | metafile = true 69 | 70 | [[files]] 71 | file = "datapacks/blazeandcaves-advancements-pack-hardcore-version.pw.toml" 72 | metafile = true 73 | 74 | [[files]] 75 | file = "datapacks/blazeandcaves-advancements-pack.pw.toml" 76 | metafile = true 77 | 78 | [[files]] 79 | file = "datapacks/nullscape.pw.toml" 80 | metafile = true 81 | 82 | [[files]] 83 | file = "datapacks/terralith.pw.toml" 84 | metafile = true 85 | 86 | [[files]] 87 | file = "icon.png" 88 | 89 | [[files]] 90 | file = "mods/achievetodo.pw.toml" 91 | metafile = true 92 | 93 | [[files]] 94 | file = "mods/advancementsfullscreen.pw.toml" 95 | metafile = true 96 | 97 | [[files]] 98 | file = "mods/advancementssearch.pw.toml" 99 | metafile = true 100 | 101 | [[files]] 102 | file = "mods/betterf3.pw.toml" 103 | metafile = true 104 | 105 | [[files]] 106 | file = "mods/blur-plus.pw.toml" 107 | metafile = true 108 | 109 | [[files]] 110 | file = "mods/capes.pw.toml" 111 | metafile = true 112 | 113 | [[files]] 114 | file = "mods/cloth-config.pw.toml" 115 | metafile = true 116 | 117 | [[files]] 118 | file = "mods/cursorcentered-fix.pw.toml" 119 | metafile = true 120 | 121 | [[files]] 122 | file = "mods/customhud.pw.toml" 123 | metafile = true 124 | 125 | [[files]] 126 | file = "mods/dark-loading-screen.pw.toml" 127 | metafile = true 128 | 129 | [[files]] 130 | file = "mods/dcwa.pw.toml" 131 | metafile = true 132 | 133 | [[files]] 134 | file = "mods/debugify.pw.toml" 135 | metafile = true 136 | 137 | [[files]] 138 | file = "mods/dynamic-fps.pw.toml" 139 | metafile = true 140 | 141 | [[files]] 142 | file = "mods/entityculling.pw.toml" 143 | metafile = true 144 | 145 | [[files]] 146 | file = "mods/fabric-api.pw.toml" 147 | metafile = true 148 | 149 | [[files]] 150 | file = "mods/fabric-language-kotlin.pw.toml" 151 | metafile = true 152 | 153 | [[files]] 154 | file = "mods/fallingleaves.pw.toml" 155 | metafile = true 156 | 157 | [[files]] 158 | file = "mods/ferrite-core.pw.toml" 159 | metafile = true 160 | 161 | [[files]] 162 | file = "mods/fixbookgui.pw.toml" 163 | metafile = true 164 | 165 | [[files]] 166 | file = "mods/iris.pw.toml" 167 | metafile = true 168 | 169 | [[files]] 170 | file = "mods/krypton.pw.toml" 171 | metafile = true 172 | 173 | [[files]] 174 | file = "mods/lambdynamiclights.pw.toml" 175 | metafile = true 176 | 177 | [[files]] 178 | file = "mods/language-reload.pw.toml" 179 | metafile = true 180 | 181 | [[files]] 182 | file = "mods/libjf.pw.toml" 183 | metafile = true 184 | 185 | [[files]] 186 | file = "mods/lithium.pw.toml" 187 | metafile = true 188 | 189 | [[files]] 190 | file = "mods/main-menu-credits.pw.toml" 191 | metafile = true 192 | 193 | [[files]] 194 | file = "mods/mc+264204-fix.pw.toml" 195 | metafile = true 196 | 197 | [[files]] 198 | file = "mods/modelfix.pw.toml" 199 | metafile = true 200 | 201 | [[files]] 202 | file = "mods/modmenu.pw.toml" 203 | metafile = true 204 | 205 | [[files]] 206 | file = "mods/moreculling.pw.toml" 207 | metafile = true 208 | 209 | [[files]] 210 | file = "mods/multilineactionbar.pw.toml" 211 | metafile = true 212 | 213 | [[files]] 214 | file = "mods/no-resource-pack-warnings.pw.toml" 215 | metafile = true 216 | 217 | [[files]] 218 | file = "mods/respackopts.pw.toml" 219 | metafile = true 220 | 221 | [[files]] 222 | file = "mods/screenshot-to-clipboard.pw.toml" 223 | metafile = true 224 | 225 | [[files]] 226 | file = "mods/shulkerboxtooltip.pw.toml" 227 | metafile = true 228 | 229 | [[files]] 230 | file = "mods/shutupdeadentities.pw.toml" 231 | metafile = true 232 | 233 | [[files]] 234 | file = "mods/sodium-extra.pw.toml" 235 | metafile = true 236 | 237 | [[files]] 238 | file = "mods/sodium.pw.toml" 239 | metafile = true 240 | 241 | [[files]] 242 | file = "mods/xyzbook.pw.toml" 243 | metafile = true 244 | 245 | [[files]] 246 | file = "mods/yacl.pw.toml" 247 | metafile = true 248 | 249 | [[files]] 250 | file = "mods/yosbr.pw.toml" 251 | metafile = true 252 | 253 | [[files]] 254 | file = "mods/zoomify.pw.toml" 255 | metafile = true 256 | 257 | [[files]] 258 | file = "resourcepacks/Better Waxed Copper.zip" 259 | 260 | [[files]] 261 | file = "resourcepacks/Visual Fish Buckets.zip" 262 | 263 | [[files]] 264 | file = "resourcepacks/Visual Goat Horns.zip" 265 | 266 | [[files]] 267 | file = "resourcepacks/bacap-better-ru.pw.toml" 268 | metafile = true 269 | 270 | [[files]] 271 | file = "resourcepacks/bacap-language-pack.pw.toml" 272 | metafile = true 273 | 274 | [[files]] 275 | file = "resourcepacks/centered-crosshair-fix.pw.toml" 276 | metafile = true 277 | 278 | [[files]] 279 | file = "resourcepacks/centered-stone-bricks.pw.toml" 280 | metafile = true 281 | 282 | [[files]] 283 | file = "resourcepacks/colorful-sheared-sheep.pw.toml" 284 | metafile = true 285 | 286 | [[files]] 287 | file = "resourcepacks/default-dark-mode.pw.toml" 288 | metafile = true 289 | 290 | [[files]] 291 | file = "resourcepacks/fast-better-grass.pw.toml" 292 | metafile = true 293 | 294 | [[files]] 295 | file = "resourcepacks/fixed-barrel.pw.toml" 296 | metafile = true 297 | 298 | [[files]] 299 | file = "resourcepacks/hardcore-absorption-fix.pw.toml" 300 | metafile = true 301 | 302 | [[files]] 303 | file = "resourcepacks/map-marking-fix.pw.toml" 304 | metafile = true 305 | 306 | [[files]] 307 | file = "resourcepacks/minimal-rain.pw.toml" 308 | metafile = true 309 | 310 | [[files]] 311 | file = "resourcepacks/nether-bricks-fix.pw.toml" 312 | metafile = true 313 | 314 | [[files]] 315 | file = "resourcepacks/no-z-fighting.pw.toml" 316 | metafile = true 317 | 318 | [[files]] 319 | file = "resourcepacks/translations-for-sodium.pw.toml" 320 | metafile = true 321 | 322 | [[files]] 323 | file = "resourcepacks/trap-door-fix.pw.toml" 324 | metafile = true 325 | 326 | [[files]] 327 | file = "resourcepacks/unique-enchanted-books.pw.toml" 328 | metafile = true 329 | 330 | [[files]] 331 | file = "resourcepacks/yetanotherglint.pw.toml" 332 | metafile = true 333 | 334 | [[files]] 335 | file = "shaderpacks/bsl-shaders.pw.toml" 336 | metafile = true 337 | 338 | [[files]] 339 | file = "shaderpacks/complementary-reimagined.pw.toml" 340 | metafile = true 341 | 342 | [[files]] 343 | file = "shaderpacks/complementary-unbound.pw.toml" 344 | metafile = true 345 | -------------------------------------------------------------------------------- /pack/mods/achievetodo.pw.toml: -------------------------------------------------------------------------------- 1 | name = "AchieveToDo" 2 | filename = "achievetodo-mc1.21.4+0.1.1.jar" 3 | side = "both" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/DTTu3Q4G/versions/5AB9irtM/achievetodo-mc1.21.4%2B0.1.1.jar" 7 | hash-format = "sha512" 8 | hash = "a851fb86e74ef8b44b30eb26fb132f3285bcf1f956d7f812dee5081c25fbee76ac3269c2992349cf479a315454901369cd1188fcd356af34d60ebb10e1a7412b" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "DTTu3Q4G" 13 | version = "5AB9irtM" 14 | -------------------------------------------------------------------------------- /pack/mods/advancementsfullscreen.pw.toml: -------------------------------------------------------------------------------- 1 | name = "AdvancementsFullscreen" 2 | filename = "advancementsfullscreen-mc1.21.2+1.1.jar" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/7BgsROit/versions/zK2oAq2Z/advancementsfullscreen-mc1.21.2%2B1.1.jar" 7 | hash-format = "sha512" 8 | hash = "be607f11c67e705797f960f4711db40d252d46fc03570ecedd4644a7b4fcb82d80816b9c41594fbd45e61a1e1830eeff0f4551c48e4dccbdb41a65ec7da1878d" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "7BgsROit" 13 | version = "zK2oAq2Z" 14 | -------------------------------------------------------------------------------- /pack/mods/advancementssearch.pw.toml: -------------------------------------------------------------------------------- 1 | name = "AdvancementsSearch" 2 | filename = "advancementssearch-mc1.21.2+1.1.jar" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/Ccho67RI/versions/hekKu7pn/advancementssearch-mc1.21.2%2B1.1.jar" 7 | hash-format = "sha512" 8 | hash = "d25efc9c5b298337ffac233b93a2fd726ca2458152ec393cdf1ce6a8db1674380e42a4051e4821ddaaf7ed01b5ba61a550590fde55004802b97a8e802c075533" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "Ccho67RI" 13 | version = "hekKu7pn" 14 | -------------------------------------------------------------------------------- /pack/mods/betterf3.pw.toml: -------------------------------------------------------------------------------- 1 | name = "BetterF3" 2 | filename = "BetterF3-13.0.0-Fabric-1.21.4.jar" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/8shC1gFX/versions/729ec3Jf/BetterF3-13.0.0-Fabric-1.21.4.jar" 7 | hash-format = "sha512" 8 | hash = "aab1fc1419e534dfb98b1b33cd07df611f63d43e8975a8fc85b3f448c29bac75e35b8b9bf996689e7fce28e617e436078d244a63b6bd01cb3ae415139abb63c3" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "8shC1gFX" 13 | version = "729ec3Jf" 14 | -------------------------------------------------------------------------------- /pack/mods/blur-plus.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Blur+" 2 | filename = "blur-fabric-5.0.2+1.21.4.jar" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/NK39zBp2/versions/4oPJ4At3/blur-fabric-5.0.2%2B1.21.4.jar" 7 | hash-format = "sha512" 8 | hash = "e7b6e1e20d6d0319946b03245d9c6f4de57244939db69b869ebf7330ba956e94d44b1ed364a6e808d8c6e365a662f60fa6dff20d6ab804a7b5d6b37cbe450f0a" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "NK39zBp2" 13 | version = "4oPJ4At3" 14 | -------------------------------------------------------------------------------- /pack/mods/c2me-fabric.pw.toml!: -------------------------------------------------------------------------------- 1 | name = "Concurrent Chunk Management Engine (Fabric)" 2 | filename = "c2me-fabric-mc1.21.4-0.3.2+alpha.0.9.jar" 3 | side = "both" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/VSNURh3q/versions/dttNV6T7/c2me-fabric-mc1.21.4-0.3.2%2Balpha.0.9.jar" 7 | hash-format = "sha512" 8 | hash = "854e5472715634a12372a715a86996a74ee6a27826d2b1c5902356954d01471a7fee1ac7b5d17a59c83d8a56e4494a27154eb73fed94dc800f6f13d940f30d36" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "VSNURh3q" 13 | version = "dttNV6T7" 14 | -------------------------------------------------------------------------------- /pack/mods/capes.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Capes" 2 | filename = "capes-1.5.4+1.21.4-fabric.jar" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/89Wsn8GD/versions/4X4bIaS0/capes-1.5.4%2B1.21.4-fabric.jar" 7 | hash-format = "sha512" 8 | hash = "5c8fc321f596e2eb305e78f571a48843fcf3dc20aa43a69440fa034f53eac808b5e52644679ddfc5512d6b4a4a9101ece41c5d967ed2d557a6f2a22abe2abb03" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "89Wsn8GD" 13 | version = "4X4bIaS0" 14 | -------------------------------------------------------------------------------- /pack/mods/cloth-config.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Cloth Config API" 2 | filename = "cloth-config-17.0.144-fabric.jar" 3 | side = "both" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/9s6osm5g/versions/TJ6o2sr4/cloth-config-17.0.144-fabric.jar" 7 | hash-format = "sha512" 8 | hash = "ecc59da51149250284b0752475c7b328e0b0325888948391597afc638d6e67fa436297af12d2067376de0098ffa6ca86aa3b8d6011356c179222404c701c6345" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "9s6osm5g" 13 | version = "TJ6o2sr4" 14 | -------------------------------------------------------------------------------- /pack/mods/continuity.pw.toml!: -------------------------------------------------------------------------------- 1 | name = "Continuity" 2 | filename = "continuity-3.0.0-beta.4+1.20.2.jar" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/1IjD5062/versions/JXhQlDZl/continuity-3.0.0-beta.4%2B1.20.2.jar" 7 | hash-format = "sha1" 8 | hash = "f9eaa5fc75d2747dbe14818dfde04eaf7152ae3c" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "1IjD5062" 13 | version = "JXhQlDZl" 14 | -------------------------------------------------------------------------------- /pack/mods/cursorcentered-fix.pw.toml: -------------------------------------------------------------------------------- 1 | name = "CursorCentered Fix" 2 | filename = "cursorcenteredfix-1.2-beta.jar" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/3Vf97jLY/versions/zOCUDkrp/cursorcenteredfix-1.2-beta.jar" 7 | hash-format = "sha512" 8 | hash = "ade276b927e7e7d9db711fed753a6be390d69fc745baee0c2d33d28d917089267c68d3fd9dd4dd720d62c450ea6e65ed08108856511fa36295bf7e680fb8d945" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "3Vf97jLY" 13 | version = "zOCUDkrp" 14 | -------------------------------------------------------------------------------- /pack/mods/customhud.pw.toml: -------------------------------------------------------------------------------- 1 | name = "CustomHud" 2 | filename = "customhud-4.0.0+1.21.4.jar" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://github.com/diskree/CustomHUD/releases/download/v4.0.0%2B1.21.4/customhud-4.0.0+1.21.4.jar" 7 | hash-format = "sha1" 8 | hash = "2893b429874a6d3b69c2464d6ab60b15673c7aa0" 9 | -------------------------------------------------------------------------------- /pack/mods/dark-loading-screen.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Dark Loading Screen" 2 | filename = "dark-loading-screen-1.6.15.jar" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/h3XWIuzM/versions/D3zQNGWs/dark-loading-screen-1.6.15.jar" 7 | hash-format = "sha512" 8 | hash = "2330d59533a88e1a21291fcbfc00eb9bb8a0a651a1ffb557d5aab00ebe6cd152e1ae7f4dcb0d33c9923adb427e1d98340c4834b06af130b9b11cadb52a298ea6" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "h3XWIuzM" 13 | version = "D3zQNGWs" 14 | -------------------------------------------------------------------------------- /pack/mods/dcwa.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Disable Custom Worlds Advice" 2 | filename = "DisableCustomWorldsAdvice-6.0.jar" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/HdwRs3kc/versions/W0E7l3pF/DisableCustomWorldsAdvice-6.0.jar" 7 | hash-format = "sha512" 8 | hash = "962efd3d6533a243807a08df5a8e861189514c166d40063650b99e091557df31059f2472bd07f235addf7eadd8691a9c3003f98650bedbb5c24b00f16362505c" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "HdwRs3kc" 13 | version = "W0E7l3pF" 14 | -------------------------------------------------------------------------------- /pack/mods/debugify.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Debugify" 2 | filename = "Debugify-1.21.4+1.0.jar" 3 | side = "both" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/QwxR6Gcd/versions/TxwUizo2/Debugify-1.21.4%2B1.0.jar" 7 | hash-format = "sha512" 8 | hash = "9108fc2e114400ea72698b07fdf805c708e453e374b3794ebc8afcc2bd6e60cda9297b86fedae49b3b044704cebcde430f98aae3fd9db355ef0518a2887548b8" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "QwxR6Gcd" 13 | version = "TxwUizo2" 14 | -------------------------------------------------------------------------------- /pack/mods/dynamic-fps.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Dynamic FPS" 2 | filename = "dynamic-fps-3.7.7+minecraft-1.21.2-fabric.jar" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/LQ3K71Q1/versions/lCPnAoak/dynamic-fps-3.7.7%2Bminecraft-1.21.2-fabric.jar" 7 | hash-format = "sha512" 8 | hash = "4f2791c8fb873ec1e666b1983b1c4028e4954a054b1a39550ecdd1a7e5579e5ca0aa667f24d9682384cc7757698098018df78781be27dd5a37e54d09613bb4a6" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "LQ3K71Q1" 13 | version = "lCPnAoak" 14 | -------------------------------------------------------------------------------- /pack/mods/ebe.pw.toml!: -------------------------------------------------------------------------------- 1 | name = "Enhanced Block Entities" 2 | filename = "enhancedblockentities-0.9.1+1.20.2.jar" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/OVuFYfre/versions/eIFo7wvq/enhancedblockentities-0.9.1%2B1.20.2.jar" 7 | hash-format = "sha1" 8 | hash = "7d40ccbc5355602325ad3e633592441a63a3999a" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "OVuFYfre" 13 | version = "eIFo7wvq" 14 | -------------------------------------------------------------------------------- /pack/mods/entityculling.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Entity Culling" 2 | filename = "entityculling-fabric-1.7.2-mc1.21.4.jar" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/NNAgCjsB/versions/NkBXk0Ye/entityculling-fabric-1.7.2-mc1.21.4.jar" 7 | hash-format = "sha512" 8 | hash = "ad5689106a00b1ff9a47953cc4a3b64e0735de3e2fc9a9d183f7ae8caa48aa7fb62eff5d1c9419f3fd19d953a5183683aa550de1e513135f89d9d6bd89e4dad4" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "NNAgCjsB" 13 | version = "NkBXk0Ye" 14 | -------------------------------------------------------------------------------- /pack/mods/fabric-api.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Fabric API" 2 | filename = "fabric-api-0.112.0+1.21.4.jar" 3 | side = "both" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/P7dR8mSH/versions/kgg9d3no/fabric-api-0.112.0%2B1.21.4.jar" 7 | hash-format = "sha512" 8 | hash = "85952af45342f3f7f8834326a73e500d811dcb854bc472bc9d0df18ee36a63f3e7f14000bdda9bdc57f139a87c2ab7a1514c571dbb935694e4de6ae7d90fe0a4" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "P7dR8mSH" 13 | version = "kgg9d3no" 14 | -------------------------------------------------------------------------------- /pack/mods/fabric-language-kotlin.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Fabric Language Kotlin" 2 | filename = "fabric-language-kotlin-1.13.0+kotlin.2.1.0.jar" 3 | side = "both" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/Ha28R6CL/versions/csX9r2wS/fabric-language-kotlin-1.13.0%2Bkotlin.2.1.0.jar" 7 | hash-format = "sha512" 8 | hash = "bd6acac5e2196aae0095ec453aec46d54e0d925289895fac94b1426cabd3db7e275302502475c61b9719fc8f026e7aaa305122dcdf374c58620bc38b8b4e99a7" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "Ha28R6CL" 13 | version = "csX9r2wS" 14 | -------------------------------------------------------------------------------- /pack/mods/fabricskyboxes.pw.toml!: -------------------------------------------------------------------------------- 1 | name = "FabricSkyboxes" 2 | filename = "fabricskyboxes-0.7.3+mc1.20.2.jar" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/YBz7DOs8/versions/XGzaAlX8/fabricskyboxes-0.7.3%2Bmc1.20.2.jar" 7 | hash-format = "sha1" 8 | hash = "6ce1e8f99a901fd2e4e5f84d529e60f425b172ca" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "YBz7DOs8" 13 | version = "XGzaAlX8" 14 | -------------------------------------------------------------------------------- /pack/mods/fallingleaves.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Falling Leaves" 2 | filename = "fallingleaves-1.16.6+1.21.4.jar" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/WhbRG4iK/versions/AAk9cT9g/fallingleaves-1.16.6%2B1.21.4.jar" 7 | hash-format = "sha512" 8 | hash = "b3fbd59ab02fb0123dceb7feba98188b48e088d4689f6e87064d7bfd43312fbc4bfda582c90c2448f67161729423113436fef3b9bfc338bc40f5e90feb1f0e4c" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "WhbRG4iK" 13 | version = "AAk9cT9g" 14 | -------------------------------------------------------------------------------- /pack/mods/ferrite-core.pw.toml: -------------------------------------------------------------------------------- 1 | name = "FerriteCore" 2 | filename = "ferritecore-7.1.1-fabric.jar" 3 | side = "both" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/uXXizFIs/versions/IPM0JlHd/ferritecore-7.1.1-fabric.jar" 7 | hash-format = "sha512" 8 | hash = "f41dc9e8b28327a1e29b14667cb42ae5e7e17bcfa4495260f6f851a80d4b08d98a30d5c52b110007ee325f02dac7431e3fad4560c6840af0bf347afad48c5aac" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "uXXizFIs" 13 | version = "IPM0JlHd" 14 | -------------------------------------------------------------------------------- /pack/mods/fixbookgui.pw.toml: -------------------------------------------------------------------------------- 1 | name = "FixBookGUI" 2 | filename = "fixbookgui-1.8.0+1.21.4.jar" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/myKgAJq6/versions/3XqZJYmn/fixbookgui-1.8.0%2B1.21.4.jar" 7 | hash-format = "sha512" 8 | hash = "4bb6d96c9119226ba74784c7524bf8ec7d8937e5333d1199038b66d26469c65b13d273f27d7e5a53eb87f2de319b899b9be7c856a1653147f877023431ad2361" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "myKgAJq6" 13 | version = "3XqZJYmn" 14 | -------------------------------------------------------------------------------- /pack/mods/forge-config-api-port.pw.toml!: -------------------------------------------------------------------------------- 1 | name = "Forge Config API Port" 2 | filename = "ForgeConfigAPIPort-v21.4.1-1.21.4-Fabric.jar" 3 | side = "both" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/ohNO6lps/versions/lTrPTmMK/ForgeConfigAPIPort-v21.4.1-1.21.4-Fabric.jar" 7 | hash-format = "sha512" 8 | hash = "a5f84411c0b7b9e5e8d267e268183fcb2e46df955fd976ed3f4bc1fd45249ab5f902a23ab93cbdc45d5bb409a5d570e7f7ec9794ca74f4b6115bf3e95d29914b" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "ohNO6lps" 13 | version = "lTrPTmMK" 14 | -------------------------------------------------------------------------------- /pack/mods/iris.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Iris Shaders" 2 | filename = "iris-fabric-1.8.4+mc1.21.4.jar" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/YL57xq9U/versions/J55HRGSf/iris-fabric-1.8.4%2Bmc1.21.4.jar" 7 | hash-format = "sha512" 8 | hash = "6b0e76d013a8641023a69e910ad362cb26cc80f06e35e084ac16b1ce7dc1d4c69cf37692fb8e07e0c7cbf80f1eded23c776e2310be417aff99d404b1a9ca27e4" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "YL57xq9U" 13 | version = "J55HRGSf" 14 | -------------------------------------------------------------------------------- /pack/mods/krypton.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Krypton" 2 | filename = "krypton-0.2.8.jar" 3 | side = "both" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/fQEb0iXm/versions/Acz3ttTp/krypton-0.2.8.jar" 7 | hash-format = "sha512" 8 | hash = "5f8cf96c79bfd4d893f1d70da582e62026bed36af49a7fa7b1e00fb6efb28d9ad6a1eec147020496b4fe38693d33fe6bfcd1eebbd93475612ee44290c2483784" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "fQEb0iXm" 13 | version = "Acz3ttTp" 14 | -------------------------------------------------------------------------------- /pack/mods/lambdynamiclights.pw.toml: -------------------------------------------------------------------------------- 1 | name = "LambDynamicLights" 2 | filename = "lambdynamiclights-4.0.1+1.21.4.jar" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/yBW8D80W/versions/YgZzYuBw/lambdynamiclights-4.0.1%2B1.21.4.jar" 7 | hash-format = "sha512" 8 | hash = "ed8be22ea4099749a305aa59f86f112acd45e02f1e8b34e012e55666b3d03e385dbecc74fbb11209cb41bed16743834dafbb46676771e7f7e8697fed83d590a8" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "yBW8D80W" 13 | version = "YgZzYuBw" 14 | -------------------------------------------------------------------------------- /pack/mods/language-reload.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Language Reload" 2 | filename = "language-reload-1.7.2+1.21.4.jar" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/uLbm7CG6/versions/G4UHbATy/language-reload-1.7.2%2B1.21.4.jar" 7 | hash-format = "sha512" 8 | hash = "7786e372d8224c2913734ee88633ed7bf93e912236fad3615b6961f353bb6633c111ce52859ce57f73a33011c2aa8699c3e6c2b31c9aa123ee72ec579961052b" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "uLbm7CG6" 13 | version = "G4UHbATy" 14 | -------------------------------------------------------------------------------- /pack/mods/libjf.pw.toml: -------------------------------------------------------------------------------- 1 | name = "LibJF" 2 | filename = "libjf-3.18.3.jar" 3 | side = "both" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/WKwQAwke/versions/6wy6ArUZ/libjf-3.18.3.jar" 7 | hash-format = "sha512" 8 | hash = "728ded0b6c65cb16ddb63a70da1f352de287cc29ca27b6365ee731852f9791dd0f0be8cfb0c5b376c62d692a7e0838924f550238f95483d64b2aa0d2c1351583" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "WKwQAwke" 13 | version = "6wy6ArUZ" 14 | -------------------------------------------------------------------------------- /pack/mods/lithium.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Lithium" 2 | filename = "lithium-fabric-0.14.3+mc1.21.4.jar" 3 | side = "both" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/gvQqBUqZ/versions/t1FlWYl9/lithium-fabric-0.14.3%2Bmc1.21.4.jar" 7 | hash-format = "sha512" 8 | hash = "1a4eafbdcee3886d33c04aa462d13a8c1e345ff492001add262476585b78327a2d016e56385bced869615bc97161a34a0a716f5f579c8c1d7080b278f4f11183" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "gvQqBUqZ" 13 | version = "t1FlWYl9" 14 | -------------------------------------------------------------------------------- /pack/mods/main-menu-credits.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Main Menu Credits" 2 | filename = "main-menu-credits-1.2.0.jar" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/qJDfP7WN/versions/eUN0SbET/main-menu-credits-1.2.0.jar" 7 | hash-format = "sha512" 8 | hash = "fb12dd676a080691c78a701721520de1469d53e702710b21ca8eead54d56936e6b3a39b1003e022090de40d650239d547c81031cb4b8a8ab619e56b98cd92c2c" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "qJDfP7WN" 13 | version = "eUN0SbET" 14 | -------------------------------------------------------------------------------- /pack/mods/mc+264204-fix.pw.toml: -------------------------------------------------------------------------------- 1 | name = "MC-264204 Fix" 2 | filename = "mc264204fix-mc1.21.4+1.0.jar" 3 | side = "server" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/VrnSpNLn/versions/Y9y8rtFq/mc264204fix-mc1.21.4%2B1.0.jar" 7 | hash-format = "sha512" 8 | hash = "feb2ff076a2186c6380d51636e33b8351cab8af7a656565516f3bec1e75df5341cde7e01cc6f09f3b94a795ba01e4867d3ccef5b4baadd0ac884065a903badc1" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "VrnSpNLn" 13 | version = "Y9y8rtFq" 14 | -------------------------------------------------------------------------------- /pack/mods/modelfix.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Model Gap Fix" 2 | filename = "modelfix-1.21.3-1.10-fabric.jar" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/QdG47OkI/versions/h47zwBfZ/modelfix-1.21.3-1.10-fabric.jar" 7 | hash-format = "sha512" 8 | hash = "10276e176984a166aa278a560a1648b3055281f6fc1921d01fec11b355896b6f759b2f6d33169096236c32d390767938f41f8aa7bc24af978c5c8605365de67c" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "QdG47OkI" 13 | version = "h47zwBfZ" 14 | -------------------------------------------------------------------------------- /pack/mods/modmenu.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Mod Menu" 2 | filename = "modmenu-13.0.0-beta.1.jar" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/mOgUt4GM/versions/2pJcGBVh/modmenu-13.0.0-beta.1.jar" 7 | hash-format = "sha512" 8 | hash = "e142b42a007d7853fe53ca74c8cc933566a75aa3068f6f6216f55d794cd4f3344c56e3a2de3db4cd59363799aa92583c6f45633cd9a4bb6cb24115f60617dd8c" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "mOgUt4GM" 13 | version = "2pJcGBVh" 14 | -------------------------------------------------------------------------------- /pack/mods/moreculling.pw.toml: -------------------------------------------------------------------------------- 1 | name = "More Culling" 2 | filename = "moreculling-fabric-1.21.4-1.2.2.jar" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/51shyZVL/versions/3Kv9jtmA/moreculling-fabric-1.21.4-1.2.2.jar" 7 | hash-format = "sha512" 8 | hash = "20b76ab24346aebd4d632e5f81f09b62ff60e0c2abf4b1074ceacc29ff6d3ac01c67d9e5f3dd35f589c2d9bce6e62d5b771812692aaffa3b508e11d683e61f76" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "51shyZVL" 13 | version = "3Kv9jtmA" 14 | -------------------------------------------------------------------------------- /pack/mods/multilineactionbar.pw.toml: -------------------------------------------------------------------------------- 1 | name = "MultiLineActionBar" 2 | filename = "multilineactionbar-mc1.21+1.0.jar" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/KDABaxIE/versions/zCiq5hQj/multilineactionbar-mc1.21%2B1.0.jar" 7 | hash-format = "sha512" 8 | hash = "65d65edb474ba48eb4ea298235f788be9f98d62b3187515e09b65ba8c6af14c1556d896b1f1ce90bddd6318faaf2c9b7d17462bc67e55e28cbaee53f7cec100a" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "KDABaxIE" 13 | version = "zCiq5hQj" 14 | -------------------------------------------------------------------------------- /pack/mods/no-resource-pack-warnings.pw.toml: -------------------------------------------------------------------------------- 1 | name = "No Resource Pack Warnings" 2 | filename = "no-resource-pack-warnings-1.3.0.jar" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/6xKUDQcB/versions/Cs4frYPf/no-resource-pack-warnings-1.3.0.jar" 7 | hash-format = "sha512" 8 | hash = "e0ef15de5bbd7891feb27be825f98292973d4666da957c96c95f1e534f85ff7aeaa57d3677ef52bce2ba0104b94c6e0f26d8b284925c03f1b9b902873899ec89" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "6xKUDQcB" 13 | version = "Cs4frYPf" 14 | -------------------------------------------------------------------------------- /pack/mods/real-arrow-tip.pw.toml!: -------------------------------------------------------------------------------- 1 | name = "Real Arrow Tip" 2 | filename = "real-arrow-tip-0.1.0+mc1.20.jar" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/vgVfk0m2/versions/ds27RuKL/real-arrow-tip-0.1.0%2Bmc1.20.jar" 7 | hash-format = "sha1" 8 | hash = "3eb430c14fa789d263552a8c0512692a195f52ee" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "vgVfk0m2" 13 | version = "ds27RuKL" 14 | -------------------------------------------------------------------------------- /pack/mods/reeses-sodium-options.pw.toml!: -------------------------------------------------------------------------------- 1 | name = "Reese's Sodium Options" 2 | filename = "reeses-sodium-options-fabric-1.8.1+mc1.21.4.jar" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/Bh37bMuy/versions/PxI5NDgM/reeses-sodium-options-fabric-1.8.1%2Bmc1.21.4.jar" 7 | hash-format = "sha512" 8 | hash = "ef522ead901f2b2fd9b0a5835ec3546954b9ef14a13a0d9f9fe8af26d4c9e1c8c536cbf492c81cff2b57273cc0625ee991212bff0b58590eb5c89a858d0fcd20" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "Bh37bMuy" 13 | version = "PxI5NDgM" 14 | -------------------------------------------------------------------------------- /pack/mods/respackopts.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Respackopts" 2 | filename = "respackopts-4.12.3.jar" 3 | side = "both" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/TiF5QWZY/versions/k6zgD7uA/respackopts-4.12.3.jar" 7 | hash-format = "sha512" 8 | hash = "b16c33e57e577940a1a916e01eb8ec84a5d5160dde21645106bdd1715671de2f7dd43c7eb497605219157b3c52e36e1dd2cae3aadb1d150977f1971377b40b51" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "TiF5QWZY" 13 | version = "k6zgD7uA" 14 | -------------------------------------------------------------------------------- /pack/mods/rrls.pw.toml!: -------------------------------------------------------------------------------- 1 | name = "Remove Reloading Screen" 2 | filename = "rrls-5.0.11+mc1.21.3-fabric.jar" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/ZP7xHXtw/versions/4kb30Vsy/rrls-5.0.11%2Bmc1.21.3-fabric.jar" 7 | hash-format = "sha512" 8 | hash = "99a549b0f71e6bf389812e7b2b583fe9635b860ff6a100480b2f55af552bc3af9b45df30b315aa1ced360d84b40bdbead5cf492ed21b9604a3ab2f01b12b779c" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "ZP7xHXtw" 13 | version = "4kb30Vsy" 14 | -------------------------------------------------------------------------------- /pack/mods/screenshot-to-clipboard.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Screenshot to Clipboard" 2 | filename = "screenshot-to-clipboard-fabric-1.0.10.jar" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/1KiJRrTg/versions/DHUI24N7/screenshot-to-clipboard-fabric-1.0.10.jar" 7 | hash-format = "sha512" 8 | hash = "54f3c0fe55145f396a824c780bdaaf59026f855037ffa67c3c4228781685350d308feec5ed5527a7e4eaa1d4f71f6d106d5ac9d1bf7aa79cb74cad0953c60e8f" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "1KiJRrTg" 13 | version = "DHUI24N7" 14 | -------------------------------------------------------------------------------- /pack/mods/shulkerboxtooltip.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Shulker Box Tooltip" 2 | filename = "shulkerboxtooltip-fabric-5.2.2+1.21.4.jar" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/2M01OLQq/versions/L4CUJgGW/shulkerboxtooltip-fabric-5.2.2%2B1.21.4.jar" 7 | hash-format = "sha512" 8 | hash = "4fd87cafd10d6eff9c93193f8e73f113254fc88c98af3803c7707d07ba7632a083f9529174e211d78c6a6c873ae81e60bf501ab0889a753589f38c5270451a30" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "2M01OLQq" 13 | version = "L4CUJgGW" 14 | -------------------------------------------------------------------------------- /pack/mods/shutupdeadentities.pw.toml: -------------------------------------------------------------------------------- 1 | name = "ShutUpDeadEntities" 2 | filename = "shutupdeadentities-mc1.21.2+1.1.jar" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/9FJiZMp8/versions/VaGyE4aE/shutupdeadentities-mc1.21.2%2B1.1.jar" 7 | hash-format = "sha512" 8 | hash = "ad4a933fae560fe41eba2bb003667727717194a928fb902179384a61776b9e68d44dabeb3269bbfb2f7777aa62315afb62c517387d4c24f50e6e27ad2d7ff83a" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "9FJiZMp8" 13 | version = "VaGyE4aE" 14 | -------------------------------------------------------------------------------- /pack/mods/sodium-extra.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Sodium Extra" 2 | filename = "sodium-extra-fabric-0.6.1+mc1.21.4.jar" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/PtjYWJkn/versions/f4TfteNb/sodium-extra-fabric-0.6.1%2Bmc1.21.4.jar" 7 | hash-format = "sha512" 8 | hash = "84f33cff29ecdb535cc65d836839003c8739765e0a464e011486ceaf744693b5d40f36c4ea4b117f7f00139c1dbf1b3b0e51170f4055afa03567e4079358a0e9" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "PtjYWJkn" 13 | version = "f4TfteNb" 14 | -------------------------------------------------------------------------------- /pack/mods/sodium.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Sodium" 2 | filename = "sodium-fabric-0.6.3+mc1.21.4.jar" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/AANobbMI/versions/iPRNybGo/sodium-fabric-0.6.3%2Bmc1.21.4.jar" 7 | hash-format = "sha512" 8 | hash = "9066f7f41b25a7f55b9f8c128a2c0cbaa4e87232fe5ec58a4c5ac6ca1c803807fa43394bedd3856cc89032b1eb238a5dca115c158d59b4d25a832ae579207b7f" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "AANobbMI" 13 | version = "iPRNybGo" 14 | -------------------------------------------------------------------------------- /pack/mods/textile-backup.pw.toml!: -------------------------------------------------------------------------------- 1 | name = "Textile Backup" 2 | filename = "textile_backup-3.1.3-1.20.jar" 3 | side = "both" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/wwcspvkr/versions/XtGx3oB7/textile_backup-3.1.3-1.20.jar" 7 | hash-format = "sha1" 8 | hash = "5f5eb8989d66a7a3c79852ba43d7f0d831298bc6" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "wwcspvkr" 13 | version = "XtGx3oB7" 14 | -------------------------------------------------------------------------------- /pack/mods/xyzbook.pw.toml: -------------------------------------------------------------------------------- 1 | name = "XYZBook" 2 | filename = "xyzbook-mc1.21.4+1.1.1.jar" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/NUYcQ6wg/versions/5cgJwL6S/xyzbook-mc1.21.4%2B1.1.1.jar" 7 | hash-format = "sha512" 8 | hash = "8b3068c09dc8cb5d02d01ff1559668f624602bb771fab0e675731ea26afa0ebfe3293385e7cd75906aca8a3e21c6cd74586f6ff2cc7e24a4032a86e7866cd953" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "NUYcQ6wg" 13 | version = "5cgJwL6S" 14 | -------------------------------------------------------------------------------- /pack/mods/yacl.pw.toml: -------------------------------------------------------------------------------- 1 | name = "YetAnotherConfigLib (YACL)" 2 | filename = "YetAnotherConfigLib-3.6.2+1.21.4-fabric.jar" 3 | side = "both" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/1eAoo2KR/versions/VtWuZoXP/YetAnotherConfigLib-3.6.2%2B1.21.4-fabric.jar" 7 | hash-format = "sha512" 8 | hash = "50f3996aa4382692bbe569ee26506dacd0f4775d86964b5a5c47451e9514d5bf755b5fc1b75e629fc6391fe33d98598977e15c8880ed0f5785c5511ac3360933" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "1eAoo2KR" 13 | version = "VtWuZoXP" 14 | -------------------------------------------------------------------------------- /pack/mods/yosbr.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Your Options Shall Be Respected (YOSBR)" 2 | filename = "yosbr-0.1.2.jar" 3 | side = "both" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/WwbubTsV/versions/KMOzdYko/yosbr-0.1.2.jar" 7 | hash-format = "sha512" 8 | hash = "254f2225f6446523aa8c8274e83b31e27f3b2afc8fe4f490fb1b169dd518e10c7993acda5db0ab597474ddf9d69506b5e794242fada1e2f89ed7bf9d412a8f78" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "WwbubTsV" 13 | version = "KMOzdYko" 14 | -------------------------------------------------------------------------------- /pack/mods/zoomify.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Zoomify" 2 | filename = "Zoomify-2.14.2+1.21.3.jar" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/w7ThoJFB/versions/RKRjd2h1/Zoomify-2.14.2%2B1.21.3.jar" 7 | hash-format = "sha512" 8 | hash = "1fb4df13e2f2392af630407241f097b650b76738063db10c0907bb79a0e06571a4ec22ddfb98948174cdb2084bb5c1924265622525984a2af0c4e796b695c3de" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "w7ThoJFB" 13 | version = "RKRjd2h1" 14 | -------------------------------------------------------------------------------- /pack/pack.toml: -------------------------------------------------------------------------------- 1 | name = "${packName}" 2 | author = "${author}" 3 | version = "${packVersion}" 4 | pack-format = "packwiz:1.1.0" 5 | 6 | [index] 7 | file = "index.toml" 8 | hash-format = "sha256" 9 | 10 | [versions] 11 | fabric = "${loaderVersion}" 12 | minecraft = "${minecraftVersion}" 13 | 14 | [options] 15 | datapack-folder = "datapacks" 16 | no-internal-hashes = "true" 17 | -------------------------------------------------------------------------------- /pack/resourcepacks/Better Waxed Copper.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diskree/AchieveToDo-ModPack/894c0a5135c376fd1a89bd3a64e792e5eb391398/pack/resourcepacks/Better Waxed Copper.zip -------------------------------------------------------------------------------- /pack/resourcepacks/Visual Fish Buckets.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diskree/AchieveToDo-ModPack/894c0a5135c376fd1a89bd3a64e792e5eb391398/pack/resourcepacks/Visual Fish Buckets.zip -------------------------------------------------------------------------------- /pack/resourcepacks/Visual Goat Horns.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diskree/AchieveToDo-ModPack/894c0a5135c376fd1a89bd3a64e792e5eb391398/pack/resourcepacks/Visual Goat Horns.zip -------------------------------------------------------------------------------- /pack/resourcepacks/bacap-better-ru.pw.toml: -------------------------------------------------------------------------------- 1 | name = "BACAP Better RU" 2 | filename = "BACAP Better RU.zip" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/yiLJxtqH/versions/m5b67ERG/BACAP%20Better%20RU%202.2.2.zip" 7 | hash-format = "sha512" 8 | hash = "13d0bf164dbc66f73dbd9a4abd8688d6722bd191faad37383667d5db84edb77a2d87ed35d486e756ca61115a2b5cb1c10c6abd5839edb56e4a98feff6ffdf5e1" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "yiLJxtqH" 13 | version = "m5b67ERG" 14 | -------------------------------------------------------------------------------- /pack/resourcepacks/bacap-language-pack.pw.toml: -------------------------------------------------------------------------------- 1 | name = "BACAP Language Pack" 2 | filename = "BACAP Language Pack.zip" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/YX5bAAJN/versions/QHiTgYgH/BACAP%20Language%20Pack%201.18.zip" 7 | hash-format = "sha512" 8 | hash = "2175fa88815c355e7e1701351eec5dbef6cea7c7aa9daf01b8d2e5fdfdfbbcae9cf8e2b7066c8f51c079d9fa600e08ba43db9b0583c837dceb2fc69a831c0056" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "YX5bAAJN" 13 | version = "QHiTgYgH" 14 | -------------------------------------------------------------------------------- /pack/resourcepacks/centered-crosshair-fix.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Centered Crosshair Fix" 2 | filename = "Centered Crosshair Fix.zip" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/j1OkffnL/versions/TjSQP65f/centered_crosshair_fix.zip" 7 | hash-format = "sha512" 8 | hash = "f6d784fff4ccb1e283e867033e2e0c341994a45dc4e21abda3e04b83002e0a74801670ccd4ef259ee9b489592d45fb0e18a1da28e48aa5d2680ee391901ddd02" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "j1OkffnL" 13 | version = "TjSQP65f" 14 | -------------------------------------------------------------------------------- /pack/resourcepacks/centered-stone-bricks.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Centered stone bricks" 2 | filename = "Centered Stone Bricks Fix.zip" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/UNtuypyn/versions/gQ9XMMiw/ChiseledStoneBricksFix.zip" 7 | hash-format = "sha1" 8 | hash = "d2b81d1b04d2732e9c438bac561e0a9d415e2d00" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "UNtuypyn" 13 | version = "gQ9XMMiw" 14 | -------------------------------------------------------------------------------- /pack/resourcepacks/colorful-sheared-sheep.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Colorful Sheared Sheep" 2 | filename = "Colorful Sheared Sheep.zip" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/MUXWuCE8/versions/YxTbSmBF/Colorful%20Sheared%20Sheep%20%2B%20Fresh.zip" 7 | hash-format = "sha512" 8 | hash = "7ea0954c47f0f0448c164aa622b956ff503bebec2aee1c641e0ea2e3e1ff492b9a3e3d482a003b92e5ddf0a27c29886735174a3db3cfea43027013f29344b2a0" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "MUXWuCE8" 13 | version = "YxTbSmBF" 14 | -------------------------------------------------------------------------------- /pack/resourcepacks/ctm-overhaul.pw.toml!: -------------------------------------------------------------------------------- 1 | name = "Connected Textures (CTM) Overhaul" 2 | filename = "CTM Overhaul.zip" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/S1rcrDD7/versions/Nur7Brdi/CTM-Overhaul-V_5.0.zip" 7 | hash-format = "sha1" 8 | hash = "945a38988a427e8cb7ff417a274041b0eb63a9e5" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "S1rcrDD7" 13 | version = "Nur7Brdi" 14 | -------------------------------------------------------------------------------- /pack/resourcepacks/default-dark-mode.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Default Dark Mode" 2 | filename = "Default Dark Mode.zip" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/6SLU7tS5/versions/KW0bu9nm/Default-Dark-Mode-1.20.2%2B-2024.6.0.zip" 7 | hash-format = "sha512" 8 | hash = "51a0e39094ef650e29cd17b58b2c215e72f794ec479ec92ce49883c67a6b0d070df5aebb24070fb99c3ab7ea86bb650ecd0f586b32834e7f9b0efe90d5faca39" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "6SLU7tS5" 13 | version = "KW0bu9nm" 14 | -------------------------------------------------------------------------------- /pack/resourcepacks/fast-better-grass.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Fast Better Grass" 2 | filename = "Fast Better Grass.zip" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/dspVZXKP/versions/NjQ6roD9/Fast%20Better%20Grass.zip" 7 | hash-format = "sha512" 8 | hash = "54547acb70b3b6fc0cd89744e3d8074d4fcca4d553ea63c9d06fd53105d6d4eddb55b0e8d934c9ce5b36bc100c746e7d75726aae3c687b602316347075648ccb" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "dspVZXKP" 13 | version = "NjQ6roD9" 14 | -------------------------------------------------------------------------------- /pack/resourcepacks/fixed-barrel.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Fixed Barrel" 2 | filename = "Barrel Fix.zip" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/9R4Waktq/versions/MRtEAIjY/Fixed_Barrel_%281.21%29.zip" 7 | hash-format = "sha512" 8 | hash = "16add9cf27e4d9ccba2085df861f79f7a73c79a2ffa536f8ce50f7aaf7464f194f0c878e35245c1601134359e60f027b0b24a2b392fa11e888e76618fb2b7630" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "9R4Waktq" 13 | version = "MRtEAIjY" 14 | -------------------------------------------------------------------------------- /pack/resourcepacks/hardcore-absorption-fix.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Fixed Hardcore Absorption Hearts" 2 | filename = "Hardcore Absorption Fix.zip" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/8sAOhPiI/versions/MGjnHNAt/Hardcore%20Absorption%201.20.6.zip" 7 | hash-format = "sha512" 8 | hash = "7f541a2d3d487b1ada94ba401026ae433aac2e334cec840dc560c47d86b11c2d51ee35af0f43cecedc364b178a398c10afca8208437eb6140b274fde48282198" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "8sAOhPiI" 13 | version = "MGjnHNAt" 14 | -------------------------------------------------------------------------------- /pack/resourcepacks/map-marking-fix.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Map Marking Fix" 2 | filename = "Map Marking Fix.zip" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/3Bf4du2Z/versions/nLF9jnW8/MapMarkingsFix%5B1.14%2B%5D.zip" 7 | hash-format = "sha512" 8 | hash = "37ec3b011a899b044304f4dfb9a33c24c54b5546ba1a371ba4f055027906c87904fd3db7891653da4a1529eb1bbd1c5557145de34242aee6a9e34e27a37092b1" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "3Bf4du2Z" 13 | version = "nLF9jnW8" 14 | -------------------------------------------------------------------------------- /pack/resourcepacks/minimal-rain.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Minimal Rain & Snow" 2 | filename = "Minimal Rain & Snow.zip" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/9aE6Ib8a/versions/Z55eHlrO/Minimal-Rain%20and-Snow-2.2.zip" 7 | hash-format = "sha512" 8 | hash = "61ace69f23f8b2e0de71429646ea61a5a269d8cf2654357029c65ca5267081d34ca8302e9420166c974fcd0008fc93ced6080423079e7d8ccf8d6298d63d2f4a" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "9aE6Ib8a" 13 | version = "Z55eHlrO" 14 | -------------------------------------------------------------------------------- /pack/resourcepacks/nether-bricks-fix.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Nether Bricks Fix" 2 | filename = "Nether Bricks Fix.zip" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/XKwQ1c2r/versions/woadggX5/Nether%20Bricks%20Fix.zip" 7 | hash-format = "sha512" 8 | hash = "da2445e4c5a2ad4b08483c1b5a861313b3299c78e0ded883c6e74cc84d46b487dff3b56f96388e746635ce1f8dc8d6f78f72955115626b73f1c943ddf8b8d394" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "XKwQ1c2r" 13 | version = "woadggX5" 14 | -------------------------------------------------------------------------------- /pack/resourcepacks/no-z-fighting.pw.toml: -------------------------------------------------------------------------------- 1 | name = "No Z-Fighting" 2 | filename = "Z-Fighting Fix.zip" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/gfshuk3a/versions/wN3ltU30/NoZ-Fighting-v1.5.zip" 7 | hash-format = "sha512" 8 | hash = "baf12cbd6d1e3e53f282245b676700863877e9f48af6e2941ffadcdb0e9faffb932d01b55923c8ae1eae3b25c27479c8d98176dcaf5d9cebba9b307f2af56d9b" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "gfshuk3a" 13 | version = "wN3ltU30" 14 | -------------------------------------------------------------------------------- /pack/resourcepacks/translations-for-sodium.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Translations for Sodium" 2 | filename = "Translations for Sodium.zip" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/yfDziwn1/versions/IhmUucgL/SodiumTranslations.zip" 7 | hash-format = "sha512" 8 | hash = "fdb37ba5d12f0f55f72fe7d2e892855ed85e1a1b8aefdd49e55663be385d2ad348dfb4ae28c2a8e6907bcc646b340d3e1bfe6a087efb93ee5ed04aefd875a3bd" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "yfDziwn1" 13 | version = "IhmUucgL" 14 | -------------------------------------------------------------------------------- /pack/resourcepacks/trap-door-fix.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Trap door Fix" 2 | filename = "Trapdoor Fix.zip" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/wiEScAIn/versions/W9K0zpjW/Trapdoor%20Fix.zip" 7 | hash-format = "sha512" 8 | hash = "de9bf05fa8eef76d9593c2b18a254fcb8701fbfe3e1cfe7f301b461232cb9f0922de5047b138d2759ed559ac55818ee1c00a7f3aa4be6778487d720a6fd39a17" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "wiEScAIn" 13 | version = "W9K0zpjW" 14 | -------------------------------------------------------------------------------- /pack/resourcepacks/unique-enchanted-books.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Unique Enchanted Books" 2 | filename = "Unique Enchanted Books.zip" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/54UxoRa8/versions/WNgqvleM/UniqueEnchantedBooks_v2.1.zip" 7 | hash-format = "sha512" 8 | hash = "74c7f40801a9f1e2e4363f87249031c431ff82b929b6046bff16abadd28d55f0d48a3bf982ec4c398269efc78f46af3d38fae16fdd91e07ed96f727834cca72a" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "54UxoRa8" 13 | version = "WNgqvleM" 14 | -------------------------------------------------------------------------------- /pack/resourcepacks/yetanotherglint.pw.toml: -------------------------------------------------------------------------------- 1 | name = "YetAnotherGlint" 2 | filename = "Yet Another Glint.zip" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/h51P631G/versions/gNBjsYoq/Yet%20Another%20Glint.zip" 7 | hash-format = "sha512" 8 | hash = "4ca0c309c53f8b44c353d9de7ee3d68e8c5bdbbd83eb53219c615365cd978e37c90b34d8a5dfc65f758a9e1e475480c0dc8ead4b0e71c693dee50906e097e460" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "h51P631G" 13 | version = "gNBjsYoq" 14 | -------------------------------------------------------------------------------- /pack/shaderpacks/bsl-shaders.pw.toml: -------------------------------------------------------------------------------- 1 | name = "BSL Shaders" 2 | filename = "BSL_v8.4.01.1.zip" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/Q1vvjJYV/versions/9NNQ6mPZ/BSL_v8.4.01.1.zip" 7 | hash-format = "sha512" 8 | hash = "a5241465e88ae45aa839694818113a85bda9adbd8e40c880ac025071c39aaaab109f3b39a836091c9d39a3f0f9b59cbe88fa6399fdd4ceb75072eb0b921793b3" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "Q1vvjJYV" 13 | version = "9NNQ6mPZ" 14 | -------------------------------------------------------------------------------- /pack/shaderpacks/complementary-reimagined.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Complementary Shaders - Reimagined" 2 | filename = "ComplementaryReimagined_r5.3.zip" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/HVnmMxH1/versions/71Hn3myZ/ComplementaryReimagined_r5.3.zip" 7 | hash-format = "sha512" 8 | hash = "57fc12546636403971b0ef842755bfc8c80fc08f6843e55660b5d2c72db6e682b34cbd38c27148b5835c6d634def16fa78f56df20cb7fb498447effd28f288b4" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "HVnmMxH1" 13 | version = "71Hn3myZ" 14 | -------------------------------------------------------------------------------- /pack/shaderpacks/complementary-unbound.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Complementary Shaders - Unbound" 2 | filename = "ComplementaryUnbound_r5.3.zip" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/R6NEzAwj/versions/CVu3AGAd/ComplementaryUnbound_r5.3.zip" 7 | hash-format = "sha512" 8 | hash = "77171616e35fe456898a6d140f858de6c2011e7001d3263404e6cd45a356ffeccfacef9182478d6315a1e321642d14bdd5eca3865ecad85b750f5d4f404df055" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "R6NEzAwj" 13 | version = "CVu3AGAd" 14 | --------------------------------------------------------------------------------