diff --git a/config/bcc-common.toml b/config/bcc-common.toml index 4b77207..74b49b5 100644 --- a/config/bcc-common.toml +++ b/config/bcc-common.toml @@ -7,7 +7,7 @@ #The name of the modpack modpackName = "Banana" #The version of the modpack - modpackVersion = "1.8" + modpackVersion = "1.10" #Use the metadata.json to determine the modpack version #ONLY ENABLE THIS IF YOU KNOW WHAT YOU ARE DOING useMetadata = false diff --git a/config/entangled-common.toml b/config/entangled-common.toml new file mode 100644 index 0000000..a3ab74f --- /dev/null +++ b/config/entangled-common.toml @@ -0,0 +1,22 @@ +[Client] + # When looking at an Entangled Block, should its bound block be highlighted? + # Allowed values: true, false - Default: true + renderBlockHighlight = true + + # Should the block rendered inside entangled blocks rotate? + # Allowed values: true, false - Default: true + rotateRenderedBlock = true + +[General] + # Can entangled blocks be bound between different dimensions? Previously bound entangled blocks won't be affected. + # Allowed values: true, false - Default: true + allowDimensional = false + + # What is the max range in which entangled blocks can be bound? Only affects blocks in the same dimension. -1 for infinite range. Previously bound entangled blocks won't be affected. + # Allowed range: -1 ~ 2147483647 - Default: -1 + maxDistance = 64 + + # Should the `entangled:invalid_targets` tag be treated as a whitelist rather than a blacklist? If true, entangled blocks can only be bound to blocks in the tag. + # Allowed values: true, false - Default: false + useWhitelist = false + diff --git a/config/parcool-client.toml b/config/parcool-client.toml index fc7d068..1031bdb 100644 --- a/config/parcool-client.toml +++ b/config/parcool-client.toml @@ -62,7 +62,7 @@ #Enable custom animations enable_animation = true #Enable custom animation of falling - enable_falling_animation = true + enable_falling_animation = false #Enable lean animation while FastRun enable_lean_animation_fast_run = true #Enable first-person-view animations diff --git a/config/quark-common.toml b/config/quark-common.toml index 4252a82..e114c79 100644 --- a/config/quark-common.toml +++ b/config/quark-common.toml @@ -272,7 +272,7 @@ [management] "Automatic Tool Restock" = true - "Easy Transferring" = true + "Easy Transferring" = false "Expanded Item Interactions" = true "Hotbar Changer" = false "Inventory Sorting" = false diff --git a/config/resourcepackoverrides.json b/config/resourcepackoverrides.json index 9ba983f..cdf408d 100644 --- a/config/resourcepackoverrides.json +++ b/config/resourcepackoverrides.json @@ -11,19 +11,13 @@ "file/cubic-sun-moon-v1.8.5.zip", "file/Midnighttiggers-FCT-Default_1.20_V8.zip", "file/Nautilus3D-V2.2.zip", - "file/FreshAnimations_v1.10.4.zip", - "vanillabackport:freshly_animated", - "file/FA+All_Extensions-v1.8.1.zip", - "file/FreshCompats_v1.6.zip", "file/-1.21.2 Fresh Moves v3.1 (With Animated Eyes).zip", "file/Comforts Modernized - V1.1.zip", "file/[1.5] Enhanced Boss Bars.zip", "file/Create Style Interface 1.21.zip", "file/Computer Craft Recreated v1.2.zip", - "file/Created+Pretty+Pipes1.0+FIXED.zip", "file/CreateSophStorage.zip", - "file/CreateSophBackpacks.zip", - "file/Create+Simple+Storage+2.1.zip" + "file/CreateSophBackpacks.zip" ], "pack_overrides": { // The title and description are overridden for the vanilla assets pack @@ -56,8 +50,8 @@ "force_compatible": true, "required": true }, - "file/Created+Pretty+Pipes1.0+FIXED.zip":{ - "title": "\"Created Pretty Pipes\"", + "file/-1.21.2 Fresh Moves v3.1 (With Animated Eyes).zip":{ + "title": "\"Fresh Moves\"", "force_compatible": true, "required": true }, @@ -82,26 +76,6 @@ "default_position": "BOTTOM", "required": true }, - "file/FreshAnimations_v1.10.4.zip":{ - "title": "\"Fresh Animations\"", - "force_compatible": true, - "default_position": "BOTTOM", - "required": true - }, - "file/FA+All_Extensions-v1.8.1.zip":{ - "title": "\"Fresh Animations Extensions\"", - "force_compatible": true, - "required": true - }, - "file/FreshCompats_v1.6.zip":{ - "title": "\"Fresh Animations Mod Compatibility\"", - "force_compatible": true, - "required": true - }, - "vanillabackport:freshly_animated":{ - "force_compatible": true, - "required": true - }, "file/cubic-sun-moon-v1.8.5.zip":{ "title": "\"Cubic Sun & Moon\"", "force_compatible": true, @@ -111,11 +85,6 @@ "title": "\"Comforts Modernized\"", "force_compatible": true, "required": true - }, - "file/Create+Simple+Storage+2.1.zip":{ - "title": "\"Create Tom's Simple Storage\"", - "force_compatible": true, - "required": true } } } diff --git a/config/shut_up_gl_error.json5 b/config/shut_up_gl_error.json5 new file mode 100644 index 0000000..3697267 --- /dev/null +++ b/config/shut_up_gl_error.json5 @@ -0,0 +1,6 @@ +{ + /* - default: SILENT + - must be one of: SILENT, LOG_ONCE, LOG_ALWAYS + */ + "mode": "LOG_ONCE" +} diff --git a/config/toms_storage-common.toml b/config/toms_storage-common.toml new file mode 100644 index 0000000..4c955de --- /dev/null +++ b/config/toms_storage-common.toml @@ -0,0 +1,11 @@ +#IMPORTANT NOTICE: +#THIS IS ONLY THE COMMON CONFIG. It does not contain all the values adjustable for Tom's Simple Storage +#The settings have been moved to toms_storage-server.toml +#That file is PER WORLD, meaning you have to go into 'saves//serverconfig' to adjust it. Those changes will then only apply for THAT WORLD. +#You can then take that config file and put it in the 'defaultconfigs' folder to make it apply automatically to all NEW worlds you generate FROM THERE ON. +#This may appear confusing to many of you, but it is a new sensible way to handle configuration, because the server configuration is synced when playing multiplayer. +importantInfo = true +#List of mod ids whose blocks is ignored by the inventory connector +blockedMods = [] +#List of block ids ignored by the inventory connector +blockedBlocks = [] diff --git a/index.toml b/index.toml index 6b469dd..35e447f 100644 --- a/index.toml +++ b/index.toml @@ -22,7 +22,7 @@ hash = "199780a11fff42f04e8806677fff6255d51e815493b52fa7224be8b6b344306d" [[files]] file = "config/bcc-common.toml" -hash = "1b64c7ccdcb3b7a47a11bfdef5dad980a7d807714fa5252977ae5fd905943da5" +hash = "3771dfad48a6c5c204fef7cd3a541125accd9f6c0c2397a33d388318422af07b" [[files]] file = "config/blueprint-client.toml" @@ -80,6 +80,10 @@ hash = "41ce410b7d4ba54e280ddc4fc4f71c035cc357829b18f7bae3957de7df097897" file = "config/enhancedai/common.toml" hash = "ea1bd7336edb53b5730a6bd8dccfd982685c5f0915d8a4b04dbda96648dcc2b9" +[[files]] +file = "config/entangled-common.toml" +hash = "a27a810e6440e2b17b8cefa3fa721cf00327f03dbc4a00638a53f1a147702438" + [[files]] file = "config/flywheel-client.toml" hash = "40c69f75ea330bf20015e1c1d28138a3b994d5ab124f688d13c411d5849a82f9" @@ -106,7 +110,7 @@ hash = "70d35f4c521f68caf03a22633e644415fc155393f14add1d3bc96238f7a77288" [[files]] file = "config/parcool-client.toml" -hash = "a7d83df7bad19f18f86b53591c90f12815bac56219384f7d78dc03e83c61b3ce" +hash = "6760d77288649e0ebc702116006d3337e97e98adaed58058ced781eb987f3eb0" [[files]] file = "config/parcool-server.toml" @@ -114,11 +118,15 @@ hash = "7f88d930122b050cd4d49852b7172ce7839ae3562cc91e8266f7353b2e5677f7" [[files]] file = "config/quark-common.toml" -hash = "d9a0d3a15eb2eca9b8aefc583ce6f2a72d26104233f1d3c2a2f73f6d030acf76" +hash = "158a5c5c28dcc68d22afceb9ad22935794714400961f03dcc2a7afff724ecc57" [[files]] file = "config/resourcepackoverrides.json" -hash = "b510cd460f6a5660a28761a89dac6f91c17827c166018b431f57dda7e58e0fe2" +hash = "8afae8598ec4ca875f6e7512d97967f15264181981852b3056cb6f8f3993be3d" + +[[files]] +file = "config/shut_up_gl_error.json5" +hash = "5b7b711efa3e2c74c6d86acdd16e6ec3bee90a045f623343ce4e9ee7b88dab89" [[files]] file = "config/silentgear-common.toml" @@ -144,6 +152,10 @@ hash = "f5d035139186e131823dddb8a0f29ea17e7170fcd48592af10f7e68139e07e68" file = "config/supplementaries-client.toml" hash = "80e5996a4fd4b93a98b66e0ea4892767932cae2cc1789650b6016e976cedc001" +[[files]] +file = "config/toms_storage-common.toml" +hash = "b54cd94393754928944a5705e3c3c783144efa6541231895482eb3e031834605" + [[files]] file = "config/treechop-common.toml" hash = "9c315e81c1394af9192b987cfb55e62e3865149e791dbfbc97922bcbf369b494" @@ -165,8 +177,120 @@ file = "kubejs/assets/create/textures/block/display_link_side_powered.png" hash = "7784d62c294cbe50e33f0bf695d03b69adbe6b167e224a9222b0628ac9b2eab4" [[files]] -file = "kubejs/data/createteleporters/recipe/quantum_mechanism_recipe.json" -hash = "2e174d68c2e3e808ba038a1bad5560bb598097fbc4609043760ee2e852268904" +file = "kubejs/assets/toms_storage/models/block/cable_connector/base.json" +hash = "de2bd82773201064a563f46dead3a5db87f47de94aaf36b25321659a06ffc571" + +[[files]] +file = "kubejs/assets/toms_storage/models/block/cable_connector/item.json" +hash = "c28c94095d018fe2402c2e0cb7cc1f783488ce12662f7ed36adef49e9485efd1" + +[[files]] +file = "kubejs/assets/toms_storage/models/block/crafting_terminal.json" +hash = "2e2d162478d4f20a71c73861b475d8f1e1bee19a5203602a55de30b5b36c5d07" + +[[files]] +file = "kubejs/assets/toms_storage/models/block/inventory_connector.json" +hash = "2bad73291c6e634fc4cbdd3833fb890b1e0ce472cf04221698b699960be80454" + +[[files]] +file = "kubejs/assets/toms_storage/models/block/inventory_hopper_basic.json" +hash = "e62804aab5f5ca02aa28afcdbf304c3a4e20f3f852a809aaea7c074ec0504f36" + +[[files]] +file = "kubejs/assets/toms_storage/models/block/inventory_proxy.json" +hash = "1e117fcb3c74b1d2a45ed8c92472255bca3c0c9287cd7596a82104d0211a706e" + +[[files]] +file = "kubejs/assets/toms_storage/models/block/level_emitter_off.json" +hash = "54917d94e2ec3024385aa7c674b8d6fdfb0fc4506170aae61ecacdf428e911ac" + +[[files]] +file = "kubejs/assets/toms_storage/models/block/level_emitter_on.json" +hash = "f0793eb06ae108fb1a3f1b94dd743b2ef3b40c9fb784c9f25ec5d01a218b001b" + +[[files]] +file = "kubejs/assets/toms_storage/models/block/storage_terminal.json" +hash = "8810ba74346131318296a5f821f43c1782215d14740f5db3ce29558863a1706e" + +[[files]] +file = "kubejs/assets/toms_storage/models/block/trim.json" +hash = "b83e65265d5ce32c91b5689da089bc00112bd75b670dce24e8e2af9f35e05a19" + +[[files]] +file = "kubejs/assets/toms_storage/textures/block/crafting_link.png" +hash = "48a53dcfbe96b46959e515296e8b10b2bc8575f0049aba34d0c85e7471491898" + +[[files]] +file = "kubejs/assets/toms_storage/textures/block/hopper.png" +hash = "3f8a6b1b9a8365bfb786ccf2e58f06571e9758e66b93e70fbdd41c9f8babac2c" + +[[files]] +file = "kubejs/assets/toms_storage/textures/block/inventory_cable.png" +hash = "f4ee7b2005fe9b4260e21993f6e2299f51e6a9f6076ec0955bdb8d6c7f6e2056" + +[[files]] +file = "kubejs/assets/toms_storage/textures/block/keyboard.png" +hash = "2f26017444c82e412be9f6f504f82c6eb215af207208b45c409682ed0d7a7a5c" + +[[files]] +file = "kubejs/assets/toms_storage/textures/block/opencrate_bottom.png" +hash = "a6c98176d32d57076c7a906badfd0275838a4bd859d4c8754c8acd27b8775e9b" + +[[files]] +file = "kubejs/assets/toms_storage/textures/block/opencrate_side.png" +hash = "6d9a8013a7d46e6d3af1178202e16f9765de4bbff7b8cff04f45e237675b2c54" + +[[files]] +file = "kubejs/assets/toms_storage/textures/block/opencrate_top.png" +hash = "d0e383fc903cfd1c37f1e54de2fdb20a569c7779a3efe096475c1f29e9de228c" + +[[files]] +file = "kubejs/assets/toms_storage/textures/block/proxy_side.png" +hash = "3b860034cf23a13e36b6b2a31bb9c5435c656ce90184acb88a8f8fb22232b17a" + +[[files]] +file = "kubejs/assets/toms_storage/textures/block/proxy_top.png" +hash = "d8fc1c0faa8e61b45f66eb114cd5d247e692c5a63057142d35f04c147ccc7f44" + +[[files]] +file = "kubejs/assets/toms_storage/textures/block/terminal_link.png" +hash = "79c26cf20110a8e22f5860814577145846fb5578a5ad80c795e15210403c9738" + +[[files]] +file = "kubejs/assets/toms_storage/textures/block/trim.png" +hash = "093e2ca74695222dfe16afc6efef3fcca0af8b875f4ba2f1f7e9c908eba394b5" + +[[files]] +file = "kubejs/assets/toms_storage/textures/gui/crafting_terminal.png" +hash = "4b0461c6bea1301e83a63a270e3d0e7880363b6797da7c948cd9ad46ab4351a1" + +[[files]] +file = "kubejs/assets/toms_storage/textures/gui/storage_terminal.png" +hash = "a4a05102ee564955d71566a7d8c085880be35a497661a2d4645fcf6e5e3c13e9" + +[[files]] +file = "kubejs/assets/toms_storage/textures/item/adv_wireless_terminal.png" +hash = "060161bd209cb7ff6c1649f5d9dbb0de84531e854f65cdc3047d4ad6fef75ec1" + +[[files]] +file = "kubejs/assets/toms_storage/textures/item/item_filter.png" +hash = "4eb9e863b228cf422f46fe4e5ac7118a6749b4eef659fa5a1ce4421a7f6b7cb3" + +[[files]] +file = "kubejs/assets/toms_storage/textures/item/paint_kit.png" +hash = "c1b460c77205ca1688e7ad491d4f3a5b04340f3836640501485335cfffddba5c" + +[[files]] +file = "kubejs/assets/toms_storage/textures/item/poly_item_filter.png" +hash = "dcd61999850ad73bacb208e08f170601d29238bf0b1a5ba70ab8d7f866603a93" + +[[files]] +file = "kubejs/assets/toms_storage/textures/item/tag_item_filter.png" +hash = "d12225b611caf3aaa8d026df4b9302a10f470764625f20a3506b0ce8a21a7acd" + +[[files]] +file = "kubejs/assets/toms_storage/textures/item/wireless_terminal.png" +hash = "7010330160f4af3b97c2cd99ef529b724dffa11a320e99cc202fff51aae7227c" [[files]] file = "kubejs/server_scripts/simple_storage.js" @@ -650,6 +774,11 @@ file = "mods/create-connected.pw.toml" hash = "a548a99f9d9ba0d237aaf64acee67b29271d05a40c1c3ef87bc1bc18267c640c" metafile = true +[[files]] +file = "mods/create-contraption-terminals.pw.toml" +hash = "5178c05f0788498cb6db144a990732d45f781194830b3f99ea73b890707f892b" +metafile = true + [[files]] file = "mods/create-deco.pw.toml" hash = "67a405e6307f900d168deaa954a4309c3b44a6025e4efd7b8e774b6f9d3a69cd" @@ -940,6 +1069,11 @@ file = "mods/enhanced-mob-cap.pw.toml" hash = "aad3f224ee9f33e9ccb6d1759f036de002af6f54201c4695a95e9b13960cff10" metafile = true +[[files]] +file = "mods/entangled.pw.toml" +hash = "88cf96c7d670dda6a4a06f28a6e9625cc5ca0a08bceeeed88694b7c44deeb249" +metafile = true + [[files]] file = "mods/entity-model-features.pw.toml" hash = "3937618f06648f5ad0c7be0195b5fa75bf6d7464ee133bd59bb5b13753090de7" @@ -1189,6 +1323,11 @@ file = "mods/inventory-particles.pw.toml" hash = "dd0e33b72227eced263649c930c4a11162365591c02b5e7008ae111c0ea16070" metafile = true +[[files]] +file = "mods/inventory-tabs.pw.toml" +hash = "77e564f0ba938056be27bf43b0422c0fcb767aa206e8cd0ee351aada0f664591" +metafile = true + [[files]] file = "mods/iris.pw.toml" hash = "f67aa60c765593a8c70f78296a460349c6aef5f4a16d173eae02e8803b545ad4" @@ -1196,7 +1335,7 @@ metafile = true [[files]] file = "mods/ismah.pw.toml" -hash = "e7eea4daa9960af8d543fa89ac2952b6a3f2a9b88f66471fad2aebb33301690b" +hash = "94fd333633e9ce7b25aefb1966f9fc0af8edf76e3c7ca255ff1e30860af8ec4f" metafile = true [[files]] @@ -1638,11 +1777,6 @@ file = "mods/power-grid.pw.toml" hash = "1c5522db3b8327e889b0ec6fe8569c4f864b8515a5f1cf439c4bae86a86234e2" metafile = true -[[files]] -file = "mods/pretty-pipes.pw.toml" -hash = "039bf65fc6c241df88c6f4b9fac99826fbf2d7c295691d3cdd68128ef23598d9" -metafile = true - [[files]] file = "mods/pretty-rain.pw.toml" hash = "8319748b7c1a39462d159ed94da5c972b99958628c776be8d7c1e4c48fdaa5eb" @@ -1923,11 +2057,6 @@ file = "mods/spice-of-life-onion.pw.toml" hash = "6d22056366c7d5e3a8a79a8549a4b7209702d021590d8b3003de525f1bf29a63" metafile = true -[[files]] -file = "mods/spyglass-improvements.pw.toml" -hash = "08e7625da2ecef8e836652537f2bee175ee332809f235f6d3dece03f97d154bc" -metafile = true - [[files]] file = "mods/srdp.pw.toml" hash = "c40cd6e94191418cc6f334ffc37d55f09064ab19623ea119b2e74c9688d82109" @@ -2068,6 +2197,11 @@ file = "mods/urban-decor.pw.toml" hash = "3201f51b84dfcc43865c4699917a2b26ab62bd5b32b83066f80986314ed2709c" metafile = true +[[files]] +file = "mods/utility-belt.pw.toml" +hash = "13557c2153ca6f83d5c67b445c382878321088f96d3825b473f32cbd5bedac6f" +metafile = true + [[files]] file = "mods/vanillabackport.pw.toml" hash = "ca37901ce16f10e30715edf354b5d08c500e60abdb7ce64da79ce04a3d880ced" @@ -2258,11 +2392,6 @@ file = "resourcepacks/create-style-interface.pw.toml" hash = "b8b5779ab7bae27e137fcab4cb1d5c675e6d960ce91961fceb421ebb5dad0eee" metafile = true -[[files]] -file = "resourcepacks/created-pretty-pipes.pw.toml" -hash = "4bd6658dce272ed195c49753ea45ae15db5334111fbd3ce8251cbf7ffc8c7519" -metafile = true - [[files]] file = "resourcepacks/cubic-sun-moon.pw.toml" hash = "6d198fcead3ae516d33d9011f3ecf9717a72b963aadea7a6b3ad7f0c7cada070" @@ -2273,21 +2402,6 @@ file = "resourcepacks/enhanced-boss-bars.pw.toml" hash = "2f2b5757bfa163a25bda0f2b911eae0b4e636b172f1928e07b47b45bb528e78b" metafile = true -[[files]] -file = "resourcepacks/fresh-animations-extensions.pw.toml" -hash = "a609bfde1f92ebb5c5462a9a7aa0464888b5bdb271392c81787ff3e27239ce4a" -metafile = true - -[[files]] -file = "resourcepacks/fresh-animations.pw.toml" -hash = "6a1556a0e4fcb411b33efafc3382b4abd9a6e671f140dc0d42e9aad2808e24f3" -metafile = true - -[[files]] -file = "resourcepacks/fresh-compats.pw.toml" -hash = "177f1c99727cc979bca59e570feb006e45a09b70abf381257fe5591d1e818993" -metafile = true - [[files]] file = "resourcepacks/mt-ct-d.pw.toml" hash = "f52bcfb58f9988ad6abbcd25b770ec5e82669ccfd7aa80072c3e42ec2f9c458b" @@ -2299,8 +2413,8 @@ hash = "2242ad39e220e34c7c16590b36b0ced22164443a1c4a3e8ea86d98f155911562" metafile = true [[files]] -file = "resourcepacks/toms-create-storage.pw.toml" -hash = "cb07cd8b668029d940550ab404fa49e55df84b0f0be5bd377efaf462dbc6b9cb" +file = "resourcepacks/tras-fresh-player.pw.toml" +hash = "32fe0fe8941110f8fba07ce7768faa1797de6b28e961ab65b483c380fc0a365a" metafile = true [[files]] diff --git a/kubejs/assets/toms_storage/models/block/cable_connector/base.json b/kubejs/assets/toms_storage/models/block/cable_connector/base.json new file mode 100644 index 0000000..8b7d252 --- /dev/null +++ b/kubejs/assets/toms_storage/models/block/cable_connector/base.json @@ -0,0 +1,137 @@ +{ + "credit": "End_Rage waz here", + "textures": { + "0": "create:block/portable_storage_interface", + "1": "create:block/brass_casing", + "2": "create:block/girder", + "particle": "create:block/portable_storage_interface" + }, + "elements": [ + { + "from": [2, 2, 2], + "to": [14, 14, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 3]}, + "faces": { + "east": {"uv": [9, 3.5, 15, 4.5], "rotation": 270, "texture": "#0"}, + "south": {"uv": [9, 8.5, 15, 14.5], "texture": "#0"}, + "west": {"uv": [9, 3.5, 15, 4.5], "rotation": 90, "texture": "#0"}, + "up": {"uv": [9, 3.5, 15, 4.5], "rotation": 180, "texture": "#0"}, + "down": {"uv": [9, 3.5, 15, 4.5], "texture": "#0"} + } + }, + { + "from": [2, 2, 0], + "to": [14, 14, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 1]}, + "faces": { + "north": {"uv": [2, 2, 14, 14], "texture": "#1"} + } + }, + { + "from": [14, 2, 0], + "to": [16, 14, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [15, 8, 1]}, + "faces": { + "north": {"uv": [2, 2, 14, 0], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1, 2, 13, 1], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2, 0, 14, 2], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2, 3, 0, 5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [0, 3, 2, 5], "texture": "#1"} + } + }, + { + "from": [0, 2, 0], + "to": [2, 14, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [1, 8, 1]}, + "faces": { + "north": {"uv": [2, 0, 14, 2], "rotation": 270, "texture": "#1"}, + "south": {"uv": [2, 2, 14, 0], "rotation": 270, "texture": "#1"}, + "west": {"uv": [1, 2, 13, 1], "rotation": 90, "texture": "#1"}, + "up": {"uv": [2, 3, 0, 5], "texture": "#1"}, + "down": {"uv": [0, 3, 2, 5], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [2, 14, 0], + "to": [14, 16, 2], + "rotation": {"angle": 0, "axis": "z", "origin": [8, 8, 1]}, + "faces": { + "north": {"uv": [2, 2, 14, 0], "texture": "#1"}, + "east": {"uv": [0, 3, 2, 5], "rotation": 270, "texture": "#1"}, + "south": {"uv": [2, 0, 14, 2], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2, 3, 0, 5], "rotation": 90, "texture": "#1"}, + "up": {"uv": [1, 2, 13, 1], "texture": "#1"} + } + }, + { + "from": [2, 0, 0], + "to": [14, 2, 2], + "rotation": {"angle": 0, "axis": "z", "origin": [8, 8, 1]}, + "faces": { + "north": {"uv": [2, 0, 14, 2], "texture": "#1"}, + "east": {"uv": [0, 3, 2, 5], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2, 2, 14, 0], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2, 3, 0, 5], "rotation": 270, "texture": "#1"}, + "down": {"uv": [1, 2, 13, 1], "texture": "#1"} + } + }, + { + "from": [4, 4, 4], + "to": [12, 12, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 3]}, + "faces": { + "north": {"uv": [10, 9.5, 14, 13.5], "rotation": 180, "texture": "#0"}, + "east": {"uv": [8.5, 14, 12.5, 15], "rotation": 270, "texture": "#0"}, + "south": {"uv": [12, 4, 16, 8], "texture": "#2"}, + "west": {"uv": [8.5, 14, 12.5, 15], "rotation": 90, "texture": "#0"}, + "up": {"uv": [8.5, 14, 12.5, 15], "rotation": 180, "texture": "#0"}, + "down": {"uv": [8.5, 14, 12.5, 15], "texture": "#0"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "thirdperson_lefthand": { + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, 45, 0], + "scale": [0.4, 0.4, 0.4] + }, + "firstperson_lefthand": { + "rotation": [0, 225, 0], + "scale": [0.4, 0.4, 0.4] + }, + "ground": { + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + }, + "gui": { + "rotation": [30, 135, 90], + "translation": [-0.5, 0, 0], + "scale": [0.625, 0.625, 0.625] + }, + "head": { + "rotation": [-180, 0, 0], + "translation": [0, 22.25, 0] + }, + "fixed": { + "translation": [0, -1.25, 0], + "scale": [0.5, 0.5, 0.5] + } + }, + "groups": [ + { + "name": "group", + "origin": [8, 17, 8], + "color": 0, + "children": [0, 1, 2, 3, 4, 5, 6] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/toms_storage/models/block/cable_connector/item.json b/kubejs/assets/toms_storage/models/block/cable_connector/item.json new file mode 100644 index 0000000..c9c06db --- /dev/null +++ b/kubejs/assets/toms_storage/models/block/cable_connector/item.json @@ -0,0 +1,165 @@ +{ + "credit": "End_Rage waz here", + "textures": { + "0": "create:block/portable_storage_interface", + "1": "create:block/brass_casing", + "2": "create:block/girder", + "3": "toms_storage:block/inventory_cable", + "particle": "create:block/portable_storage_interface" + }, + "elements": [ + { + "from": [2, 2, 2], + "to": [14, 14, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 3]}, + "faces": { + "east": {"uv": [9, 3.5, 15, 4.5], "rotation": 270, "texture": "#0"}, + "south": {"uv": [9, 8.5, 15, 14.5], "texture": "#0"}, + "west": {"uv": [9, 3.5, 15, 4.5], "rotation": 90, "texture": "#0"}, + "up": {"uv": [9, 3.5, 15, 4.5], "rotation": 180, "texture": "#0"}, + "down": {"uv": [9, 3.5, 15, 4.5], "texture": "#0"} + } + }, + { + "from": [2, 2, 0], + "to": [14, 14, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 1]}, + "faces": { + "north": {"uv": [2, 2, 14, 14], "texture": "#1"} + } + }, + { + "from": [14, 2, 0], + "to": [16, 14, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [15, 8, 1]}, + "faces": { + "north": {"uv": [2, 2, 14, 0], "rotation": 270, "texture": "#1"}, + "east": {"uv": [1, 2, 13, 1], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2, 0, 14, 2], "rotation": 270, "texture": "#1"}, + "up": {"uv": [2, 3, 0, 5], "rotation": 180, "texture": "#1"}, + "down": {"uv": [0, 3, 2, 5], "texture": "#1"} + } + }, + { + "from": [0, 2, 0], + "to": [2, 14, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [1, 8, 1]}, + "faces": { + "north": {"uv": [2, 0, 14, 2], "rotation": 270, "texture": "#1"}, + "south": {"uv": [2, 2, 14, 0], "rotation": 270, "texture": "#1"}, + "west": {"uv": [1, 2, 13, 1], "rotation": 90, "texture": "#1"}, + "up": {"uv": [2, 3, 0, 5], "texture": "#1"}, + "down": {"uv": [0, 3, 2, 5], "rotation": 180, "texture": "#1"} + } + }, + { + "from": [2, 14, 0], + "to": [14, 16, 2], + "rotation": {"angle": 0, "axis": "z", "origin": [8, 8, 1]}, + "faces": { + "north": {"uv": [2, 2, 14, 0], "texture": "#1"}, + "east": {"uv": [0, 3, 2, 5], "rotation": 270, "texture": "#1"}, + "south": {"uv": [2, 0, 14, 2], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2, 3, 0, 5], "rotation": 90, "texture": "#1"}, + "up": {"uv": [1, 2, 13, 1], "texture": "#1"} + } + }, + { + "from": [2, 0, 0], + "to": [14, 2, 2], + "rotation": {"angle": 0, "axis": "z", "origin": [8, 8, 1]}, + "faces": { + "north": {"uv": [2, 0, 14, 2], "texture": "#1"}, + "east": {"uv": [0, 3, 2, 5], "rotation": 90, "texture": "#1"}, + "south": {"uv": [2, 2, 14, 0], "rotation": 180, "texture": "#1"}, + "west": {"uv": [2, 3, 0, 5], "rotation": 270, "texture": "#1"}, + "down": {"uv": [1, 2, 13, 1], "texture": "#1"} + } + }, + { + "from": [4, 4, 4], + "to": [12, 12, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 3]}, + "faces": { + "north": {"uv": [10, 9.5, 14, 13.5], "rotation": 180, "texture": "#0"}, + "east": {"uv": [8.5, 14, 12.5, 15], "rotation": 270, "texture": "#0"}, + "south": {"uv": [12, 4, 16, 8], "texture": "#2"}, + "west": {"uv": [8.5, 14, 12.5, 15], "rotation": 90, "texture": "#0"}, + "up": {"uv": [8.5, 14, 12.5, 15], "rotation": 180, "texture": "#0"}, + "down": {"uv": [8.5, 14, 12.5, 15], "texture": "#0"} + } + }, + { + "name": "cable", + "from": [6, 6, 6], + "to": [10, 10, 10], + "faces": { + "north": {"uv": [6, 6, 10, 10], "texture": "#3"}, + "east": {"uv": [6, 6, 10, 10], "texture": "#3"}, + "south": {"uv": [6, 6, 10, 10], "texture": "#3"}, + "west": {"uv": [6, 6, 10, 10], "texture": "#3"}, + "up": {"uv": [6, 6, 10, 10], "texture": "#3"}, + "down": {"uv": [6, 6, 10, 10], "texture": "#3"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [75, -180, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "thirdperson_lefthand": { + "rotation": [75, 45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, 225, 0], + "scale": [0.4, 0.4, 0.4] + }, + "firstperson_lefthand": { + "rotation": [0, 225, 0], + "scale": [0.4, 0.4, 0.4] + }, + "ground": { + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + }, + "gui": { + "rotation": [30, 45, 0], + "translation": [2.75, -1, 0], + "scale": [0.625, 0.625, 0.625] + }, + "head": { + "rotation": [0, 180, 0], + "translation": [0, 0, -13] + }, + "fixed": { + "rotation": [0, 180, 0], + "translation": [0, 0, -3], + "scale": [0.5, 0.5, 0.5] + } + }, + "groups": [ + { + "name": "group", + "origin": [8, 17, 8], + "color": 0, + "children": [0, 1, 2, 3, 4, 5, 6] + }, + 7, + { + "name": "group", + "origin": [8, 17, 8], + "color": 0, + "children": [] + }, + { + "name": "group", + "origin": [8, 17, 8], + "color": 0, + "children": [] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/toms_storage/models/block/crafting_terminal.json b/kubejs/assets/toms_storage/models/block/crafting_terminal.json new file mode 100644 index 0000000..4318202 --- /dev/null +++ b/kubejs/assets/toms_storage/models/block/crafting_terminal.json @@ -0,0 +1,197 @@ +{ + "credit": "End Waz Here", + "parent": "block/block", + "textures": { + "0": "toms_storage:block/crafting_link", + "2": "toms_storage:block/keyboard", + "3": "create:block/railway_casing_side", + "particle": "create:block/railway_casing" + }, + "elements": [ + { + "from": [4, 15, 2], + "to": [12, 17, 5], + "rotation": {"angle": 0, "axis": "x", "origin": [5, 16, 4.5]}, + "faces": { + "north": {"uv": [14.5, 5.5, 15.5, 1.5], "rotation": 90, "texture": "#0"}, + "east": {"uv": [14.5, 0, 13, 1], "texture": "#0"}, + "south": {"uv": [14.5, 5.5, 15.5, 1.5], "rotation": 90, "texture": "#0"}, + "west": {"uv": [13, 0, 14.5, 1], "texture": "#0"}, + "up": {"uv": [14.5, 1.5, 13, 5.5], "rotation": 270, "texture": "#0"} + } + }, + { + "from": [1, 1, 1], + "to": [15, 15, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 8.5, 7, 1.5], "rotation": 180, "texture": "#0"}, + "east": {"uv": [7.5, 9, 10, 16], "texture": "#0"}, + "south": {"uv": [0, 9, 7, 16], "texture": "#0"}, + "west": {"uv": [7.5, 9, 10, 16], "rotation": 180, "texture": "#0"}, + "up": {"uv": [7.5, 1.5, 10, 8.5], "rotation": 90, "texture": "#0"}, + "down": {"uv": [13, 6.5, 15.5, 13.5], "rotation": 90, "texture": "#0"} + } + }, + { + "from": [0, 0, 0], + "to": [16, 16, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 7]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#3"}, + "east": {"uv": [0, 0, 2, 16], "texture": "#particle"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#particle"}, + "west": {"uv": [0, 0, 2, 16], "texture": "#particle"}, + "up": {"uv": [0, 0, 16, 2], "texture": "#particle"}, + "down": {"uv": [0, 0, 16, 2], "texture": "#particle"} + } + }, + { + "from": [3, 7, 6], + "to": [13, 14, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "east": {"uv": [5.5, 9.5, 6, 13], "texture": "#0"}, + "south": {"uv": [1, 9.5, 6, 13], "texture": "#0"}, + "west": {"uv": [1, 9.5, 1.5, 13], "rotation": 180, "texture": "#0"}, + "up": {"uv": [1, 9.5, 6, 10], "rotation": 180, "texture": "#0"}, + "down": {"uv": [1, 12.5, 6, 13], "texture": "#0"} + } + }, + { + "name": "Controller", + "from": [1, 5.68297, 5.53912], + "to": [15, 7.68297, 13.53912], + "rotation": {"angle": 22.5, "axis": "x", "origin": [16, 5.68297, 1.53912]}, + "faces": { + "east": {"uv": [14, 0, 16, 8], "rotation": 90, "texture": "#2"}, + "south": {"uv": [0, 8, 14, 10], "texture": "#2"}, + "west": {"uv": [14, 0, 16, 8], "rotation": 90, "texture": "#2"}, + "up": {"uv": [0, 0, 14, 8], "texture": "#2"}, + "down": {"uv": [0, 0, 14, 8], "texture": "#2"} + } + }, + { + "from": [5, 6.68297, 10.53912], + "to": [7, 8.68297, 12.53912], + "rotation": {"angle": 22.5, "axis": "x", "origin": [15, 5.68297, 1.53912]}, + "faces": { + "north": {"uv": [2, 11, 4, 13], "texture": "#2"}, + "east": {"uv": [2, 11, 4, 13], "texture": "#2"}, + "south": {"uv": [2, 11, 4, 13], "texture": "#2"}, + "west": {"uv": [2, 11, 4, 13], "texture": "#2"}, + "up": {"uv": [2, 11, 4, 13], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [5, 6.68297, 6.53912], + "to": [7, 8.68297, 8.53912], + "rotation": {"angle": 22.5, "axis": "x", "origin": [15, 5.68297, 1.53912]}, + "faces": { + "north": {"uv": [2, 11, 4, 13], "texture": "#2"}, + "east": {"uv": [2, 11, 4, 13], "texture": "#2"}, + "south": {"uv": [2, 11, 4, 13], "texture": "#2"}, + "west": {"uv": [2, 11, 4, 13], "texture": "#2"}, + "up": {"uv": [2, 11, 4, 13], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [3, 6.68297, 8.53912], + "to": [5, 8.68297, 10.53912], + "rotation": {"angle": 22.5, "axis": "x", "origin": [15, 5.68297, 1.53912]}, + "faces": { + "north": {"uv": [2, 11, 4, 13], "texture": "#2"}, + "east": {"uv": [2, 11, 4, 13], "texture": "#2"}, + "south": {"uv": [2, 11, 4, 13], "texture": "#2"}, + "west": {"uv": [2, 11, 4, 13], "texture": "#2"}, + "up": {"uv": [2, 11, 4, 13], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [7, 6.68297, 8.53912], + "to": [9, 8.68297, 10.53912], + "rotation": {"angle": 22.5, "axis": "x", "origin": [15, 5.68297, 1.53912]}, + "faces": { + "north": {"uv": [2, 11, 4, 13], "texture": "#2"}, + "east": {"uv": [2, 11, 4, 13], "texture": "#2"}, + "south": {"uv": [2, 11, 4, 13], "texture": "#2"}, + "west": {"uv": [2, 11, 4, 13], "texture": "#2"}, + "up": {"uv": [2, 11, 4, 13], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [10, 6.68297, 9.53912], + "to": [13, 8.68297, 11.53912], + "rotation": {"angle": 22.5, "axis": "x", "origin": [16, 5.68297, 1.53912]}, + "faces": { + "north": {"uv": [1, 11, 4, 13], "texture": "#2"}, + "east": {"uv": [1, 11, 3, 13], "texture": "#2"}, + "south": {"uv": [1, 11, 4, 13], "texture": "#2"}, + "west": {"uv": [1, 11, 3, 13], "texture": "#2"}, + "up": {"uv": [1, 11, 4, 13], "texture": "#2"} + } + }, + { + "from": [11, 6.68297, 7.53912], + "to": [13, 8.68297, 9.53912], + "rotation": {"angle": 22.5, "axis": "x", "origin": [16, 5.68297, 1.53912]}, + "faces": { + "north": {"uv": [2, 11, 4, 13], "texture": "#2"}, + "east": {"uv": [2, 11, 4, 13], "texture": "#2"}, + "south": {"uv": [2, 11, 4, 13], "texture": "#2"}, + "west": {"uv": [2, 11, 4, 13], "texture": "#2"}, + "up": {"uv": [2, 11, 4, 13], "rotation": 90, "texture": "#2"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [75, -45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "thirdperson_lefthand": { + "rotation": [75, -45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] + }, + "firstperson_lefthand": { + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] + }, + "ground": { + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + }, + "gui": { + "rotation": [30, 45, 0], + "translation": [1, -0.5, 0], + "scale": [0.625, 0.625, 0.625] + }, + "head": { + "rotation": [0, 180, 0], + "translation": [0, 0, -13] + }, + "fixed": { + "rotation": [0, 180, 0], + "translation": [0, 0, -3], + "scale": [0.5, 0.5, 0.5] + } + }, + "groups": [ + 0, + 1, + 2, + 3, + { + "name": "group", + "origin": [0, 0, 0.5], + "color": 0, + "children": [4, 5, 6, 7, 8, 9, 10] + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/toms_storage/models/block/inventory_connector.json b/kubejs/assets/toms_storage/models/block/inventory_connector.json new file mode 100644 index 0000000..d3f45d8 --- /dev/null +++ b/kubejs/assets/toms_storage/models/block/inventory_connector.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "toms_storage:block/proxy_top" + } +} \ No newline at end of file diff --git a/kubejs/assets/toms_storage/models/block/inventory_hopper_basic.json b/kubejs/assets/toms_storage/models/block/inventory_hopper_basic.json new file mode 100644 index 0000000..a035895 --- /dev/null +++ b/kubejs/assets/toms_storage/models/block/inventory_hopper_basic.json @@ -0,0 +1,35 @@ +{ + "credit": "End Waz Here", + "parent": "block/block", + "textures": { + "0": "toms_storage:block/hopper", + "particle": "toms_storage:block/hopper" + }, + "elements": [ + { + "name": "bottom", + "from": [5, 0, 5], + "to": [11, 6, 11], + "faces": { + "north": {"uv": [10, 0, 16, 6], "texture": "#0"}, + "east": {"uv": [10, 0, 16, 6], "texture": "#0"}, + "south": {"uv": [10, 0, 16, 6], "texture": "#0"}, + "west": {"uv": [10, 0, 16, 6], "texture": "#0"}, + "down": {"uv": [10, 0, 16, 6], "texture": "#0"} + } + }, + { + "name": "top", + "from": [3, 6, 3], + "to": [13, 16, 13], + "faces": { + "north": {"uv": [0, 0, 10, 10], "texture": "#0"}, + "east": {"uv": [0, 0, 10, 10], "texture": "#0"}, + "south": {"uv": [0, 0, 10, 10], "texture": "#0"}, + "west": {"uv": [0, 0, 10, 10], "texture": "#0"}, + "up": {"uv": [0, 0, 10, 10], "texture": "#0"}, + "down": {"uv": [0, 0, 10, 10], "texture": "#0"} + } + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/toms_storage/models/block/inventory_proxy.json b/kubejs/assets/toms_storage/models/block/inventory_proxy.json new file mode 100644 index 0000000..607b1c1 --- /dev/null +++ b/kubejs/assets/toms_storage/models/block/inventory_proxy.json @@ -0,0 +1,12 @@ +{ + "parent": "block/cube", + "textures": { + "up": "toms_storage:block/proxy_top", + "down": "toms_storage:block/proxy_top", + "north": "toms_storage:block/proxy_side", + "east": "toms_storage:block/proxy_side", + "south": "toms_storage:block/proxy_side", + "west": "toms_storage:block/proxy_side", + "particle": "toms_storage:block/proxy_side" + } +} \ No newline at end of file diff --git a/kubejs/assets/toms_storage/models/block/level_emitter_off.json b/kubejs/assets/toms_storage/models/block/level_emitter_off.json new file mode 100644 index 0000000..f518db6 --- /dev/null +++ b/kubejs/assets/toms_storage/models/block/level_emitter_off.json @@ -0,0 +1,52 @@ +{ + "credit": "End Waz Here", + "parent": "block/block", + "textures": { + "0": "block/redstone_torch_off", + "2": "toms_storage:block/hopper", + "particle": "toms_storage:block/hopper" + }, + "parent": "block/block", + "render_type": "cutout", + "elements": [ + { + "name": "bottom", + "from": [0, -6, 7], + "to": [16, 10, 9], + "faces": { + "north": {"uv": [0, 0, 16, 16], "rotation": 180, "texture": "#0"}, + "south": {"uv": [0, 0, 16, 16], "rotation": 180, "texture": "#0"} + } + }, + { + "name": "top", + "from": [3, 6, 3], + "to": [13, 16, 13], + "faces": { + "north": {"uv": [0, 0, 10, 10], "texture": "#2"}, + "east": {"uv": [0, 0, 10, 10], "texture": "#2"}, + "south": {"uv": [0, 0, 10, 10], "texture": "#2"}, + "west": {"uv": [0, 0, 10, 10], "texture": "#2"}, + "up": {"uv": [0, 0, 10, 10], "texture": "#2"}, + "down": {"uv": [0, 0, 10, 10], "texture": "#2"} + } + }, + { + "name": "bottom2", + "from": [7, -6, 0], + "to": [9, 10, 16], + "faces": { + "east": {"uv": [0, 0, 16, 16], "rotation": 180, "texture": "#0"}, + "west": {"uv": [0, 0, 16, 16], "rotation": 180, "texture": "#0"} + } + }, + { + "name": "bottom3", + "from": [7, 0, 7], + "to": [9, 6, 9], + "faces": { + "down": {"uv": [7, 6, 9, 8], "texture": "#0"} + } + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/toms_storage/models/block/level_emitter_on.json b/kubejs/assets/toms_storage/models/block/level_emitter_on.json new file mode 100644 index 0000000..3672aff --- /dev/null +++ b/kubejs/assets/toms_storage/models/block/level_emitter_on.json @@ -0,0 +1,58 @@ +{ + "credit": "End Waz Here", + "parent": "block/block", + "textures": { + "0": "block/redstone_torch", + "1": "toms_storage:block/hopper", + "particle": "toms_storage:block/hopper" + }, + "parent": "block/block", + "render_type": "cutout", + "elements": [ + { + "name": "bottom", + "from": [0, -6, 7], + "to": [16, 10, 9], + "faces": { + "north": {"uv": [0, 0, 16, 16], "rotation": 180, "texture": "#0"}, + "south": {"uv": [0, 0, 16, 16], "rotation": 180, "texture": "#0"} + } + }, + { + "name": "top", + "from": [3, 6, 3], + "to": [13, 16, 13], + "faces": { + "north": {"uv": [0, 0, 10, 10], "texture": "#1"}, + "east": {"uv": [0, 0, 10, 10], "texture": "#1"}, + "south": {"uv": [0, 0, 10, 10], "texture": "#1"}, + "west": {"uv": [0, 0, 10, 10], "texture": "#1"}, + "up": {"uv": [0, 0, 10, 10], "texture": "#1"}, + "down": {"uv": [0, 0, 10, 10], "texture": "#1"} + } + }, + { + "name": "bottom2", + "from": [7, -6, 0], + "to": [9, 10, 16], + "faces": { + "east": {"uv": [0, 0, 16, 16], "rotation": 180, "texture": "#0"}, + "west": {"uv": [0, 0, 16, 16], "rotation": 180, "texture": "#0"} + } + }, + { + "name": "bottom3", + "from": [7, 0, 7], + "to": [9, 6, 9], + "faces": { + "down": {"uv": [7, 6, 9, 8], "texture": "#0"} + } + } + ], + "display": { + "gui": { + "rotation": [30, 225, 90], + "scale": [0.625, 0.625, 0.625] + } + } +} \ No newline at end of file diff --git a/kubejs/assets/toms_storage/models/block/storage_terminal.json b/kubejs/assets/toms_storage/models/block/storage_terminal.json new file mode 100644 index 0000000..a8921bc --- /dev/null +++ b/kubejs/assets/toms_storage/models/block/storage_terminal.json @@ -0,0 +1,147 @@ +{ + "credit": "End Waz Here", + "parent": "block/block", + "textures": { + "0": "toms_storage:block/terminal_link", + "3": "create:block/display_link_side_powered", + "particle": "create:block/brass_casing" + }, + "elements": [ + { + "from": [4, 2, 6], + "to": [12, 5, 8], + "rotation": {"angle": 0, "axis": "x", "origin": [5, 3.5, 7]}, + "faces": { + "east": {"uv": [14.5, 0, 13, 1], "rotation": 270, "texture": "#0"}, + "south": {"uv": [14.5, 1.5, 13, 5.5], "rotation": 270, "texture": "#0"}, + "west": {"uv": [13, 0, 14.5, 1], "rotation": 90, "texture": "#0"}, + "up": {"uv": [14.5, 5.5, 15.5, 1.5], "rotation": 270, "texture": "#0"}, + "down": {"uv": [14.5, 5.5, 15.5, 1.5], "rotation": 90, "texture": "#0"} + } + }, + { + "from": [4, 5, 6], + "to": [6, 7, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "east": {"uv": [8.5, 0, 7.5, 0.5], "rotation": 270, "texture": "#0"}, + "south": {"uv": [8.5, 0, 7.5, 1], "rotation": 270, "texture": "#0"}, + "west": {"uv": [7.5, 0, 8.5, 0.5], "rotation": 90, "texture": "#0"}, + "up": {"uv": [7.5, 1, 8, 0], "rotation": 270, "texture": "#0"}, + "down": {"uv": [7.5, 1, 8, 0], "rotation": 90, "texture": "#0"} + } + }, + { + "from": [7, 5, 6], + "to": [9, 7, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "east": {"uv": [8.5, 0, 7.5, 0.5], "rotation": 270, "texture": "#0"}, + "south": {"uv": [8.5, 0, 7.5, 1], "rotation": 270, "texture": "#0"}, + "west": {"uv": [7.5, 0, 8.5, 0.5], "rotation": 90, "texture": "#0"}, + "up": {"uv": [7.5, 1, 8, 0], "rotation": 270, "texture": "#0"}, + "down": {"uv": [7.5, 1, 8, 0], "rotation": 90, "texture": "#0"} + } + }, + { + "from": [10, 5, 6], + "to": [12, 7, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "east": {"uv": [8.5, 0, 7.5, 0.5], "rotation": 270, "texture": "#0"}, + "south": {"uv": [8.5, 0, 7.5, 1], "rotation": 270, "texture": "#0"}, + "west": {"uv": [7.5, 0, 8.5, 0.5], "rotation": 90, "texture": "#0"}, + "up": {"uv": [7.5, 1, 8, 0], "rotation": 270, "texture": "#0"}, + "down": {"uv": [7.5, 1, 8, 0], "rotation": 90, "texture": "#0"} + } + }, + { + "from": [1, 1, 1], + "to": [15, 15, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 1.5, 7, 8.5], "rotation": 180, "texture": "#0"}, + "east": {"uv": [7.5, 9, 10, 16], "texture": "#0"}, + "south": {"uv": [0, 9, 7, 16], "texture": "#0"}, + "west": {"uv": [7.5, 9, 10, 16], "rotation": 180, "texture": "#0"}, + "up": {"uv": [0, 0, 14, 5], "rotation": 180, "texture": "#3"}, + "down": {"uv": [0, 0, 14, 5], "texture": "#3"} + } + }, + { + "from": [3, 7, 6], + "to": [13, 14, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "east": {"uv": [5.5, 9.5, 6, 13], "texture": "#0"}, + "south": {"uv": [1, 9.5, 6, 13], "texture": "#0"}, + "west": {"uv": [1, 9.5, 1.5, 13], "rotation": 180, "texture": "#0"}, + "up": {"uv": [1, 9.5, 6, 10], "rotation": 180, "texture": "#0"}, + "down": {"uv": [1, 12.5, 6, 13], "texture": "#0"} + } + }, + { + "from": [2, 2, -1], + "to": [14, 14, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0.5, 2, 6.5, 8], "rotation": 180, "texture": "#0"}, + "east": {"uv": [0.5, 0, 6.5, 1], "rotation": 270, "texture": "#0"}, + "west": {"uv": [0.5, 0, 6.5, 1], "rotation": 90, "texture": "#0"}, + "up": {"uv": [0.5, 0, 6.5, 1], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0.5, 0, 6.5, 1], "texture": "#0"} + } + }, + { + "from": [0, 0, 0], + "to": [16, 16, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 7]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#particle"}, + "east": {"uv": [0, 0, 2, 16], "texture": "#particle"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#particle"}, + "west": {"uv": [0, 0, 2, 16], "texture": "#particle"}, + "up": {"uv": [0, 0, 16, 2], "texture": "#particle"}, + "down": {"uv": [0, 0, 16, 2], "texture": "#particle"} + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [75, -45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "thirdperson_lefthand": { + "rotation": [75, -45, 0], + "translation": [0, 2.5, 0], + "scale": [0.375, 0.375, 0.375] + }, + "firstperson_righthand": { + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] + }, + "firstperson_lefthand": { + "rotation": [0, -45, 0], + "scale": [0.4, 0.4, 0.4] + }, + "ground": { + "translation": [0, 3, 0], + "scale": [0.25, 0.25, 0.25] + }, + "gui": { + "rotation": [30, 45, 0], + "translation": [1, -0.5, 0], + "scale": [0.625, 0.625, 0.625] + }, + "head": { + "rotation": [0, 180, 0], + "translation": [0, 0, -13] + }, + "fixed": { + "rotation": [0, 180, 0], + "translation": [0, 0, -3], + "scale": [0.5, 0.5, 0.5] + } + } +} diff --git a/kubejs/assets/toms_storage/models/block/trim.json b/kubejs/assets/toms_storage/models/block/trim.json new file mode 100644 index 0000000..2e5d436 --- /dev/null +++ b/kubejs/assets/toms_storage/models/block/trim.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "toms_storage:block/trim" + } +} \ No newline at end of file diff --git a/kubejs/assets/toms_storage/textures/block/crafting_link.png b/kubejs/assets/toms_storage/textures/block/crafting_link.png new file mode 100644 index 0000000..0addb34 Binary files /dev/null and b/kubejs/assets/toms_storage/textures/block/crafting_link.png differ diff --git a/kubejs/assets/toms_storage/textures/block/hopper.png b/kubejs/assets/toms_storage/textures/block/hopper.png new file mode 100644 index 0000000..e25a9ae Binary files /dev/null and b/kubejs/assets/toms_storage/textures/block/hopper.png differ diff --git a/kubejs/assets/toms_storage/textures/block/inventory_cable.png b/kubejs/assets/toms_storage/textures/block/inventory_cable.png new file mode 100644 index 0000000..2022cc5 Binary files /dev/null and b/kubejs/assets/toms_storage/textures/block/inventory_cable.png differ diff --git a/kubejs/assets/toms_storage/textures/block/keyboard.png b/kubejs/assets/toms_storage/textures/block/keyboard.png new file mode 100644 index 0000000..0b194a3 Binary files /dev/null and b/kubejs/assets/toms_storage/textures/block/keyboard.png differ diff --git a/kubejs/assets/toms_storage/textures/block/opencrate_bottom.png b/kubejs/assets/toms_storage/textures/block/opencrate_bottom.png new file mode 100644 index 0000000..c23e477 Binary files /dev/null and b/kubejs/assets/toms_storage/textures/block/opencrate_bottom.png differ diff --git a/kubejs/assets/toms_storage/textures/block/opencrate_side.png b/kubejs/assets/toms_storage/textures/block/opencrate_side.png new file mode 100644 index 0000000..1525a0b Binary files /dev/null and b/kubejs/assets/toms_storage/textures/block/opencrate_side.png differ diff --git a/kubejs/assets/toms_storage/textures/block/opencrate_top.png b/kubejs/assets/toms_storage/textures/block/opencrate_top.png new file mode 100644 index 0000000..f9a627d Binary files /dev/null and b/kubejs/assets/toms_storage/textures/block/opencrate_top.png differ diff --git a/kubejs/assets/toms_storage/textures/block/proxy_side.png b/kubejs/assets/toms_storage/textures/block/proxy_side.png new file mode 100644 index 0000000..64ab16c Binary files /dev/null and b/kubejs/assets/toms_storage/textures/block/proxy_side.png differ diff --git a/kubejs/assets/toms_storage/textures/block/proxy_top.png b/kubejs/assets/toms_storage/textures/block/proxy_top.png new file mode 100644 index 0000000..02515c8 Binary files /dev/null and b/kubejs/assets/toms_storage/textures/block/proxy_top.png differ diff --git a/kubejs/assets/toms_storage/textures/block/terminal_link.png b/kubejs/assets/toms_storage/textures/block/terminal_link.png new file mode 100644 index 0000000..81bf3fa Binary files /dev/null and b/kubejs/assets/toms_storage/textures/block/terminal_link.png differ diff --git a/kubejs/assets/toms_storage/textures/block/trim.png b/kubejs/assets/toms_storage/textures/block/trim.png new file mode 100644 index 0000000..b677f58 Binary files /dev/null and b/kubejs/assets/toms_storage/textures/block/trim.png differ diff --git a/kubejs/assets/toms_storage/textures/gui/crafting_terminal.png b/kubejs/assets/toms_storage/textures/gui/crafting_terminal.png new file mode 100644 index 0000000..563fa09 Binary files /dev/null and b/kubejs/assets/toms_storage/textures/gui/crafting_terminal.png differ diff --git a/kubejs/assets/toms_storage/textures/gui/storage_terminal.png b/kubejs/assets/toms_storage/textures/gui/storage_terminal.png new file mode 100644 index 0000000..4f25585 Binary files /dev/null and b/kubejs/assets/toms_storage/textures/gui/storage_terminal.png differ diff --git a/kubejs/assets/toms_storage/textures/item/adv_wireless_terminal.png b/kubejs/assets/toms_storage/textures/item/adv_wireless_terminal.png new file mode 100644 index 0000000..2dee25c Binary files /dev/null and b/kubejs/assets/toms_storage/textures/item/adv_wireless_terminal.png differ diff --git a/kubejs/assets/toms_storage/textures/item/item_filter.png b/kubejs/assets/toms_storage/textures/item/item_filter.png new file mode 100644 index 0000000..3205226 Binary files /dev/null and b/kubejs/assets/toms_storage/textures/item/item_filter.png differ diff --git a/kubejs/assets/toms_storage/textures/item/paint_kit.png b/kubejs/assets/toms_storage/textures/item/paint_kit.png new file mode 100644 index 0000000..ef5b364 Binary files /dev/null and b/kubejs/assets/toms_storage/textures/item/paint_kit.png differ diff --git a/kubejs/assets/toms_storage/textures/item/poly_item_filter.png b/kubejs/assets/toms_storage/textures/item/poly_item_filter.png new file mode 100644 index 0000000..01cc15e Binary files /dev/null and b/kubejs/assets/toms_storage/textures/item/poly_item_filter.png differ diff --git a/kubejs/assets/toms_storage/textures/item/tag_item_filter.png b/kubejs/assets/toms_storage/textures/item/tag_item_filter.png new file mode 100644 index 0000000..f5477d7 Binary files /dev/null and b/kubejs/assets/toms_storage/textures/item/tag_item_filter.png differ diff --git a/kubejs/assets/toms_storage/textures/item/wireless_terminal.png b/kubejs/assets/toms_storage/textures/item/wireless_terminal.png new file mode 100644 index 0000000..566a8d9 Binary files /dev/null and b/kubejs/assets/toms_storage/textures/item/wireless_terminal.png differ diff --git a/kubejs/data/createteleporters/recipe/quantum_mechanism_recipe.json b/kubejs/data/createteleporters/recipe/quantum_mechanism_recipe.json deleted file mode 100644 index b9d59a5..0000000 --- a/kubejs/data/createteleporters/recipe/quantum_mechanism_recipe.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "type": "create:sequenced_assembly", - "ingredient": { - "item": "create:sturdy_sheet" - }, - "loops": 1, - "results": [ - { - "item": "createteleporters:quantum_mechanism" - } - ], - "sequence": [ - { - "type": "create:filling", - "ingredients": [ - { - "item": "createteleporters:incomplete_q_mechanism" - }, - { - "fluid": "createteleporters:quantum_fluid", - "amount": 250 - } - ], - "results": [ - { - "item": "createteleporters:incomplete_q_mechanism" - } - ] - }, - { - "type": "create:deploying", - "ingredients": [ - { - "item": "createteleporters:incomplete_q_mechanism" - }, - { - "item": "createteleporters:advanced_part" - } - ], - "results": [ - { - "item": "createteleporters:incomplete_q_mechanism" - } - ] - }, - { - "type": "create:pressing", - "ingredients": [ - { - "item": "createteleporters:incomplete_q_mechanism" - } - ], - "results": [ - { - "item": "createteleporters:incomplete_q_mechanism" - } - ] - } - ], - "transitional_item": { - "item": "createteleporters:incomplete_q_mechanism" - } -} \ No newline at end of file diff --git a/mods/create-contraption-terminals.pw.toml b/mods/create-contraption-terminals.pw.toml new file mode 100644 index 0000000..957f4bd --- /dev/null +++ b/mods/create-contraption-terminals.pw.toml @@ -0,0 +1,13 @@ +name = "Create Contraption Terminals" +filename = "createcontraptionterminals-1.21-1.3.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/gOPAFzp0/versions/XrNWi3Wo/createcontraptionterminals-1.21-1.3.0.jar" +hash-format = "sha512" +hash = "ca77062010c4fa09a058d6cc4a0d84be4c1186cad7a4b014a3ef5b2fe82531e483a1252c3945b67acc9b7c4f3805af467da9bddb9e53f8cd0fda9d97923f1877" + +[update] +[update.modrinth] +mod-id = "gOPAFzp0" +version = "XrNWi3Wo" diff --git a/mods/entangled.pw.toml b/mods/entangled.pw.toml new file mode 100644 index 0000000..e306580 --- /dev/null +++ b/mods/entangled.pw.toml @@ -0,0 +1,13 @@ +name = "Entangled" +filename = "entangled-1.3.21-neoforge-mc1.21.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/rylMOguI/versions/q3eBZMG4/entangled-1.3.21-neoforge-mc1.21.jar" +hash-format = "sha512" +hash = "23c003f4c96435b3faf8a7ec705b6afae768a613d34b09844e5a4944c6c80fe82e7bc56f85f07b0fcf7c6c24844b7327ffba21f82f70c7f32d6d61406798707f" + +[update] +[update.modrinth] +mod-id = "rylMOguI" +version = "q3eBZMG4" diff --git a/mods/inventory-tabs.pw.toml b/mods/inventory-tabs.pw.toml new file mode 100644 index 0000000..fd4f0a1 --- /dev/null +++ b/mods/inventory-tabs.pw.toml @@ -0,0 +1,13 @@ +name = "Inventory Tabs" +filename = "inventory-tabs-1.4.4+1.21.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/VD1aynYU/versions/kH13neOQ/inventory-tabs-1.4.4%2B1.21.jar" +hash-format = "sha512" +hash = "c858bac0f7fbd16670ed23c0c1dfd55aaa741d8508c61037d1960832976aba6dcaf7ccbaca487417760b319d0517bc14c5891646a366843e0c1bf35be5b399ce" + +[update] +[update.modrinth] +mod-id = "VD1aynYU" +version = "kH13neOQ" diff --git a/mods/ismah.pw.toml b/mods/ismah.pw.toml index efcb34d..efe1d9e 100644 --- a/mods/ismah.pw.toml +++ b/mods/ismah.pw.toml @@ -11,3 +11,8 @@ hash = "2f7b2f2d83cf54b8ad95298c06b1250575a783daed661a50126c1ba8b289e586a0812f11 [update.modrinth] mod-id = "o0hnW3gN" version = "urjR23xu" + +[option] +optional=true +default=true +description="See armor in first person" diff --git a/mods/pretty-pipes.pw.toml b/mods/pretty-pipes.pw.toml deleted file mode 100644 index 4ebb2c1..0000000 --- a/mods/pretty-pipes.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Pretty Pipes" -filename = "PrettyPipes-1.22.0-all.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/XExdLWCQ/versions/lrhbGGSe/PrettyPipes-1.22.0-all.jar" -hash-format = "sha512" -hash = "c6b0b70fcd24acbd9e7c47887a81c0d5cb649a4e82dfb7159d1a5b447e419539396584d260fce5d628b776ad9d953a337669cb24bf09978b7c8b5eec86e69e0d" - -[update] -[update.modrinth] -mod-id = "XExdLWCQ" -version = "lrhbGGSe" diff --git a/mods/spyglass-improvements.pw.toml b/mods/spyglass-improvements.pw.toml deleted file mode 100644 index 1b02d08..0000000 --- a/mods/spyglass-improvements.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Spyglass Improvements" -filename = "spyglass_improvements-1.5.7+mc1.21+neoforge.jar" -side = "both" - -[download] -url = "https://cdn.modrinth.com/data/Z6ykjRlM/versions/F2s6rUr5/spyglass_improvements-1.5.7%2Bmc1.21%2Bneoforge.jar" -hash-format = "sha512" -hash = "6b4933795f3fda0d8c042c35c8f95ce47db88f2ec06b15a6c803298e660a1cb18223ed5fcb96d15aeabde540abf050f3a19ca23ebad4d060afc8860174af937f" - -[update] -[update.modrinth] -mod-id = "Z6ykjRlM" -version = "F2s6rUr5" diff --git a/mods/utility-belt.pw.toml b/mods/utility-belt.pw.toml new file mode 100644 index 0000000..3a94598 --- /dev/null +++ b/mods/utility-belt.pw.toml @@ -0,0 +1,13 @@ +name = "Utility Belt" +filename = "utility-belt-neoforge-3.0.1+1.21.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/9ewe2JHJ/versions/Cf35DsLZ/utility-belt-neoforge-3.0.1%2B1.21.1.jar" +hash-format = "sha512" +hash = "8cd3e624174b76d9ac675a25a4f8f74d1a435ef5ba4b6a0fa56d7e63750ba9083226cfd1518339eeecea819f1c15b34a3199190ba882f62ab634dacdf57d3ea3" + +[update] +[update.modrinth] +mod-id = "9ewe2JHJ" +version = "Cf35DsLZ" diff --git a/pack.toml b/pack.toml index 7edce34..77f5e29 100644 --- a/pack.toml +++ b/pack.toml @@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0" [index] file = "index.toml" hash-format = "sha256" -hash = "b3290dbdc71ba7b69b8528fe3f2d7ec6ca2a98bd8116382352875a995e8af1c1" +hash = "a730bcc8a26f92895632458bc1a0e21eed729ea63d2f8ea28db5ddd899fd2e13" [versions] minecraft = "1.21.1" diff --git a/resourcepacks/created-pretty-pipes.pw.toml b/resourcepacks/created-pretty-pipes.pw.toml deleted file mode 100644 index eb4d15a..0000000 --- a/resourcepacks/created-pretty-pipes.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Created Pretty Pipes" -filename = "Created+Pretty+Pipes1.0+FIXED.zip" -side = "client" - -[download] -url = "https://cdn.modrinth.com/data/oC4pZTdw/versions/O0rnFr9u/Created%2BPretty%2BPipes1.0%2BFIXED.zip" -hash-format = "sha512" -hash = "3227f5883906fad6edff002466379bbcf71e994d494860d5059fa04ca5f7fe99d8d03b3ad3b27786f5c6406ba1017dd21e90b1fe86fb0f3f076db5a18549162d" - -[update] -[update.modrinth] -mod-id = "oC4pZTdw" -version = "O0rnFr9u" diff --git a/resourcepacks/fresh-animations-extensions.pw.toml b/resourcepacks/fresh-animations-extensions.pw.toml deleted file mode 100644 index f0e40c3..0000000 --- a/resourcepacks/fresh-animations-extensions.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Fresh Animations: Extensions" -filename = "FA+All_Extensions-v1.8.1.zip" -side = "client" - -[download] -url = "https://cdn.modrinth.com/data/YAVTU8mK/versions/RfJ3uz2J/FA%2BAll_Extensions-v1.8.1.zip" -hash-format = "sha512" -hash = "a035c1e6c771177676672f93fa68858cfd949426a83bc141ad9fec6def3714aadb62c052d93b259662d03a399bd03ca70947a2ff7dd9b7262dcb16d311e33234" - -[update] -[update.modrinth] -mod-id = "YAVTU8mK" -version = "RfJ3uz2J" diff --git a/resourcepacks/fresh-animations.pw.toml b/resourcepacks/fresh-animations.pw.toml deleted file mode 100644 index 69291c5..0000000 --- a/resourcepacks/fresh-animations.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Fresh Animations" -filename = "FreshAnimations_v1.10.4.zip" -side = "client" - -[download] -url = "https://cdn.modrinth.com/data/50dA9Sha/versions/xN57JJts/FreshAnimations_v1.10.4.zip" -hash-format = "sha512" -hash = "41258f9bea1a773d823f9a014d0c08206e9e7b339bc538e1538211fff28fadd06878a836d292cbb636ed6829cd2801a509368ae3eb3ad4bedf42190a0d5f7a90" - -[update] -[update.modrinth] -mod-id = "50dA9Sha" -version = "xN57JJts" diff --git a/resourcepacks/fresh-compats.pw.toml b/resourcepacks/fresh-compats.pw.toml deleted file mode 100644 index ae7dee1..0000000 --- a/resourcepacks/fresh-compats.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Fresh Compats" -filename = "FreshCompats_v1.6.zip" -side = "client" - -[download] -url = "https://cdn.modrinth.com/data/nOD7MgEz/versions/EHQK5l1g/FreshCompats_v1.6.zip" -hash-format = "sha512" -hash = "1396e1a640d6cc8012fab758d98e2ffb5ce0eb88b64c506af0d9edb3880da9257ae1ce38c0f22f6e8b5e1490f8b20851ea5b315c67f8df60ca8e3eb6f54875d3" - -[update] -[update.modrinth] -mod-id = "nOD7MgEz" -version = "EHQK5l1g" diff --git a/resourcepacks/toms-create-storage.pw.toml b/resourcepacks/toms-create-storage.pw.toml deleted file mode 100644 index 86086b8..0000000 --- a/resourcepacks/toms-create-storage.pw.toml +++ /dev/null @@ -1,13 +0,0 @@ -name = "Tom's Create Storage" -filename = "Create+Simple+Storage+2.1.zip" -side = "client" - -[download] -url = "https://cdn.modrinth.com/data/xGCng9FL/versions/xZXjTODa/Create%2BSimple%2BStorage%2B2.1.zip" -hash-format = "sha512" -hash = "ccce0d62f9cde695c8529cc80d7ffa1ce414fa735aaf39c9650135a5a58508a8e2657ad60264ac9889189efef53dabeed6839cf7169b5f7ad886829d9da73d6a" - -[update] -[update.modrinth] -mod-id = "xGCng9FL" -version = "xZXjTODa" diff --git a/resourcepacks/tras-fresh-player.pw.toml b/resourcepacks/tras-fresh-player.pw.toml new file mode 100644 index 0000000..6fcc5a2 --- /dev/null +++ b/resourcepacks/tras-fresh-player.pw.toml @@ -0,0 +1,13 @@ +name = "Fresh Moves" +filename = "-1.21.2 Fresh Moves v3.1 (With Animated Eyes).zip" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/slufHzC2/versions/4uyHvhnf/-1.21.2%20Fresh%20Moves%20v3.1%20%28With%20Animated%20Eyes%29.zip" +hash-format = "sha512" +hash = "40daf2d7bbccd19d38637adc2d14df1e16685aacd6c00af22d686b547d8df675246170137b7372139d34dcb9ad4c3f8606222bc771a85a335242c760254c99b3" + +[update] +[update.modrinth] +mod-id = "slufHzC2" +version = "4uyHvhnf"