Merge pull request #3630 from refinedmods/feat/GH-3624/mc-port

feat: port to minecraft 1.20.4
This commit is contained in:
Raoul
2024-02-12 23:29:15 +01:00
committed by GitHub
686 changed files with 5118 additions and 5519 deletions

View File

@@ -162,11 +162,6 @@ The build workflow takes care of the following:
- Running a Gradle build, running our tests in the process and generating an aggregated code coverage report for the API - Running a Gradle build, running our tests in the process and generating an aggregated code coverage report for the API
modules. modules.
- Analyzing the code on SonarQube.
> Because of
> [limitations with SonarQube](https://portal.productboard.com/sonarsource/1-sonarcloud/c/50-sonarcloud-analyzes-external-pull-request),
> pull requests originating from a fork aren't analyzed on SonarQube.
- Code style validation with Checkstyle. - Code style validation with Checkstyle.
- Mutation and line coverage test with Pitest. - Mutation and line coverage test with Pitest.
- Uploading the artifacts on the action. - Uploading the artifacts on the action.

View File

@@ -38,6 +38,7 @@ body:
- Minecraft 1.18.2 - Minecraft 1.18.2
- Minecraft 1.19.2 - Minecraft 1.19.2
- Minecraft 1.20.1 - Minecraft 1.20.1
- Minecraft 1.20.4
validations: validations:
required: true required: true
- type: input - type: input

View File

@@ -8,7 +8,8 @@ on:
types: [ opened, synchronize, reopened ] types: [ opened, synchronize, reopened ]
jobs: jobs:
build: build:
uses: refinedmods/refinedarchitect/.github/workflows/build.yml@v0.7.1 uses: refinedmods/refinedarchitect/.github/workflows/build.yml@v0.11.4
with: with:
mutation-testing: false mutation-testing: false
sonarqube: false
secrets: inherit secrets: inherit

View File

@@ -17,7 +17,7 @@ on:
type: string type: string
jobs: jobs:
draft: draft:
uses: refinedmods/refinedarchitect/.github/workflows/draft-release.yml@v0.7.1 uses: refinedmods/refinedarchitect/.github/workflows/draft-release.yml@v0.11.4
with: with:
release-type: ${{ inputs.release-type }} release-type: ${{ inputs.release-type }}
version-number-override: ${{ inputs.version-number-override }} version-number-override: ${{ inputs.version-number-override }}

View File

@@ -4,4 +4,4 @@ on:
types: [ labeled, unlabeled, reopened ] types: [ labeled, unlabeled, reopened ]
jobs: jobs:
unsupported-labeler: unsupported-labeler:
uses: refinedmods/refinedarchitect/.github/workflows/issue-for-unsupported-version.yml@v0.7.1 uses: refinedmods/refinedarchitect/.github/workflows/issue-for-unsupported-version.yml@v0.11.4

View File

@@ -7,11 +7,12 @@ on:
- closed - closed
jobs: jobs:
publish-release: publish-release:
uses: refinedmods/refinedarchitect/.github/workflows/publish-release.yml@v0.7.1 uses: refinedmods/refinedarchitect/.github/workflows/publish-release.yml@v0.11.4
secrets: inherit secrets: inherit
with: with:
project-name: 'Refined Storage' project-name: 'Refined Storage'
announce: true announce: true
mutation-testing: false mutation-testing: false
curseforge: true curseforge: true
modrinth: true modrinth: true
sonarqube: false

View File

@@ -4,4 +4,4 @@ on:
- cron: '0 0 * * *' - cron: '0 0 * * *'
jobs: jobs:
lock: lock:
uses: refinedmods/refinedarchitect/.github/workflows/resolved-issue-locking.yml@v0.7.1 uses: refinedmods/refinedarchitect/.github/workflows/resolved-issue-locking.yml@v0.11.4

View File

@@ -2,4 +2,4 @@ name: Validate branch name
on: [ pull_request ] on: [ pull_request ]
jobs: jobs:
validate-branch-name: validate-branch-name:
uses: refinedmods/refinedarchitect/.github/workflows/validate-branch-name.yml@v0.7.1 uses: refinedmods/refinedarchitect/.github/workflows/validate-branch-name.yml@v0.11.4

View File

@@ -4,6 +4,6 @@ on:
types: [ opened, synchronize, reopened, ready_for_review, labeled, unlabeled ] types: [ opened, synchronize, reopened, ready_for_review, labeled, unlabeled ]
jobs: jobs:
validate-changelog: validate-changelog:
uses: refinedmods/refinedarchitect/.github/workflows/validate-changelog.yml@v0.7.1 uses: refinedmods/refinedarchitect/.github/workflows/validate-changelog.yml@v0.11.4
with: with:
validation-level: 'warn' validation-level: 'warn'

View File

@@ -2,4 +2,4 @@ name: Validate commit messages
on: [ pull_request ] on: [ pull_request ]
jobs: jobs:
validate-commit-messages: validate-commit-messages:
uses: refinedmods/refinedarchitect/.github/workflows/validate-commit-messages.yml@v0.7.1 uses: refinedmods/refinedarchitect/.github/workflows/validate-commit-messages.yml@v0.11.4

2
.gitignore vendored
View File

@@ -7,7 +7,7 @@ eclipse/
.nb-gradle-properties .nb-gradle-properties
.project .project
*.launch *.launch
run/ runs/
*.iml *.iml
*.ipr *.ipr
*.iws *.iws

View File

@@ -7,6 +7,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased] ## [Unreleased]
### Added
- Ported to Minecraft 1.20.4.
## [1.12.4] - 2023-11-05 ## [1.12.4] - 2023-11-05
### Added ### Added

View File

@@ -1,6 +1,6 @@
# The MIT License (MIT) # The MIT License (MIT)
Copyright © 2015 - 2023 Refined Mods Copyright © 2015 - 2024 Refined Mods
Permission is hereby granted, free of charge, to any person Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation obtaining a copy of this software and associated documentation

View File

@@ -4,7 +4,7 @@
<p>Refined Storage is a mass storage mod for Minecraft that offers the player a network-based storage system, allowing <p>Refined Storage is a mass storage mod for Minecraft that offers the player a network-based storage system, allowing
them to store items and fluids on a massively expandable device network.</p> them to store items and fluids on a massively expandable device network.</p>
[![Build Status](https://github.com/refinedmods/refinedstorage/actions/workflows/build.yml/badge.svg?branch=develop)](https://github.com/refinedmods/refinedstorage/actions/workflows/build.yml) [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=refinedmods_refinedstorage&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=refinedmods_refinedstorage) [![Coverage](https://sonarcloud.io/api/project_badges/measure?project=refinedmods_refinedstorage&metric=coverage)](https://sonarcloud.io/summary/new_code?id=refinedmods_refinedstorage) [![Code Smells](https://sonarcloud.io/api/project_badges/measure?project=refinedmods_refinedstorage&metric=code_smells)](https://sonarcloud.io/summary/new_code?id=refinedmods_refinedstorage) [![Downloads on CurseForge](http://cf.way2muchnoise.eu/full_243076_downloads.svg)](http://minecraft.curseforge.com/projects/refined-storage) [![Downloads on Modrinth](https://img.shields.io/modrinth/dt/refined-storage?logo=modrinth)](https://modrinth.com/mod/refined-storage) [![Discord](https://img.shields.io/discord/342942776494653441)](https://discordapp.com/invite/VYzsydb) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE.md) [![Build Status](https://github.com/refinedmods/refinedstorage/actions/workflows/build.yml/badge.svg?branch=develop)](https://github.com/refinedmods/refinedstorage/actions/workflows/build.yml) [![Code Smells](https://sonarcloud.io/api/project_badges/measure?project=refinedmods_refinedstorage&metric=code_smells)](https://sonarcloud.io/summary/new_code?id=refinedmods_refinedstorage) [![Downloads on CurseForge](http://cf.way2muchnoise.eu/full_243076_downloads.svg)](http://minecraft.curseforge.com/projects/refined-storage) [![Downloads on Modrinth](https://img.shields.io/modrinth/dt/refined-storage?logo=modrinth)](https://modrinth.com/mod/refined-storage) [![Discord](https://img.shields.io/discord/342942776494653441)](https://discordapp.com/invite/VYzsydb) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE.md)
</div> </div>
## About ## About

View File

@@ -1,9 +1,4 @@
apply from: "https://raw.githubusercontent.com/refinedmods/refinedarchitect/v0.7.1/helper.gradle" apply from: "https://raw.githubusercontent.com/refinedmods/refinedarchitect/v0.11.4/helper.gradle"
// TODO: remove in 1.21
ext {
forgeVersion = "47.1.0"
}
repositories { repositories {
maven { maven {
@@ -32,34 +27,15 @@ enablePublishing()
enableCurseForge(243076) enableCurseForge(243076)
enableModrinth("KDvYkUg3") enableModrinth("KDvYkUg3")
enableJavadoc() enableJavadoc()
enableSonarQube("refinedmods_refinedstorage")
dependencies { dependencies {
compileOnly fg.deobf("mezz.jei:jei-1.20.1-common-api:15.2.0.22") compileOnly "mezz.jei:jei-1.20.4-common-api:17.3.0.43"
compileOnly fg.deobf("mezz.jei:jei-1.20.1-forge-api:15.2.0.22") compileOnly "mezz.jei:jei-1.20.4-neoforge-api:17.3.0.43"
runtimeOnly fg.deobf("mezz.jei:jei-1.20.1-forge:15.2.0.22") runtimeOnly "mezz.jei:jei-1.20.4-neoforge:17.3.0.43"
compileOnly fg.deobf('curse.maven:mouse-tweaks-60089:4581240') compileOnly "curse.maven:mouse-tweaks-60089:4776995"
compileOnly fg.deobf('curse.maven:crafting-tweaks-233071:4596466') compileOnly 'curse.maven:crafting-tweaks-233071:4991559'
implementation fg.deobf("top.theillusivec4.curios:curios-forge:5.2.0-beta.3+1.20.1") implementation "top.theillusivec4.curios:curios-neoforge:7.2.0+1.20.4"
} }
// TODO: remove in 1.21
minecraft {
runs {
server {
property 'mixin.env.remapRefMap', 'true'
property 'mixin.env.refMapRemappingFile', "${buildDir}/createSrgToMcp/output.srg"
}
client {
property 'mixin.env.remapRefMap', 'true'
property 'mixin.env.refMapRemappingFile', "${buildDir}/createSrgToMcp/output.srg"
}
data {
property 'mixin.env.remapRefMap', 'true'
property 'mixin.env.refMapRemappingFile', "${buildDir}/createSrgToMcp/output.srg"
}
}
}

View File

@@ -1,5 +1,7 @@
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists

View File

@@ -1,4 +1,4 @@
// 1.20.1 2023-11-05T14:19:25.383214243 Loot Tables // 1.20.4 2024-02-12T20:34:18.534056485 Loot Tables
24df81614f6b28c4c7e59589d79fd2c929d71727 data/refinedstorage/loot_tables/blocks/black_controller.json 24df81614f6b28c4c7e59589d79fd2c929d71727 data/refinedstorage/loot_tables/blocks/black_controller.json
aadbec0f79a3fb95d39e866a453cfec0cbbacd36 data/refinedstorage/loot_tables/blocks/black_crafter.json aadbec0f79a3fb95d39e866a453cfec0cbbacd36 data/refinedstorage/loot_tables/blocks/black_crafter.json
a792eb6ac90ce775052c9c4a1b29bf9551477b5d data/refinedstorage/loot_tables/blocks/black_crafter_manager.json a792eb6ac90ce775052c9c4a1b29bf9551477b5d data/refinedstorage/loot_tables/blocks/black_crafter_manager.json

View File

@@ -1,292 +1,292 @@
// 1.20.1 2023-11-05T14:19:25.387472745 Recipes // 1.20.4 2024-02-12T20:34:18.538076766 Recipes
1ccdc8b9da42fbc8d8c954215c76634af2d5254e data/refinedstorage/advancements/recipes/misc/coloring_recipes/black_controller.json d350b2771bd4ad63c80d048da51e610005d6daca data/refinedstorage/advancements/recipes/misc/coloring_recipes/black_controller.json
b4936ab0116ecd65cc2ca1f8342b18d9019d9bf4 data/refinedstorage/advancements/recipes/misc/coloring_recipes/black_crafter.json 54840c4b526d0652d376bc75f06930142b6ee47e data/refinedstorage/advancements/recipes/misc/coloring_recipes/black_crafter.json
6632b2a29739b77ca01b29a33688640d63ba85fb data/refinedstorage/advancements/recipes/misc/coloring_recipes/black_crafter_manager.json 23b7a5b786b618c8061202dba92bf6751510b15b data/refinedstorage/advancements/recipes/misc/coloring_recipes/black_crafter_manager.json
dfb6f96fee39c5ffbf7227302b424752bd96cb4e data/refinedstorage/advancements/recipes/misc/coloring_recipes/black_crafting_grid.json b15e62f2c4fe216e157e898b53c0465d4f173a84 data/refinedstorage/advancements/recipes/misc/coloring_recipes/black_crafting_grid.json
d03caf131a0dcd2942d54c66d10f921df05e149a data/refinedstorage/advancements/recipes/misc/coloring_recipes/black_crafting_monitor.json 97005bdb24b1113ec6b6d89749122d223dfa9356 data/refinedstorage/advancements/recipes/misc/coloring_recipes/black_crafting_monitor.json
e49cb73e29615572656fc27c641451f3b2053673 data/refinedstorage/advancements/recipes/misc/coloring_recipes/black_detector.json 55622084b126567c34634c919496ad17b9bf90f2 data/refinedstorage/advancements/recipes/misc/coloring_recipes/black_detector.json
f9ebe5a81e03ff43985503ca425a575a64493a79 data/refinedstorage/advancements/recipes/misc/coloring_recipes/black_disk_manipulator.json fcf26564563a2e04e74f411d4d7bf7f3f459e193 data/refinedstorage/advancements/recipes/misc/coloring_recipes/black_disk_manipulator.json
f8781871b25cb6a2e8f6ec42659690a474773f71 data/refinedstorage/advancements/recipes/misc/coloring_recipes/black_fluid_grid.json d7bef08a9c37f96bd17943d97489ff4b758f0608 data/refinedstorage/advancements/recipes/misc/coloring_recipes/black_fluid_grid.json
f8c4ac736579666746b17f8301b60537a9b46833 data/refinedstorage/advancements/recipes/misc/coloring_recipes/black_grid.json 2b443003f3344edf2b0d7822868a6cc8fcd16089 data/refinedstorage/advancements/recipes/misc/coloring_recipes/black_grid.json
f4a26844fd0acceb68bee4b3de6c93dfd4ea9f28 data/refinedstorage/advancements/recipes/misc/coloring_recipes/black_network_receiver.json 43455ac450834a527402617e5e57a4017ebf0316 data/refinedstorage/advancements/recipes/misc/coloring_recipes/black_network_receiver.json
50a7274debf31eafdcbf3103a58bbcd2c26ba060 data/refinedstorage/advancements/recipes/misc/coloring_recipes/black_network_transmitter.json f51c17ad3c15121e2ecac366ee763cd448b3c4bf data/refinedstorage/advancements/recipes/misc/coloring_recipes/black_network_transmitter.json
3c5aebd9a874b9c4d3156c38202c036d5b26bec7 data/refinedstorage/advancements/recipes/misc/coloring_recipes/black_pattern_grid.json 30fc6bc4416522b5478ec7f45fda0444cf677b05 data/refinedstorage/advancements/recipes/misc/coloring_recipes/black_pattern_grid.json
778b87dbf016ca5a7a5fee3ce4526beda7439e23 data/refinedstorage/advancements/recipes/misc/coloring_recipes/black_relay.json c4f162dee00f9d2f0c3d067c6c392873432bc20f data/refinedstorage/advancements/recipes/misc/coloring_recipes/black_relay.json
f06567303b4c2dee6f6100c260745f5d19dcb4c5 data/refinedstorage/advancements/recipes/misc/coloring_recipes/black_security_manager.json 9dcbbdb26e0c2e2a5365c65e86d5975c233d7cbf data/refinedstorage/advancements/recipes/misc/coloring_recipes/black_security_manager.json
d734c8b60a3e35a9716b308706c692e8e983c285 data/refinedstorage/advancements/recipes/misc/coloring_recipes/black_wireless_transmitter.json 529c5dd81a44add1cdad7fe4535f379532fc68b5 data/refinedstorage/advancements/recipes/misc/coloring_recipes/black_wireless_transmitter.json
c755ceedb07b4af47c16126b443bac132d2e05a7 data/refinedstorage/advancements/recipes/misc/coloring_recipes/blue_controller.json d26368b812c74eef2c0cd62398d00b749dbeab32 data/refinedstorage/advancements/recipes/misc/coloring_recipes/blue_controller.json
8be6a3c6f40769b0309ad247b243e39656318e79 data/refinedstorage/advancements/recipes/misc/coloring_recipes/blue_crafter.json 444ae3b86d615aae2c496cd8a4ea4b5ad72d265f data/refinedstorage/advancements/recipes/misc/coloring_recipes/blue_crafter.json
bb53afd105480032415f72f32e1634f5ef40f1a1 data/refinedstorage/advancements/recipes/misc/coloring_recipes/blue_crafter_manager.json b35122d76b4bb806a71934b073749208072acc25 data/refinedstorage/advancements/recipes/misc/coloring_recipes/blue_crafter_manager.json
7ade31d5936c05ab150ad9f14fdd21072406b4bc data/refinedstorage/advancements/recipes/misc/coloring_recipes/blue_crafting_grid.json db19bc28ee75d480ce92a6fc8378c4050cee63c1 data/refinedstorage/advancements/recipes/misc/coloring_recipes/blue_crafting_grid.json
d12002c95a061d81f405689b460d64700fbb1b79 data/refinedstorage/advancements/recipes/misc/coloring_recipes/blue_crafting_monitor.json 62f2936fba8519e449a2025bcfc2ef0a34586b79 data/refinedstorage/advancements/recipes/misc/coloring_recipes/blue_crafting_monitor.json
fa341e9a3e245a475fb9dffb234e3988d678d935 data/refinedstorage/advancements/recipes/misc/coloring_recipes/blue_detector.json a2eb10818ed380108e7baed01fc01fb29958cee6 data/refinedstorage/advancements/recipes/misc/coloring_recipes/blue_detector.json
7ebe98659edaf3d6ba1b285a450936e0fe6281c6 data/refinedstorage/advancements/recipes/misc/coloring_recipes/blue_disk_manipulator.json c9ee2feb3892a37a097d2ed726913138ca2ddcde data/refinedstorage/advancements/recipes/misc/coloring_recipes/blue_disk_manipulator.json
87710a24f3a6e7397c6dc5e6222043ae34294956 data/refinedstorage/advancements/recipes/misc/coloring_recipes/blue_fluid_grid.json e42c45ebfda407bc8a63b6707736f1d9fc5d0ba7 data/refinedstorage/advancements/recipes/misc/coloring_recipes/blue_fluid_grid.json
c04170319c90f5eadbb769217455b86654866674 data/refinedstorage/advancements/recipes/misc/coloring_recipes/blue_grid.json aba1df8aef34cd1d4c65784f1b85735b716167db data/refinedstorage/advancements/recipes/misc/coloring_recipes/blue_grid.json
cc9737501f4382cdee9b1fae84b7b1b9594c2d91 data/refinedstorage/advancements/recipes/misc/coloring_recipes/blue_network_receiver.json 399944bc9e7249d69b21dc76cc6efb43e60746d1 data/refinedstorage/advancements/recipes/misc/coloring_recipes/blue_network_receiver.json
7c7d01dadf2904fcdfb6bc5b1285382c92e23c8e data/refinedstorage/advancements/recipes/misc/coloring_recipes/blue_network_transmitter.json 9552d403b622ceffaa8adbb67c1ccdd994c5761c data/refinedstorage/advancements/recipes/misc/coloring_recipes/blue_network_transmitter.json
759a4a5e27af0fdf244e86a248e725014af5a290 data/refinedstorage/advancements/recipes/misc/coloring_recipes/blue_pattern_grid.json f1ae7f1ceb705970b9f3b6069d09d23a14c3ea83 data/refinedstorage/advancements/recipes/misc/coloring_recipes/blue_pattern_grid.json
2ebd01490a03143442c2fd66839c159c7cb8376e data/refinedstorage/advancements/recipes/misc/coloring_recipes/blue_relay.json 11777e4d00ad8cd996669a38771bd6107cf9e218 data/refinedstorage/advancements/recipes/misc/coloring_recipes/blue_relay.json
f073ceb7820ba2ea1bc70f4306fd217e686318d0 data/refinedstorage/advancements/recipes/misc/coloring_recipes/blue_security_manager.json 558e83123713433b9218a73e5d73fb77319955ea data/refinedstorage/advancements/recipes/misc/coloring_recipes/blue_security_manager.json
2ae9d5a36534c7e8d899a6ee83ce30b5f0d17c4e data/refinedstorage/advancements/recipes/misc/coloring_recipes/blue_wireless_transmitter.json 8bd0fd506e240f8f52722203d3ef0b2e991eb7c2 data/refinedstorage/advancements/recipes/misc/coloring_recipes/blue_wireless_transmitter.json
a962590bd43162299e488cda8128550e73a2abbb data/refinedstorage/advancements/recipes/misc/coloring_recipes/brown_controller.json f331f32959b42fd8ec8b029f6280db5ccd3cb2b1 data/refinedstorage/advancements/recipes/misc/coloring_recipes/brown_controller.json
02db26c014c699618d90dab3fcd6d52cd3e9577b data/refinedstorage/advancements/recipes/misc/coloring_recipes/brown_crafter.json fd01b544422d143849c67deda5ca42837c1ca398 data/refinedstorage/advancements/recipes/misc/coloring_recipes/brown_crafter.json
17049baf2ed41b59aa284523f00bfb154fb1c931 data/refinedstorage/advancements/recipes/misc/coloring_recipes/brown_crafter_manager.json 54ca4eb21f728930d7ec85f0c71751098df068e0 data/refinedstorage/advancements/recipes/misc/coloring_recipes/brown_crafter_manager.json
49fd7d990e90eff0f7537b6ebd5b10fc052f91ca data/refinedstorage/advancements/recipes/misc/coloring_recipes/brown_crafting_grid.json 0abe0f9c101ef02e32e5bd156788019fb84b9033 data/refinedstorage/advancements/recipes/misc/coloring_recipes/brown_crafting_grid.json
08a262b821efbfb765119893e6292c698158a012 data/refinedstorage/advancements/recipes/misc/coloring_recipes/brown_crafting_monitor.json defa0fd4df43b104b12ddbe58fe4143388a1fb37 data/refinedstorage/advancements/recipes/misc/coloring_recipes/brown_crafting_monitor.json
c4172a9d49c41cc4a8606f6b8e131b49c1e345fe data/refinedstorage/advancements/recipes/misc/coloring_recipes/brown_detector.json 2286d49a53f5e9e9950f7b3493bc36d21b8156f0 data/refinedstorage/advancements/recipes/misc/coloring_recipes/brown_detector.json
83a9b7b5e28b95d00f32f6de0e31703c8908feb7 data/refinedstorage/advancements/recipes/misc/coloring_recipes/brown_disk_manipulator.json d1c01332b1d6d71471307d8ed317b7e4af5faa8a data/refinedstorage/advancements/recipes/misc/coloring_recipes/brown_disk_manipulator.json
3ad9edf8c93fb28841efc120a9a56600cb898394 data/refinedstorage/advancements/recipes/misc/coloring_recipes/brown_fluid_grid.json 326b68bbffd81f01702f92cccf2f2cc30b905c40 data/refinedstorage/advancements/recipes/misc/coloring_recipes/brown_fluid_grid.json
d164d3c222f46a879c44d42650991b14aa643648 data/refinedstorage/advancements/recipes/misc/coloring_recipes/brown_grid.json efef6095e9e358abedd58e5a30aebfa730b61b93 data/refinedstorage/advancements/recipes/misc/coloring_recipes/brown_grid.json
05564ecbe70a47ed7912a4f3218e9cae49dce528 data/refinedstorage/advancements/recipes/misc/coloring_recipes/brown_network_receiver.json 82cf9f104a4f196a41a4623c4374e948ac790231 data/refinedstorage/advancements/recipes/misc/coloring_recipes/brown_network_receiver.json
321dbf56bb7d859b5e99e1517c544a9024ec6062 data/refinedstorage/advancements/recipes/misc/coloring_recipes/brown_network_transmitter.json 58255d690b0900e394de5db9d5bfcce218121398 data/refinedstorage/advancements/recipes/misc/coloring_recipes/brown_network_transmitter.json
a15d9917fbc85ec8b5185b08c8e263d17fb47092 data/refinedstorage/advancements/recipes/misc/coloring_recipes/brown_pattern_grid.json 4aaa821eab15d6e1797db5e11c1b1aedd1531c57 data/refinedstorage/advancements/recipes/misc/coloring_recipes/brown_pattern_grid.json
e675eb7b2c6b8d71db400fb1ea149b700b84f705 data/refinedstorage/advancements/recipes/misc/coloring_recipes/brown_relay.json 45a34a412a792f74b6a2a1110343879329a888eb data/refinedstorage/advancements/recipes/misc/coloring_recipes/brown_relay.json
f0e88f15d96163c5d9cc2e2817c5b9c499e61c2f data/refinedstorage/advancements/recipes/misc/coloring_recipes/brown_security_manager.json 17292d3a1960cf27224ff3be2f0d489c994616b0 data/refinedstorage/advancements/recipes/misc/coloring_recipes/brown_security_manager.json
b69d3de671fb3b746849bae11cee180ef79e5e0f data/refinedstorage/advancements/recipes/misc/coloring_recipes/brown_wireless_transmitter.json 120cea1d066a276ead272fd65f6c87d67a4c51a9 data/refinedstorage/advancements/recipes/misc/coloring_recipes/brown_wireless_transmitter.json
2a55e44da7ef9b6a549c84a4ff25cd7a3ce7f312 data/refinedstorage/advancements/recipes/misc/coloring_recipes/controller.json ec1f6d949021b377481cc85f3c467ce0a22773de data/refinedstorage/advancements/recipes/misc/coloring_recipes/controller.json
b42a44fb9c0667b93697b22e2eef1e65decfd8a3 data/refinedstorage/advancements/recipes/misc/coloring_recipes/crafter.json f308296bcfd82dbe8ec0b16fd8676695b5507b05 data/refinedstorage/advancements/recipes/misc/coloring_recipes/crafter.json
2fd383dfa9b7fbce85c9f89e4d8af24197e24fdc data/refinedstorage/advancements/recipes/misc/coloring_recipes/crafter_manager.json c2799d9f2a96b93ae0a5a44a3ca19f8b3d118829 data/refinedstorage/advancements/recipes/misc/coloring_recipes/crafter_manager.json
85ba23bc44ae70ec8ba527ed63cf8b3427dce466 data/refinedstorage/advancements/recipes/misc/coloring_recipes/crafting_grid.json 08fa572f80f7950cd44f45226e6674277d6302c1 data/refinedstorage/advancements/recipes/misc/coloring_recipes/crafting_grid.json
73a18a5e2fcb6e1f744962ac7f7456f4ee6f5077 data/refinedstorage/advancements/recipes/misc/coloring_recipes/crafting_monitor.json d04b75de8d7beed6a9fb4b95c76fb2e7372879d2 data/refinedstorage/advancements/recipes/misc/coloring_recipes/crafting_monitor.json
02d1dbef0efde8ab54edba5f644e429b3649316d data/refinedstorage/advancements/recipes/misc/coloring_recipes/cyan_controller.json 7279fc15ca132eed3ec3b98d8d8b4000a8b946e0 data/refinedstorage/advancements/recipes/misc/coloring_recipes/cyan_controller.json
ba52982be0062793cf98da498a95c6a93b1e9f1c data/refinedstorage/advancements/recipes/misc/coloring_recipes/cyan_crafter.json 81d170036872e1aa35773cfe1a54e9ae25e3c8bd data/refinedstorage/advancements/recipes/misc/coloring_recipes/cyan_crafter.json
b93f769b6b476e231298aa733c60332ea3d8df46 data/refinedstorage/advancements/recipes/misc/coloring_recipes/cyan_crafter_manager.json 22d75217a257c2bfde3faa9042016391fdd1a881 data/refinedstorage/advancements/recipes/misc/coloring_recipes/cyan_crafter_manager.json
d8a181a34c3731dc1e23b2127bc8857aef71eaa1 data/refinedstorage/advancements/recipes/misc/coloring_recipes/cyan_crafting_grid.json 0c1d56d7620d98e018103bb8bd6a1ac4a6ba8f8a data/refinedstorage/advancements/recipes/misc/coloring_recipes/cyan_crafting_grid.json
5c67bba3d3909b1ce4fdfb08016e59911199cd34 data/refinedstorage/advancements/recipes/misc/coloring_recipes/cyan_crafting_monitor.json a049e2fa95f344d566a3b4e9a8bb723f361d3b22 data/refinedstorage/advancements/recipes/misc/coloring_recipes/cyan_crafting_monitor.json
2668c3d0ce71dcfc0df44a7e90ea07e0d223126c data/refinedstorage/advancements/recipes/misc/coloring_recipes/cyan_detector.json 46e2401b27b24f2daa3f92be57bd0917efc1cd17 data/refinedstorage/advancements/recipes/misc/coloring_recipes/cyan_detector.json
995cb4a15cc7cff1dfe36ca75a47eb499b0d378b data/refinedstorage/advancements/recipes/misc/coloring_recipes/cyan_disk_manipulator.json 69361419882d5b0beb1e2c97dca3fb5333e96006 data/refinedstorage/advancements/recipes/misc/coloring_recipes/cyan_disk_manipulator.json
2cddc5ef1e4dd28ac805c39ad1ee8f60f7351ef5 data/refinedstorage/advancements/recipes/misc/coloring_recipes/cyan_fluid_grid.json 38e3aba8366c111c322c25f33afd1e05db0495cd data/refinedstorage/advancements/recipes/misc/coloring_recipes/cyan_fluid_grid.json
956abef1471d8013ae15653a41787cb6d3d151ee data/refinedstorage/advancements/recipes/misc/coloring_recipes/cyan_grid.json 4df118e5e0a7f3d44b13c29b6e17fdc74375e4f3 data/refinedstorage/advancements/recipes/misc/coloring_recipes/cyan_grid.json
2be09373525ff8093b579540d71511e906d1bc31 data/refinedstorage/advancements/recipes/misc/coloring_recipes/cyan_network_receiver.json fd921c19c96c88f248cb72066bcdaef5244d0e29 data/refinedstorage/advancements/recipes/misc/coloring_recipes/cyan_network_receiver.json
cabae7c1c3a796fd25e33501f5079e6f4ac8e778 data/refinedstorage/advancements/recipes/misc/coloring_recipes/cyan_network_transmitter.json 78b6a92c183db89ec7ed784752821da4663c53f5 data/refinedstorage/advancements/recipes/misc/coloring_recipes/cyan_network_transmitter.json
3c2bbca788aa4f868c48cb4847c19c7b31558db2 data/refinedstorage/advancements/recipes/misc/coloring_recipes/cyan_pattern_grid.json e41899b7a205cc933ddbae98de06b2eb56d7fc61 data/refinedstorage/advancements/recipes/misc/coloring_recipes/cyan_pattern_grid.json
5335e91909ff0d30c8bb9b83a9aa4cb4be25f2a1 data/refinedstorage/advancements/recipes/misc/coloring_recipes/cyan_relay.json dac4aa9f73456bfa0d589a997980f7cccbca01f9 data/refinedstorage/advancements/recipes/misc/coloring_recipes/cyan_relay.json
c17be270ad3761c3c124590db795e89c6fa8d82d data/refinedstorage/advancements/recipes/misc/coloring_recipes/cyan_security_manager.json e29e96cf471a1f3751358cb4847fa34e95d02ca5 data/refinedstorage/advancements/recipes/misc/coloring_recipes/cyan_security_manager.json
48af43bd8ff92c1796d7d204b51fc734a82b3177 data/refinedstorage/advancements/recipes/misc/coloring_recipes/cyan_wireless_transmitter.json cb4c05ab919c0bc0a83def453f74e6f783b9dff5 data/refinedstorage/advancements/recipes/misc/coloring_recipes/cyan_wireless_transmitter.json
09e4bdac8cf9419ef4d3f40ae9cf86408dc2840e data/refinedstorage/advancements/recipes/misc/coloring_recipes/detector.json d55193c421a69c24dd64d98ac3154a433a537325 data/refinedstorage/advancements/recipes/misc/coloring_recipes/detector.json
ab8db3ddaf2f9a753c467cd00de6c588d9305998 data/refinedstorage/advancements/recipes/misc/coloring_recipes/disk_manipulator.json 3e89a210043d9e41dd2165f0e73548e1884c2232 data/refinedstorage/advancements/recipes/misc/coloring_recipes/disk_manipulator.json
51aa309ea61ff680d5bf0ec946552ffb5fd5316d data/refinedstorage/advancements/recipes/misc/coloring_recipes/fluid_grid.json 81d30c747d62a729c195c55435283dbf9ec3ccc6 data/refinedstorage/advancements/recipes/misc/coloring_recipes/fluid_grid.json
4fd054a312f4eb0a8b3a9bb56be3dbdb6d68c525 data/refinedstorage/advancements/recipes/misc/coloring_recipes/gray_controller.json e8cf20a95b3bf091612098b3c516a5189b8d6799 data/refinedstorage/advancements/recipes/misc/coloring_recipes/gray_controller.json
db61afd3745ebc421148c22b434ef8281e915e94 data/refinedstorage/advancements/recipes/misc/coloring_recipes/gray_crafter.json e77cdb0c96a755fab508295cbc021a4198a73a32 data/refinedstorage/advancements/recipes/misc/coloring_recipes/gray_crafter.json
9b13889708f6db33997a7ed35ec927805d9e5107 data/refinedstorage/advancements/recipes/misc/coloring_recipes/gray_crafter_manager.json 8655e0374baeecefd17e45b8b3bdd500d898497f data/refinedstorage/advancements/recipes/misc/coloring_recipes/gray_crafter_manager.json
54b0b535d8c4d617ca09fd3d861d1ca20bf7fdac data/refinedstorage/advancements/recipes/misc/coloring_recipes/gray_crafting_grid.json 29049edb4edc8f183401d42fe90e56e796b9f524 data/refinedstorage/advancements/recipes/misc/coloring_recipes/gray_crafting_grid.json
1a2db04ced6fc1779aa256c52ac70b4ec6cddbc1 data/refinedstorage/advancements/recipes/misc/coloring_recipes/gray_crafting_monitor.json 74feb00efdaa6bdec68d6d98fbdfe20d66f89178 data/refinedstorage/advancements/recipes/misc/coloring_recipes/gray_crafting_monitor.json
2eca756e6ce9e186a22b34fd4a01f223089e2b95 data/refinedstorage/advancements/recipes/misc/coloring_recipes/gray_detector.json 2361ea074be45b6d5bc156d92765cfe95d005927 data/refinedstorage/advancements/recipes/misc/coloring_recipes/gray_detector.json
59af22598f6675242358b30e227646581d0e873b data/refinedstorage/advancements/recipes/misc/coloring_recipes/gray_disk_manipulator.json 80a4d154d21b70a184eac395a5a7b72d209de429 data/refinedstorage/advancements/recipes/misc/coloring_recipes/gray_disk_manipulator.json
78c4724488992e08cb082938fc910ec787afbe66 data/refinedstorage/advancements/recipes/misc/coloring_recipes/gray_fluid_grid.json a25f5655c5b77acadc21f13bb6386738d5bfbbd2 data/refinedstorage/advancements/recipes/misc/coloring_recipes/gray_fluid_grid.json
d9fe2664981bdc3e45c64f75403b9b6fed5bedd3 data/refinedstorage/advancements/recipes/misc/coloring_recipes/gray_grid.json b0e993da2cae346c1314ede633f8e01b88000a9c data/refinedstorage/advancements/recipes/misc/coloring_recipes/gray_grid.json
2fecb3c4e5d8cabd50e87de5fe6bb3c06d563ad1 data/refinedstorage/advancements/recipes/misc/coloring_recipes/gray_network_receiver.json b47265fad6beae6b7e8902c8b8711b8c4b1c3f67 data/refinedstorage/advancements/recipes/misc/coloring_recipes/gray_network_receiver.json
ba95b2e29f1533d80473787fbfd3a153a1de0a83 data/refinedstorage/advancements/recipes/misc/coloring_recipes/gray_network_transmitter.json 8c1027dfd8d0f024c4cff7888a06f4bf28ff2ceb data/refinedstorage/advancements/recipes/misc/coloring_recipes/gray_network_transmitter.json
72b99d2987d8b676123f0a3fd5340ab9f7d9c5da data/refinedstorage/advancements/recipes/misc/coloring_recipes/gray_pattern_grid.json 2b14eef6f0640ef29b10b0496b3b2e03a8401efb data/refinedstorage/advancements/recipes/misc/coloring_recipes/gray_pattern_grid.json
189cda08fbefd83bdde9dd4c134c466ecbc9926c data/refinedstorage/advancements/recipes/misc/coloring_recipes/gray_relay.json b9ba15b383fc750bd8f51fbe757ac398be229979 data/refinedstorage/advancements/recipes/misc/coloring_recipes/gray_relay.json
bab9902be76f2fd373f8dbfd887014d747592ed0 data/refinedstorage/advancements/recipes/misc/coloring_recipes/gray_security_manager.json ba0ff95eb1d047d4045d27cd67ed2b74e1faade2 data/refinedstorage/advancements/recipes/misc/coloring_recipes/gray_security_manager.json
90d2b60fa84e4a92c83c64dff5d68fcda6d66806 data/refinedstorage/advancements/recipes/misc/coloring_recipes/gray_wireless_transmitter.json 93194bde577130f3aafd15968ccef34fdcaa0994 data/refinedstorage/advancements/recipes/misc/coloring_recipes/gray_wireless_transmitter.json
699029e1d6b8df56b26268a2ac0ea3f33c8b8603 data/refinedstorage/advancements/recipes/misc/coloring_recipes/green_controller.json 5b494d4de2d8e760868080a3a47e6d9ffa6d2d97 data/refinedstorage/advancements/recipes/misc/coloring_recipes/green_controller.json
7189e507d38ffb3f7464bf73f3c41eccf6464df0 data/refinedstorage/advancements/recipes/misc/coloring_recipes/green_crafter.json 23166b7d06c90415a904b874ecec4ef3b76d376b data/refinedstorage/advancements/recipes/misc/coloring_recipes/green_crafter.json
40afbe52700e25895475941994e0c80a5ca285ef data/refinedstorage/advancements/recipes/misc/coloring_recipes/green_crafter_manager.json bb271c810fd9010232efca4a44faad9d4a9cd90c data/refinedstorage/advancements/recipes/misc/coloring_recipes/green_crafter_manager.json
a60727cbee9590245c0d164241e8eba4d58b6a90 data/refinedstorage/advancements/recipes/misc/coloring_recipes/green_crafting_grid.json 081abe762fb4198d49a0baf0858b5d2fe37a1595 data/refinedstorage/advancements/recipes/misc/coloring_recipes/green_crafting_grid.json
de1fc954196b0d8f2252a5d7dfcadcb8bda764e5 data/refinedstorage/advancements/recipes/misc/coloring_recipes/green_crafting_monitor.json fa2567877f0fb5bb02a5831ee137aa66ac47dfe4 data/refinedstorage/advancements/recipes/misc/coloring_recipes/green_crafting_monitor.json
c3f929ff17599ff9711858e7ec13d88e31836c19 data/refinedstorage/advancements/recipes/misc/coloring_recipes/green_detector.json 0e6a77a42153aa2bba05e96c5c553114c4c718b1 data/refinedstorage/advancements/recipes/misc/coloring_recipes/green_detector.json
0316d3e1959064644d0634e210b1cc1e24093c47 data/refinedstorage/advancements/recipes/misc/coloring_recipes/green_disk_manipulator.json 43321a147268c573478497f2aaf5e26baa044859 data/refinedstorage/advancements/recipes/misc/coloring_recipes/green_disk_manipulator.json
634a44a191ed9d6aeafbb8d21829302c4d9ae1f5 data/refinedstorage/advancements/recipes/misc/coloring_recipes/green_fluid_grid.json e08307b008e993464bfa52815a2673fc057c6d49 data/refinedstorage/advancements/recipes/misc/coloring_recipes/green_fluid_grid.json
56da4b8e41528e3a464bffec026fd6e9e74e265a data/refinedstorage/advancements/recipes/misc/coloring_recipes/green_grid.json 504bb9ddda37a8ef76c7765de0f2a2e24f7b0171 data/refinedstorage/advancements/recipes/misc/coloring_recipes/green_grid.json
0b4c0cbcf4ecffe9d3dcd77911e785af7bde7ed5 data/refinedstorage/advancements/recipes/misc/coloring_recipes/green_network_receiver.json 5d72547ae9d1d014cd8f922dc045eafac843698e data/refinedstorage/advancements/recipes/misc/coloring_recipes/green_network_receiver.json
36ae0dedb42a509c84ed248f5aedb5080cd90985 data/refinedstorage/advancements/recipes/misc/coloring_recipes/green_network_transmitter.json ff769707888be7b3d0233f664ba7129f37c9f5bc data/refinedstorage/advancements/recipes/misc/coloring_recipes/green_network_transmitter.json
77415d3217445c1a0339fe1a9ffdae26306068af data/refinedstorage/advancements/recipes/misc/coloring_recipes/green_pattern_grid.json ce4880ad86cacb787dfb3c20eab27c01b0a7f3f1 data/refinedstorage/advancements/recipes/misc/coloring_recipes/green_pattern_grid.json
dbdb0874c76b51c43946eca003889373d99a7b86 data/refinedstorage/advancements/recipes/misc/coloring_recipes/green_relay.json 1b5141b4908766b25af9b1d4a2cf5018957f25d7 data/refinedstorage/advancements/recipes/misc/coloring_recipes/green_relay.json
bdb9efd5b1395d39bae15ac611d5f66d111ac15d data/refinedstorage/advancements/recipes/misc/coloring_recipes/green_security_manager.json 33854d93ce3dc17717ad234d3dc875a69841c9ad data/refinedstorage/advancements/recipes/misc/coloring_recipes/green_security_manager.json
4d2be8248b6e9efd7bd75d2d5f63c1ebb6ecf66d data/refinedstorage/advancements/recipes/misc/coloring_recipes/green_wireless_transmitter.json 7008d4ec46c9c0995e603648d347438232749296 data/refinedstorage/advancements/recipes/misc/coloring_recipes/green_wireless_transmitter.json
af2bc4406c4c60341b5e28bf65f4b2e7c4d0261f data/refinedstorage/advancements/recipes/misc/coloring_recipes/grid.json bf27477c47f4f5af6b5a8adc4e177fdf5794afcd data/refinedstorage/advancements/recipes/misc/coloring_recipes/grid.json
b879554557bafdfd39bb57a9ecc6aaa2f2cfe307 data/refinedstorage/advancements/recipes/misc/coloring_recipes/light_gray_controller.json 3541bc5c522700de1004183d7dbeb9721749f99d data/refinedstorage/advancements/recipes/misc/coloring_recipes/light_gray_controller.json
19605f469bf4528dca56858e55b604baf0f2eb39 data/refinedstorage/advancements/recipes/misc/coloring_recipes/light_gray_crafter.json c4c71c447d0170c3ff20d777fe7983d9bcc799bc data/refinedstorage/advancements/recipes/misc/coloring_recipes/light_gray_crafter.json
d7c210cf9d044ead0597e44b1d63bb83784e6a49 data/refinedstorage/advancements/recipes/misc/coloring_recipes/light_gray_crafter_manager.json 702b34d1c0dbec4956f82a622d95f581135a5cc1 data/refinedstorage/advancements/recipes/misc/coloring_recipes/light_gray_crafter_manager.json
3c715dcc65cfa6de80c96dc550d0aca6d8460576 data/refinedstorage/advancements/recipes/misc/coloring_recipes/light_gray_crafting_grid.json 5926515e95f7faa6e81bdb539f1da4b7922bdc22 data/refinedstorage/advancements/recipes/misc/coloring_recipes/light_gray_crafting_grid.json
444c4e9d072601dde3690d0c639eeeff892f5a99 data/refinedstorage/advancements/recipes/misc/coloring_recipes/light_gray_crafting_monitor.json 7113c0865a37a843238c0bd618656575f5b8613e data/refinedstorage/advancements/recipes/misc/coloring_recipes/light_gray_crafting_monitor.json
5466e9b0aadc821af73ffdc7520f4f3cfc4421bd data/refinedstorage/advancements/recipes/misc/coloring_recipes/light_gray_detector.json d9de193424b692af7724bfa428dde79463c94083 data/refinedstorage/advancements/recipes/misc/coloring_recipes/light_gray_detector.json
d770a4a3a3527dcd3cc909a3d17e7d81f3424429 data/refinedstorage/advancements/recipes/misc/coloring_recipes/light_gray_disk_manipulator.json beaa78d1ca605357c665cb6c077a1aa1695eb2c7 data/refinedstorage/advancements/recipes/misc/coloring_recipes/light_gray_disk_manipulator.json
604bf9ad3df20ee4f711e8f75130923a0e0a2b8b data/refinedstorage/advancements/recipes/misc/coloring_recipes/light_gray_fluid_grid.json 0d62c18cd86e523a197e84ffe15fdb2fe6444668 data/refinedstorage/advancements/recipes/misc/coloring_recipes/light_gray_fluid_grid.json
ca9685f1f9ad32b1f924fd135d2178e9be40bb32 data/refinedstorage/advancements/recipes/misc/coloring_recipes/light_gray_grid.json 4a92ca1f1cb915269db078ed1bd14d90b024a7a0 data/refinedstorage/advancements/recipes/misc/coloring_recipes/light_gray_grid.json
56823e07a537aadd9bd095d762dae28444afea19 data/refinedstorage/advancements/recipes/misc/coloring_recipes/light_gray_network_receiver.json 212af37ca0be812f405238fe913bcdc33fdee9a5 data/refinedstorage/advancements/recipes/misc/coloring_recipes/light_gray_network_receiver.json
36d5f0a9dc4e4961b03c7c930a35f1cecf5749f9 data/refinedstorage/advancements/recipes/misc/coloring_recipes/light_gray_network_transmitter.json e6a7aed89254fcaaf24eb42897e6d853fa9cbbdc data/refinedstorage/advancements/recipes/misc/coloring_recipes/light_gray_network_transmitter.json
804d06426c69215198c3b4948a87cb3e5912111e data/refinedstorage/advancements/recipes/misc/coloring_recipes/light_gray_pattern_grid.json 9afae748bf4f8539db59bdfe6bc77ca7d1f94a8e data/refinedstorage/advancements/recipes/misc/coloring_recipes/light_gray_pattern_grid.json
6add2b426e5491325152008443bad863fc04daef data/refinedstorage/advancements/recipes/misc/coloring_recipes/light_gray_relay.json a83096cbd33db7938aaf28cfadedcc6227d1dfab data/refinedstorage/advancements/recipes/misc/coloring_recipes/light_gray_relay.json
9bb39b418c11dc655b4b3cd516ee31b19d006fe7 data/refinedstorage/advancements/recipes/misc/coloring_recipes/light_gray_security_manager.json 196951d09482eba275eea65407da6f3f9ef659a2 data/refinedstorage/advancements/recipes/misc/coloring_recipes/light_gray_security_manager.json
c5897bb4707fbc6eaa48477fd5c59573f22fa9dd data/refinedstorage/advancements/recipes/misc/coloring_recipes/light_gray_wireless_transmitter.json 6862bcabca8ac284dec0ca21113d2a47fe2a25c4 data/refinedstorage/advancements/recipes/misc/coloring_recipes/light_gray_wireless_transmitter.json
e490273ac7208440555bb7333e7ab24cc8cc9d80 data/refinedstorage/advancements/recipes/misc/coloring_recipes/lime_controller.json 8920ad0af9501e05ae67a18c185422ea3f2d494f data/refinedstorage/advancements/recipes/misc/coloring_recipes/lime_controller.json
0614163b7b7655d414774c030ada737696f9c93b data/refinedstorage/advancements/recipes/misc/coloring_recipes/lime_crafter.json 4f744de464eeab733def439030ec568704dbdfc5 data/refinedstorage/advancements/recipes/misc/coloring_recipes/lime_crafter.json
70deeabbf468d7f165ae5254f55b039bad8585dd data/refinedstorage/advancements/recipes/misc/coloring_recipes/lime_crafter_manager.json 704dc694a1392918c9df6f1bcb711cae74d09bf7 data/refinedstorage/advancements/recipes/misc/coloring_recipes/lime_crafter_manager.json
f2cbd6430988083a89b8c0f536cb19c70990a23f data/refinedstorage/advancements/recipes/misc/coloring_recipes/lime_crafting_grid.json 65f7d805a7fa684271d1232f532886c31caf08b8 data/refinedstorage/advancements/recipes/misc/coloring_recipes/lime_crafting_grid.json
e910857dafcc27a411d3edb2a2167ffa0d8681b9 data/refinedstorage/advancements/recipes/misc/coloring_recipes/lime_crafting_monitor.json b665f849378bcded92f27612b5ee4714a2bdb3c8 data/refinedstorage/advancements/recipes/misc/coloring_recipes/lime_crafting_monitor.json
0361396d80fee4c9db88c50af70e9b04f9ae4cb6 data/refinedstorage/advancements/recipes/misc/coloring_recipes/lime_detector.json 1d2b1bde350c014d31a47e2acd64344aaf39f006 data/refinedstorage/advancements/recipes/misc/coloring_recipes/lime_detector.json
9d73c4275266e65b17be19d1717f0451e0d2c949 data/refinedstorage/advancements/recipes/misc/coloring_recipes/lime_disk_manipulator.json a2fc75ed0e55da1a09b5e4f7d0d3d1f932b20296 data/refinedstorage/advancements/recipes/misc/coloring_recipes/lime_disk_manipulator.json
3477ac09d2e3301f5deb58c883a06489f983f429 data/refinedstorage/advancements/recipes/misc/coloring_recipes/lime_fluid_grid.json 6e48a78e9a261f218bcc530f4f2f9bf8d1f5b7b0 data/refinedstorage/advancements/recipes/misc/coloring_recipes/lime_fluid_grid.json
8a4e1988875db560e6e5a6b481c7fc2e41b893ab data/refinedstorage/advancements/recipes/misc/coloring_recipes/lime_grid.json 382df921efdc89d06e6570d96456200893701847 data/refinedstorage/advancements/recipes/misc/coloring_recipes/lime_grid.json
cf79f45bbaf41497f5c12efdf0e55ba02a512023 data/refinedstorage/advancements/recipes/misc/coloring_recipes/lime_network_receiver.json 0e2f9c833b32dbbb9cc994d5331e201f646e2260 data/refinedstorage/advancements/recipes/misc/coloring_recipes/lime_network_receiver.json
fa1f79c714853119c3a7cda05bccf73ec86d0f20 data/refinedstorage/advancements/recipes/misc/coloring_recipes/lime_network_transmitter.json 340e02a24ca341d029fe6eb0edf54527456b6fca data/refinedstorage/advancements/recipes/misc/coloring_recipes/lime_network_transmitter.json
a39b9c44b438f03f809ebe3d8dda726197a5acce data/refinedstorage/advancements/recipes/misc/coloring_recipes/lime_pattern_grid.json 7ae8303f3b8d083ac253629732fe5843d98a46ef data/refinedstorage/advancements/recipes/misc/coloring_recipes/lime_pattern_grid.json
c4a94e9ece99c55662d029cb53438cec0ef7c420 data/refinedstorage/advancements/recipes/misc/coloring_recipes/lime_relay.json a9d8202520a2eeb40036b4f08b2906a235b26c7e data/refinedstorage/advancements/recipes/misc/coloring_recipes/lime_relay.json
54c6bb830d659fa05f810d09ed3ddda1d6b66e98 data/refinedstorage/advancements/recipes/misc/coloring_recipes/lime_security_manager.json d76d10c59fdf4c3faf6736f788d88eeb1c361fb3 data/refinedstorage/advancements/recipes/misc/coloring_recipes/lime_security_manager.json
3470866b7f96df1fcbdc93078eafa4d6d27e988a data/refinedstorage/advancements/recipes/misc/coloring_recipes/lime_wireless_transmitter.json b7468157902e6a9f332b038e0b6a104243ed3824 data/refinedstorage/advancements/recipes/misc/coloring_recipes/lime_wireless_transmitter.json
c4d64ce24647bf739038ce0c3b457a0f836a185d data/refinedstorage/advancements/recipes/misc/coloring_recipes/magenta_controller.json d5e5099a140396ad770fc1e080b06ae58e5bab53 data/refinedstorage/advancements/recipes/misc/coloring_recipes/magenta_controller.json
97953ad5365a9155272cd4ea068c11d43b2b26d9 data/refinedstorage/advancements/recipes/misc/coloring_recipes/magenta_crafter.json 0d738a1bcb7f70d0c8a2fb8ddc58106cf1f1af56 data/refinedstorage/advancements/recipes/misc/coloring_recipes/magenta_crafter.json
5719b301c1503b26e3525601f930fc61b1912e0a data/refinedstorage/advancements/recipes/misc/coloring_recipes/magenta_crafter_manager.json e71700d2067eda969cff274b75fa06abe55e5456 data/refinedstorage/advancements/recipes/misc/coloring_recipes/magenta_crafter_manager.json
9706d3b8f740ee711628c48b663b8e3cc777daf5 data/refinedstorage/advancements/recipes/misc/coloring_recipes/magenta_crafting_grid.json 8cdad9ed6a81ae38b39ff89e3c8b8a3162591ec4 data/refinedstorage/advancements/recipes/misc/coloring_recipes/magenta_crafting_grid.json
4f13977b66a44c09644bdbe006e9dcfb3de72a47 data/refinedstorage/advancements/recipes/misc/coloring_recipes/magenta_crafting_monitor.json e889eb8c665ecde9fd814aeae186c33fa9fe774c data/refinedstorage/advancements/recipes/misc/coloring_recipes/magenta_crafting_monitor.json
a8a2b92d1a5e234baddc3ea6314f38bb46c780f6 data/refinedstorage/advancements/recipes/misc/coloring_recipes/magenta_detector.json ed8f2c1dfbb3efdaf9a17abd528ddc4fa9c4351b data/refinedstorage/advancements/recipes/misc/coloring_recipes/magenta_detector.json
03ca6efc1693208521a8d3c1209aed51745a1615 data/refinedstorage/advancements/recipes/misc/coloring_recipes/magenta_disk_manipulator.json a1eaf5560aa797a920c6d859e1da12f26df70ba0 data/refinedstorage/advancements/recipes/misc/coloring_recipes/magenta_disk_manipulator.json
2eae278a2f561ca5959847a936eb74ae4785d6e8 data/refinedstorage/advancements/recipes/misc/coloring_recipes/magenta_fluid_grid.json 9337dd604b42c894ec795ea4d933494eb6cd3ffa data/refinedstorage/advancements/recipes/misc/coloring_recipes/magenta_fluid_grid.json
a8243c9dc90661e5416471ff245dc412fc820747 data/refinedstorage/advancements/recipes/misc/coloring_recipes/magenta_grid.json 3b5787043fdf9470c94c55a1ec4e2332ec7e92f8 data/refinedstorage/advancements/recipes/misc/coloring_recipes/magenta_grid.json
88ed49b3609565b5b6ecfd0709657603b6edddbe data/refinedstorage/advancements/recipes/misc/coloring_recipes/magenta_network_receiver.json f47530ed35d85cff56678f2848f508e16d5d754e data/refinedstorage/advancements/recipes/misc/coloring_recipes/magenta_network_receiver.json
3493050d89f527a02693c41af5865588da5e270d data/refinedstorage/advancements/recipes/misc/coloring_recipes/magenta_network_transmitter.json 75c0c87f36745c83d7d7afe95ace7fab776bf049 data/refinedstorage/advancements/recipes/misc/coloring_recipes/magenta_network_transmitter.json
dbc7081a31195a49a23647059d6bcd8581dec29f data/refinedstorage/advancements/recipes/misc/coloring_recipes/magenta_pattern_grid.json 6480e36774a962568474a4ebace57436f841d105 data/refinedstorage/advancements/recipes/misc/coloring_recipes/magenta_pattern_grid.json
be24bae310b62f6546762f520821905b30d8631e data/refinedstorage/advancements/recipes/misc/coloring_recipes/magenta_relay.json e637d70e432940ff585c3bff26e9883ab61243c8 data/refinedstorage/advancements/recipes/misc/coloring_recipes/magenta_relay.json
f308b488e9e71af8b23e244f0714eac5396b6cf1 data/refinedstorage/advancements/recipes/misc/coloring_recipes/magenta_security_manager.json cfe2c6806954fa84c96a886883617ade1920cba4 data/refinedstorage/advancements/recipes/misc/coloring_recipes/magenta_security_manager.json
e022cab4e77209c243944f557a526ac916ca08a0 data/refinedstorage/advancements/recipes/misc/coloring_recipes/magenta_wireless_transmitter.json 27590375ef521bd3dac015c46483e8a14e6d518a data/refinedstorage/advancements/recipes/misc/coloring_recipes/magenta_wireless_transmitter.json
52b4b5375c0324d2d8a40f9357b68c87f79df04a data/refinedstorage/advancements/recipes/misc/coloring_recipes/network_receiver.json edf871954047dc82a5baa504f093c8bd95bc9e4f data/refinedstorage/advancements/recipes/misc/coloring_recipes/network_receiver.json
862382143572c47cf50bc8bbccb4541f0b817f7a data/refinedstorage/advancements/recipes/misc/coloring_recipes/network_transmitter.json ff22d01d0549186d21c65245d7a8647cb3e8d831 data/refinedstorage/advancements/recipes/misc/coloring_recipes/network_transmitter.json
df24602e1c1c5d3d91fb46597ba799f204bac9ea data/refinedstorage/advancements/recipes/misc/coloring_recipes/orange_controller.json 7a1e7c7acf6c5e517a825c416354b1c52993e8e8 data/refinedstorage/advancements/recipes/misc/coloring_recipes/orange_controller.json
d4618b2cdb01659cbe2b3031190e623e81dcf22e data/refinedstorage/advancements/recipes/misc/coloring_recipes/orange_crafter.json 146baa694f6912ec9b34d0f9f0c94fb49b7a66c6 data/refinedstorage/advancements/recipes/misc/coloring_recipes/orange_crafter.json
25e94414f3c14fbdd7180184a7d6aa365ea8464f data/refinedstorage/advancements/recipes/misc/coloring_recipes/orange_crafter_manager.json b53f5da5a6745f0ab4479284a5b238e52d23af31 data/refinedstorage/advancements/recipes/misc/coloring_recipes/orange_crafter_manager.json
bdc0a38ca44158d5f8c817b3fe30e1ad9daa5158 data/refinedstorage/advancements/recipes/misc/coloring_recipes/orange_crafting_grid.json c6a0b5ad7a2701caa7f185b2445730d8de2d8231 data/refinedstorage/advancements/recipes/misc/coloring_recipes/orange_crafting_grid.json
f3b377b67d7f1f8bdd656e587d226ff7a36e4d7e data/refinedstorage/advancements/recipes/misc/coloring_recipes/orange_crafting_monitor.json 77ab4c02e39cf139fa110a5543e6c4121d095959 data/refinedstorage/advancements/recipes/misc/coloring_recipes/orange_crafting_monitor.json
0021989425af1537ec0ef53e2a525ab9c9b94f02 data/refinedstorage/advancements/recipes/misc/coloring_recipes/orange_detector.json 5464c441ae2378ff8cf655bf092698e8e5cc6698 data/refinedstorage/advancements/recipes/misc/coloring_recipes/orange_detector.json
576e3d0f691966df6766df9a32588ed2ba208396 data/refinedstorage/advancements/recipes/misc/coloring_recipes/orange_disk_manipulator.json 6212064e3078df7b4b2f0eaf2c66b2351afb8d75 data/refinedstorage/advancements/recipes/misc/coloring_recipes/orange_disk_manipulator.json
29bd7853448c0c2fc0a049264bed1ea805737002 data/refinedstorage/advancements/recipes/misc/coloring_recipes/orange_fluid_grid.json 9fa3953437f41825a1a94cfd8b26ad0deba512c4 data/refinedstorage/advancements/recipes/misc/coloring_recipes/orange_fluid_grid.json
081e3672fe8aa54a1946eb59b81ca8902448affd data/refinedstorage/advancements/recipes/misc/coloring_recipes/orange_grid.json 3da19d71780bb0dd8b598680f0f6cdf51d095a5b data/refinedstorage/advancements/recipes/misc/coloring_recipes/orange_grid.json
54c02681bd4ffd2e2fb3c68650d8a9e4f417308c data/refinedstorage/advancements/recipes/misc/coloring_recipes/orange_network_receiver.json e8c6ea5c6321cb3f0c0818a7f20bb34dd19d6b8b data/refinedstorage/advancements/recipes/misc/coloring_recipes/orange_network_receiver.json
3cdd104d17d05d0fede9542f64d427a18658d40b data/refinedstorage/advancements/recipes/misc/coloring_recipes/orange_network_transmitter.json 599372e90c5525ba6965d85bad3dc598684cbce8 data/refinedstorage/advancements/recipes/misc/coloring_recipes/orange_network_transmitter.json
7a0a1f51e073ca6484579511972204a8ab76969b data/refinedstorage/advancements/recipes/misc/coloring_recipes/orange_pattern_grid.json c89d2ab0fc65018f61c6e0db371d1b91fa0dc304 data/refinedstorage/advancements/recipes/misc/coloring_recipes/orange_pattern_grid.json
e91db73dfe9ad4b78d91b689f82d1b3c233d7cc5 data/refinedstorage/advancements/recipes/misc/coloring_recipes/orange_relay.json acc414b2be65c1bd89fb1236627d418eb3359095 data/refinedstorage/advancements/recipes/misc/coloring_recipes/orange_relay.json
9445173b11608182944ea45123f27391a8294b8a data/refinedstorage/advancements/recipes/misc/coloring_recipes/orange_security_manager.json 50b1bbd95f32b7f79fca433d06c7cf9d312ff635 data/refinedstorage/advancements/recipes/misc/coloring_recipes/orange_security_manager.json
88d61e9428e53267f7edd048e08fdd658cac9131 data/refinedstorage/advancements/recipes/misc/coloring_recipes/orange_wireless_transmitter.json c6e2ba623ce6e0ecc93357415ed1c33190cc9416 data/refinedstorage/advancements/recipes/misc/coloring_recipes/orange_wireless_transmitter.json
f684cb1751a6b036a66136b61b2a5fb24406ab30 data/refinedstorage/advancements/recipes/misc/coloring_recipes/pattern_grid.json 1bfff6f3c7fef860a7813bb3f6196605b47de77b data/refinedstorage/advancements/recipes/misc/coloring_recipes/pattern_grid.json
617817f73fdc6d5e72bde4ba2e5f08f7b286d7c1 data/refinedstorage/advancements/recipes/misc/coloring_recipes/pink_controller.json 230c5ac17bd397b63dd54c22a6b1f4d5abb1f6c2 data/refinedstorage/advancements/recipes/misc/coloring_recipes/pink_controller.json
e03f4775054d6497f51cca12ee0476e2b4f5c34d data/refinedstorage/advancements/recipes/misc/coloring_recipes/pink_crafter.json 64ae49fdeadba8df9bc5cfc01aaf84c757265fa1 data/refinedstorage/advancements/recipes/misc/coloring_recipes/pink_crafter.json
a2acc3ed31696c0d61f306adc7545a0d03f24078 data/refinedstorage/advancements/recipes/misc/coloring_recipes/pink_crafter_manager.json d49b9aa96ca0b53f42f13c133141c903608ca66e data/refinedstorage/advancements/recipes/misc/coloring_recipes/pink_crafter_manager.json
3f2ad02fbc5330ae4927db57185b42967f09c3d6 data/refinedstorage/advancements/recipes/misc/coloring_recipes/pink_crafting_grid.json 787fb6d515ef4e04abe1ef518634b93d862642ae data/refinedstorage/advancements/recipes/misc/coloring_recipes/pink_crafting_grid.json
bd7fc663ca4208b36c1666dc62b0a45ee96ba7ac data/refinedstorage/advancements/recipes/misc/coloring_recipes/pink_crafting_monitor.json 1920557334d4fa98a37d154f4bc8ddc242d3c278 data/refinedstorage/advancements/recipes/misc/coloring_recipes/pink_crafting_monitor.json
d98c7510828fc1b6c3c8612d418fb108200f2ed0 data/refinedstorage/advancements/recipes/misc/coloring_recipes/pink_detector.json 13223e633b19fdaaaded08f0a645b352cc2ad754 data/refinedstorage/advancements/recipes/misc/coloring_recipes/pink_detector.json
ecb2320154336f33491cf130a930580ffc9b7323 data/refinedstorage/advancements/recipes/misc/coloring_recipes/pink_disk_manipulator.json 13f2066a6766b5eb76eaeb9b8c2b443ae8ceabde data/refinedstorage/advancements/recipes/misc/coloring_recipes/pink_disk_manipulator.json
e442045d3d4e66789d5dccaa3b285fbef7cfa33a data/refinedstorage/advancements/recipes/misc/coloring_recipes/pink_fluid_grid.json b6531737768efdf4fd516609f5b7e26c3c626995 data/refinedstorage/advancements/recipes/misc/coloring_recipes/pink_fluid_grid.json
f3a231743120b2810984af017a299c41e4e00dfb data/refinedstorage/advancements/recipes/misc/coloring_recipes/pink_grid.json 3102d2be9e0ebbbfbf433b6758fb26cd538f8f3a data/refinedstorage/advancements/recipes/misc/coloring_recipes/pink_grid.json
908754201a278d836911d60d3d02f6f727442367 data/refinedstorage/advancements/recipes/misc/coloring_recipes/pink_network_receiver.json 13a94375a8af3ef1752f87fe175a4004b1f222ed data/refinedstorage/advancements/recipes/misc/coloring_recipes/pink_network_receiver.json
ec34f0708c2652a3cd6d77b6cd01f217fc6c4940 data/refinedstorage/advancements/recipes/misc/coloring_recipes/pink_network_transmitter.json 3c60279b49941739ee15d5ec8300e0509afca26d data/refinedstorage/advancements/recipes/misc/coloring_recipes/pink_network_transmitter.json
232e7e5ce602dd5f1006800dfce32c3687aae425 data/refinedstorage/advancements/recipes/misc/coloring_recipes/pink_pattern_grid.json d3839fb0c7a92432e930bc3a9a45dc4b93afddf0 data/refinedstorage/advancements/recipes/misc/coloring_recipes/pink_pattern_grid.json
a16db207cb78778a363725424383c60bfb49db8e data/refinedstorage/advancements/recipes/misc/coloring_recipes/pink_relay.json 0b690f7621a8a70fe15da08d0c5b4353f132a510 data/refinedstorage/advancements/recipes/misc/coloring_recipes/pink_relay.json
1d3856b4b21618211dd0d1083ad75b0a90a59c8f data/refinedstorage/advancements/recipes/misc/coloring_recipes/pink_security_manager.json 96915b3461232a2b27887fdbba7752c8dc14d532 data/refinedstorage/advancements/recipes/misc/coloring_recipes/pink_security_manager.json
16bb828d0a348eaf5cffd9975ffd22b5274d473b data/refinedstorage/advancements/recipes/misc/coloring_recipes/pink_wireless_transmitter.json 7c308ed13a18f4ce573e1d335ace88f8785fbfdb data/refinedstorage/advancements/recipes/misc/coloring_recipes/pink_wireless_transmitter.json
4eb43764eff9d1b06bbf4485b7489021e337dc2b data/refinedstorage/advancements/recipes/misc/coloring_recipes/purple_controller.json 8c81dd70017507b21aa84af1d133c5bb9e0354b1 data/refinedstorage/advancements/recipes/misc/coloring_recipes/purple_controller.json
bd921dc82b484cd6d3cf76ce05d063fa6e740093 data/refinedstorage/advancements/recipes/misc/coloring_recipes/purple_crafter.json b70a31b425cd286d3e5852c67c35b3c5cc8f1204 data/refinedstorage/advancements/recipes/misc/coloring_recipes/purple_crafter.json
5819d28c054ec6dbab0e84302e12a5b7978d7e00 data/refinedstorage/advancements/recipes/misc/coloring_recipes/purple_crafter_manager.json a63197c094c15d3d07f6dadcedc5cd5cacbcc6d6 data/refinedstorage/advancements/recipes/misc/coloring_recipes/purple_crafter_manager.json
9a1a926064acda161def7c59ea6885e01df09ca4 data/refinedstorage/advancements/recipes/misc/coloring_recipes/purple_crafting_grid.json 38928bc5a96a0b17e98957e5fdaa09315ecea8fe data/refinedstorage/advancements/recipes/misc/coloring_recipes/purple_crafting_grid.json
160e81d20baaee77c90a87c496213b52cbfdb7b8 data/refinedstorage/advancements/recipes/misc/coloring_recipes/purple_crafting_monitor.json 239fb41ac609b312e47800ab6b244ad2ec011694 data/refinedstorage/advancements/recipes/misc/coloring_recipes/purple_crafting_monitor.json
126b4e2197e57df8c1c4716af163108b4275d0e6 data/refinedstorage/advancements/recipes/misc/coloring_recipes/purple_detector.json 4088a819616dc7de931babe577ab852184335f5b data/refinedstorage/advancements/recipes/misc/coloring_recipes/purple_detector.json
c5e54d4c7865581a72f291a6b3d04402ae8e5d78 data/refinedstorage/advancements/recipes/misc/coloring_recipes/purple_disk_manipulator.json 19084ac15e80de9255f57ec6f50efe9f287ad47e data/refinedstorage/advancements/recipes/misc/coloring_recipes/purple_disk_manipulator.json
904e836e3626651fd7420b2f67c221112b30c377 data/refinedstorage/advancements/recipes/misc/coloring_recipes/purple_fluid_grid.json 6e020575b9eeef96eb31cec01440853d292a78b3 data/refinedstorage/advancements/recipes/misc/coloring_recipes/purple_fluid_grid.json
029c065a27503cecc81d303a45af23b1a7daf787 data/refinedstorage/advancements/recipes/misc/coloring_recipes/purple_grid.json ab76e99e048aa7a507bc2ee71238195f42df1f52 data/refinedstorage/advancements/recipes/misc/coloring_recipes/purple_grid.json
d602d4ac45eddc124cd79fc141a55b5f0f144d1c data/refinedstorage/advancements/recipes/misc/coloring_recipes/purple_network_receiver.json b551e2e756475c031a49169b8cdb7bb1478d5690 data/refinedstorage/advancements/recipes/misc/coloring_recipes/purple_network_receiver.json
fecaf6a5c5449164c9225d913ee53807cf81edc4 data/refinedstorage/advancements/recipes/misc/coloring_recipes/purple_network_transmitter.json faa57612200a9f95fb0c03bbd00bf3ba07971b10 data/refinedstorage/advancements/recipes/misc/coloring_recipes/purple_network_transmitter.json
2db942785bbce5ec8c07c664dafb5f7e8bbe369e data/refinedstorage/advancements/recipes/misc/coloring_recipes/purple_pattern_grid.json 1b362ecad4b8c539f36bfc93055f0c3396ffbaea data/refinedstorage/advancements/recipes/misc/coloring_recipes/purple_pattern_grid.json
3d8131ea7f8988f8c27ba74706a511d78237d2a6 data/refinedstorage/advancements/recipes/misc/coloring_recipes/purple_relay.json 2c6093b322f2836d4902537d90fae35df6b2785c data/refinedstorage/advancements/recipes/misc/coloring_recipes/purple_relay.json
c54a211d3531658c6ba9bd0eb90aaa48ca51e443 data/refinedstorage/advancements/recipes/misc/coloring_recipes/purple_security_manager.json cab4f5742b5bbebd870dc64f4617ac1023b02b2b data/refinedstorage/advancements/recipes/misc/coloring_recipes/purple_security_manager.json
cf0e7d9373c3f430235947b6d224702245cdba08 data/refinedstorage/advancements/recipes/misc/coloring_recipes/purple_wireless_transmitter.json b3778f099b387d2fa457070572b2b55931c8ee73 data/refinedstorage/advancements/recipes/misc/coloring_recipes/purple_wireless_transmitter.json
66b08a96e305d24c56353bba057a008c58e9e48f data/refinedstorage/advancements/recipes/misc/coloring_recipes/red_controller.json 2c7559a6e8746c6f4b47c006a70b165d181b8c80 data/refinedstorage/advancements/recipes/misc/coloring_recipes/red_controller.json
35fba66c17086789574d8d62d8c8c18f588664c1 data/refinedstorage/advancements/recipes/misc/coloring_recipes/red_crafter.json 78a4b901f4a3c0a186bbcbe9881bbf9fe0fa4da2 data/refinedstorage/advancements/recipes/misc/coloring_recipes/red_crafter.json
4f6b19c1321488f3336493d5c5ffe8a0d0315650 data/refinedstorage/advancements/recipes/misc/coloring_recipes/red_crafter_manager.json a5dd747b9b93ea4393fcf401768d1cf521595983 data/refinedstorage/advancements/recipes/misc/coloring_recipes/red_crafter_manager.json
600e0dfb0e9c017057513f6e0b78d4d2a7a1c3c8 data/refinedstorage/advancements/recipes/misc/coloring_recipes/red_crafting_grid.json 584abaeac9f96f87185a65cb221dd5dc94f2e67f data/refinedstorage/advancements/recipes/misc/coloring_recipes/red_crafting_grid.json
734703b80957a93b0066a9e682dae219284a697d data/refinedstorage/advancements/recipes/misc/coloring_recipes/red_crafting_monitor.json dcb775ecd844a7c9e30d501bef8caa0fc09f5b07 data/refinedstorage/advancements/recipes/misc/coloring_recipes/red_crafting_monitor.json
f52a36f19ec0345c48913dfd73415e9fc1636c8c data/refinedstorage/advancements/recipes/misc/coloring_recipes/red_detector.json fb6ae6665e14807c2690f71504c9b26da92142ae data/refinedstorage/advancements/recipes/misc/coloring_recipes/red_detector.json
a9ef187ded9964021b101abab322540c5d83070f data/refinedstorage/advancements/recipes/misc/coloring_recipes/red_disk_manipulator.json f40b82c9a1bed8dba73353dd8d6104c2744bf5e5 data/refinedstorage/advancements/recipes/misc/coloring_recipes/red_disk_manipulator.json
05302283273bcc5e51a4987ae471ea2311d3039a data/refinedstorage/advancements/recipes/misc/coloring_recipes/red_fluid_grid.json 577f50cc70ed05e6bb5c1f88cd4f36e6ffdc38a3 data/refinedstorage/advancements/recipes/misc/coloring_recipes/red_fluid_grid.json
b54d0ec218296a963e630b4555385cf9add9260f data/refinedstorage/advancements/recipes/misc/coloring_recipes/red_grid.json 0b295fa3bdc3a126cfb16cdab106eeef65f88077 data/refinedstorage/advancements/recipes/misc/coloring_recipes/red_grid.json
d9bd8f7831d1d4d182044fa9dbf3f12610d565be data/refinedstorage/advancements/recipes/misc/coloring_recipes/red_network_receiver.json 1587e589c213f567966fdc5c3009771e51cc83d0 data/refinedstorage/advancements/recipes/misc/coloring_recipes/red_network_receiver.json
03c625999d65e0566343d1aea36bc8b695564b7c data/refinedstorage/advancements/recipes/misc/coloring_recipes/red_network_transmitter.json ed6cf3e3917a03bf1d7d3305297e3d3a5f16f47c data/refinedstorage/advancements/recipes/misc/coloring_recipes/red_network_transmitter.json
81d67e0a1de3c6c3b31aee2f3b00a198a5bada7c data/refinedstorage/advancements/recipes/misc/coloring_recipes/red_pattern_grid.json ca1ca09f9ea4351c754030e3ca05f7f3a4b45e93 data/refinedstorage/advancements/recipes/misc/coloring_recipes/red_pattern_grid.json
1190663774ffe5073bcbef474514968129aa10f8 data/refinedstorage/advancements/recipes/misc/coloring_recipes/red_relay.json f5716311b802fd0dbf1c5e56fe7c6936fc35d1fe data/refinedstorage/advancements/recipes/misc/coloring_recipes/red_relay.json
a090e13eaa23db5bd8d32ee503eca0041ec7361a data/refinedstorage/advancements/recipes/misc/coloring_recipes/red_security_manager.json 1472f516a95d9e6a7c698acc741c439383eefcbe data/refinedstorage/advancements/recipes/misc/coloring_recipes/red_security_manager.json
807746a3f4e939d20b7135f0148dc633364e9b3d data/refinedstorage/advancements/recipes/misc/coloring_recipes/red_wireless_transmitter.json 83a709b3f2b2d077ece8315b4cd0d414b4d03706 data/refinedstorage/advancements/recipes/misc/coloring_recipes/red_wireless_transmitter.json
75974f2c006691bef16f8efe2a6d63274a9d78fe data/refinedstorage/advancements/recipes/misc/coloring_recipes/relay.json 193f0653ac14aead77cd82b381bf005527cf710d data/refinedstorage/advancements/recipes/misc/coloring_recipes/relay.json
5d0c3266f6cdb465a5c19c552ac5fba4c7cde68a data/refinedstorage/advancements/recipes/misc/coloring_recipes/security_manager.json fcb727e6a921c3005c42965f9487ebd1ad5fed72 data/refinedstorage/advancements/recipes/misc/coloring_recipes/security_manager.json
7e559b0cb8a411c0edba159b642bc731a9f2f38f data/refinedstorage/advancements/recipes/misc/coloring_recipes/white_controller.json dddb4b444133f4c7b25ce0f61a3a99115bf6e34f data/refinedstorage/advancements/recipes/misc/coloring_recipes/white_controller.json
a4c4968ca66146409eff18594cdbfef2aec3699d data/refinedstorage/advancements/recipes/misc/coloring_recipes/white_crafter.json 090ff26f519be45f17cd26bbd0a4bffac8788d9f data/refinedstorage/advancements/recipes/misc/coloring_recipes/white_crafter.json
6300765005ed782bd98e6bd1830745132e910c85 data/refinedstorage/advancements/recipes/misc/coloring_recipes/white_crafter_manager.json 0fab47854d53df7e11046062d079ee2907f45542 data/refinedstorage/advancements/recipes/misc/coloring_recipes/white_crafter_manager.json
079b9e4c700caf048c40bf183ac3016c632345ec data/refinedstorage/advancements/recipes/misc/coloring_recipes/white_crafting_grid.json f680b3d58426290b96582ec6c503ed67d70fb76a data/refinedstorage/advancements/recipes/misc/coloring_recipes/white_crafting_grid.json
7a5ef65d5ea2a4e7caf1458837c83d7e469b4883 data/refinedstorage/advancements/recipes/misc/coloring_recipes/white_crafting_monitor.json ed146018b0984f5b0d1a8268967faaef19137b8c data/refinedstorage/advancements/recipes/misc/coloring_recipes/white_crafting_monitor.json
3d387cec08633612e8d8cadf7a0eacab1dd10303 data/refinedstorage/advancements/recipes/misc/coloring_recipes/white_detector.json efc126ddb87d193a0da48e463b1491c55bc2acd4 data/refinedstorage/advancements/recipes/misc/coloring_recipes/white_detector.json
8f7db0273cd114ad9106ec8d4475089a964a2e08 data/refinedstorage/advancements/recipes/misc/coloring_recipes/white_disk_manipulator.json f5330852a980dc96909fb7d8d0e5fc041f7b7746 data/refinedstorage/advancements/recipes/misc/coloring_recipes/white_disk_manipulator.json
fd314e1043ed70a9096fcea2a4d4e8ac7e72441b data/refinedstorage/advancements/recipes/misc/coloring_recipes/white_fluid_grid.json 5647b0161acd0c3ba7c9be2bb4dbe16a189da2e6 data/refinedstorage/advancements/recipes/misc/coloring_recipes/white_fluid_grid.json
6b40be8890f069f45b5b19f063c430cd65e0f858 data/refinedstorage/advancements/recipes/misc/coloring_recipes/white_grid.json 22e149a387a8f312ba9418a2560a9d90491bbd13 data/refinedstorage/advancements/recipes/misc/coloring_recipes/white_grid.json
38eae4009978b81bc6fec1507f2bcd6f4ca5b46a data/refinedstorage/advancements/recipes/misc/coloring_recipes/white_network_receiver.json 03d901c37cf4325431dee4b42383821819aeafe5 data/refinedstorage/advancements/recipes/misc/coloring_recipes/white_network_receiver.json
c13bbe7e47941e94a5a5ae2091d33bb8aed8f2fe data/refinedstorage/advancements/recipes/misc/coloring_recipes/white_network_transmitter.json e972d1fb5200ad4d76e81acca1f0981ffcd3ecd7 data/refinedstorage/advancements/recipes/misc/coloring_recipes/white_network_transmitter.json
8653e6982c7c3a64427f2ccec2afaefa53f7de43 data/refinedstorage/advancements/recipes/misc/coloring_recipes/white_pattern_grid.json d30354bd77cfe54177d401bac7f3fae3b43a7358 data/refinedstorage/advancements/recipes/misc/coloring_recipes/white_pattern_grid.json
5bab7e83a3bd425758f3a8c239f63961bd3ac949 data/refinedstorage/advancements/recipes/misc/coloring_recipes/white_relay.json 885e79474ecd484200a4c74c5b9b5793d3af5f54 data/refinedstorage/advancements/recipes/misc/coloring_recipes/white_relay.json
b3be48c1b1e587efc0e0f512dcce48ff1e5116dd data/refinedstorage/advancements/recipes/misc/coloring_recipes/white_security_manager.json 40ebabe8d88e40f05dbd884955e03e6c9874e8fc data/refinedstorage/advancements/recipes/misc/coloring_recipes/white_security_manager.json
7234d5f762c86442ddee18d705a119c13573f79b data/refinedstorage/advancements/recipes/misc/coloring_recipes/white_wireless_transmitter.json fe956edaee3a34348d624d99ddd549f40d3643e1 data/refinedstorage/advancements/recipes/misc/coloring_recipes/white_wireless_transmitter.json
f59a4e2908dbb825bdcef3208263e3df48df760b data/refinedstorage/advancements/recipes/misc/coloring_recipes/wireless_transmitter.json 6eecfd13553d104c093c3822c148cc7f08d2bd0a data/refinedstorage/advancements/recipes/misc/coloring_recipes/wireless_transmitter.json
2fcddbf4c50c7f52d91b008d0866c566bedca3bc data/refinedstorage/advancements/recipes/misc/coloring_recipes/yellow_controller.json 6a754b8300dd0e23f9b996cee593916c057ca3d3 data/refinedstorage/advancements/recipes/misc/coloring_recipes/yellow_controller.json
0fa365d5a96bf9f0f3d1b6a776fc35ed3b0893cd data/refinedstorage/advancements/recipes/misc/coloring_recipes/yellow_crafter.json 9c632320c99a245a3ecadf9236e6910549e76e54 data/refinedstorage/advancements/recipes/misc/coloring_recipes/yellow_crafter.json
475c68795098be03f5a404dfd5e261a93a69f123 data/refinedstorage/advancements/recipes/misc/coloring_recipes/yellow_crafter_manager.json adccd41abbcfb9b1bd5deb9f9c1f0ed94fa063ce data/refinedstorage/advancements/recipes/misc/coloring_recipes/yellow_crafter_manager.json
95118ff17f8dfdbd672475050f2ea5319e9208fc data/refinedstorage/advancements/recipes/misc/coloring_recipes/yellow_crafting_grid.json 68e92c065a5f08c8b497c4c383c9430f8cc8e8ba data/refinedstorage/advancements/recipes/misc/coloring_recipes/yellow_crafting_grid.json
f0e12984a37434c19d9b65701ecf5804b1f963c7 data/refinedstorage/advancements/recipes/misc/coloring_recipes/yellow_crafting_monitor.json b5f5f31089375ade9a47c63d3885a83422a1b23b data/refinedstorage/advancements/recipes/misc/coloring_recipes/yellow_crafting_monitor.json
0816417040e1a4919d20db8c3f99d8ddd77710f7 data/refinedstorage/advancements/recipes/misc/coloring_recipes/yellow_detector.json 45c6aab891bdd10105893ecfc0f07d0b811083d9 data/refinedstorage/advancements/recipes/misc/coloring_recipes/yellow_detector.json
eae49d7931f88dbf52b9b6402cfee5c46a7d4cc6 data/refinedstorage/advancements/recipes/misc/coloring_recipes/yellow_disk_manipulator.json 7c384cda09300a12f85bc22dd004c3e03b6242f5 data/refinedstorage/advancements/recipes/misc/coloring_recipes/yellow_disk_manipulator.json
ae5ebdb3b556b67e0175cba8d9daa15d2e164db6 data/refinedstorage/advancements/recipes/misc/coloring_recipes/yellow_fluid_grid.json 51916964e73f4ba5bcb2d4f3119b9fb8816753c6 data/refinedstorage/advancements/recipes/misc/coloring_recipes/yellow_fluid_grid.json
24176fe9e4d3fb783ba39b69a2c20e8b8e7f99e1 data/refinedstorage/advancements/recipes/misc/coloring_recipes/yellow_grid.json 659328b91541f94cf9266c43a18dd0f94dc5c415 data/refinedstorage/advancements/recipes/misc/coloring_recipes/yellow_grid.json
3ca0bdd3d90dca9b7581446c72d37add6b9f13c2 data/refinedstorage/advancements/recipes/misc/coloring_recipes/yellow_network_receiver.json d29f87c0cf06922d65e8b04de93ab19d29c45001 data/refinedstorage/advancements/recipes/misc/coloring_recipes/yellow_network_receiver.json
c4b2a8bbf30835842836aa9887fa56c82b2e807f data/refinedstorage/advancements/recipes/misc/coloring_recipes/yellow_network_transmitter.json d3bb694cf85ff441ba6fa29a6f4c16378a598094 data/refinedstorage/advancements/recipes/misc/coloring_recipes/yellow_network_transmitter.json
3a813110425a79a68c5ef0f60752b1ca0ff7ef55 data/refinedstorage/advancements/recipes/misc/coloring_recipes/yellow_pattern_grid.json b9fee6c5a251fe8294772e0dd0ed3378e79133f8 data/refinedstorage/advancements/recipes/misc/coloring_recipes/yellow_pattern_grid.json
098d4e5a83437f6d0e5d3745dfbd7f54e0be6294 data/refinedstorage/advancements/recipes/misc/coloring_recipes/yellow_relay.json 2cfbe64c72ad2fd07d4004a9c099a0c855e621e4 data/refinedstorage/advancements/recipes/misc/coloring_recipes/yellow_relay.json
0e8fb2bd4a6dbba7d9673cbbd9747f917d983d9b data/refinedstorage/advancements/recipes/misc/coloring_recipes/yellow_security_manager.json fc362a4803693a183950d7e373153cf802a4ff2b data/refinedstorage/advancements/recipes/misc/coloring_recipes/yellow_security_manager.json
247094b5916ba8f2e77ca1c1329ae18446ae6823 data/refinedstorage/advancements/recipes/misc/coloring_recipes/yellow_wireless_transmitter.json 3b3b450e9af59ba31397fb93c198f57208a243d7 data/refinedstorage/advancements/recipes/misc/coloring_recipes/yellow_wireless_transmitter.json
c278e82a523f0bde1dc7e962acf28e026c6914a4 data/refinedstorage/advancements/recipes/misc/crafting_grid/black_crafting_grid.json 9996c185802c040d7454b1cfcfd822605d56b79b data/refinedstorage/advancements/recipes/misc/crafting_grid/black_crafting_grid.json
cba2456ea48766262a52530c56117c02af77b4c3 data/refinedstorage/advancements/recipes/misc/crafting_grid/blue_crafting_grid.json b4a51061a225e0ee4c52af75b79668e2b731b86c data/refinedstorage/advancements/recipes/misc/crafting_grid/blue_crafting_grid.json
7240a29ca09be1128603f29e7baa8e663010c261 data/refinedstorage/advancements/recipes/misc/crafting_grid/brown_crafting_grid.json fc16827a50393291982a6e0e19da4b7e440942f3 data/refinedstorage/advancements/recipes/misc/crafting_grid/brown_crafting_grid.json
37cd10fc6c848954777919cdf3eb5b2ff8032c28 data/refinedstorage/advancements/recipes/misc/crafting_grid/crafting_grid.json 05a059a165244eb944688123206078edf380bd35 data/refinedstorage/advancements/recipes/misc/crafting_grid/crafting_grid.json
cba30f93946a4032b3565a95d4b55c1a2efd0080 data/refinedstorage/advancements/recipes/misc/crafting_grid/cyan_crafting_grid.json f759470c704e5bf08ddd19d6e0fc738dc22d7256 data/refinedstorage/advancements/recipes/misc/crafting_grid/cyan_crafting_grid.json
92005a46776d1cd4bb0b0ccd63682c6cee9e8039 data/refinedstorage/advancements/recipes/misc/crafting_grid/gray_crafting_grid.json 9b544ac54835cd3717af3cfa78fc99c626ed857c data/refinedstorage/advancements/recipes/misc/crafting_grid/gray_crafting_grid.json
f08f02320eb125413d070f7a6540dad9c2349806 data/refinedstorage/advancements/recipes/misc/crafting_grid/green_crafting_grid.json 610cd12ad1fd27af1d428898077a6c1e604dc33f data/refinedstorage/advancements/recipes/misc/crafting_grid/green_crafting_grid.json
8d08b717a5cb964344555acf3f20440b8f83bae5 data/refinedstorage/advancements/recipes/misc/crafting_grid/light_gray_crafting_grid.json 5ffe1397bf0f3d666c452303216d3389e4e634c4 data/refinedstorage/advancements/recipes/misc/crafting_grid/light_gray_crafting_grid.json
2f520f3301dc223607645e87a504757f30942701 data/refinedstorage/advancements/recipes/misc/crafting_grid/lime_crafting_grid.json cf48c0c9e45bedfaa2dfc28414ae77b4589bb058 data/refinedstorage/advancements/recipes/misc/crafting_grid/lime_crafting_grid.json
ab8065e18037b2edd54b30f1eb756750e3909e93 data/refinedstorage/advancements/recipes/misc/crafting_grid/magenta_crafting_grid.json 4114ead8379196e77b74d5c91aae72426664944c data/refinedstorage/advancements/recipes/misc/crafting_grid/magenta_crafting_grid.json
dce8d97b2c11f963955fc20ebabc5f91bc7eede8 data/refinedstorage/advancements/recipes/misc/crafting_grid/orange_crafting_grid.json 323efa415a91a1a57327d2f9f37d85924f59b08b data/refinedstorage/advancements/recipes/misc/crafting_grid/orange_crafting_grid.json
1ffc1d3dc31e4ebce2f6a91daa1f5e8efb03bfa9 data/refinedstorage/advancements/recipes/misc/crafting_grid/pink_crafting_grid.json b399c6d4a3344a6835d5f869ee2e423369a9a148 data/refinedstorage/advancements/recipes/misc/crafting_grid/pink_crafting_grid.json
d16aafd0145f791eb7866af313c3750553a99923 data/refinedstorage/advancements/recipes/misc/crafting_grid/purple_crafting_grid.json e99cfcfdb579bca6a1ee5f051f49ddb90e5ff53c data/refinedstorage/advancements/recipes/misc/crafting_grid/purple_crafting_grid.json
9fd78da8cd719cf5ea0d10e07c792d4f622a2348 data/refinedstorage/advancements/recipes/misc/crafting_grid/red_crafting_grid.json 81cd4d1b9defdfec2977c5c54fd1d6acdaada81c data/refinedstorage/advancements/recipes/misc/crafting_grid/red_crafting_grid.json
38170e3578eacbf40af3328ab4f83f48aa5cbf8b data/refinedstorage/advancements/recipes/misc/crafting_grid/white_crafting_grid.json 3be49d30bfd65404d73d0a028f8037128ae79f2b data/refinedstorage/advancements/recipes/misc/crafting_grid/white_crafting_grid.json
13451b84c28e54f613acbb6dc4b05645feeecd6a data/refinedstorage/advancements/recipes/misc/crafting_grid/yellow_crafting_grid.json 35df545e58407a3b84abb737ddbc50680da66899 data/refinedstorage/advancements/recipes/misc/crafting_grid/yellow_crafting_grid.json
d8f038336881dbbcb8dbc40c2ebb1cdb5e6451e9 data/refinedstorage/advancements/recipes/misc/fluid_grid/black_fluid_grid.json 5705ee4e85e94edf72a96de2dc3fb6ecb60b6729 data/refinedstorage/advancements/recipes/misc/fluid_grid/black_fluid_grid.json
6839dd7c6ba57cbb403cf6e514c2e11b3dc1fb7c data/refinedstorage/advancements/recipes/misc/fluid_grid/blue_fluid_grid.json e2bf1c90dea3f8e4f67fda2747237da7ba540213 data/refinedstorage/advancements/recipes/misc/fluid_grid/blue_fluid_grid.json
2b464c95d08a3a0090d6c3806b9d012b6d0cfa18 data/refinedstorage/advancements/recipes/misc/fluid_grid/brown_fluid_grid.json 525cfca4916fcc674e741fada4cc606abb745f7c data/refinedstorage/advancements/recipes/misc/fluid_grid/brown_fluid_grid.json
89eb673877c24960ca7621cf591b2b9327e55545 data/refinedstorage/advancements/recipes/misc/fluid_grid/cyan_fluid_grid.json ece66d6ed3ee6b031f495034bfa4c38c4a1ae5cc data/refinedstorage/advancements/recipes/misc/fluid_grid/cyan_fluid_grid.json
c95223c8e79e76488b4f4f580655d751c5de1394 data/refinedstorage/advancements/recipes/misc/fluid_grid/fluid_grid.json 9e4b7cb2fdfa2805a53cf7dbc496dba36151caed data/refinedstorage/advancements/recipes/misc/fluid_grid/fluid_grid.json
82171367532f884c939a16172fac036775ecf938 data/refinedstorage/advancements/recipes/misc/fluid_grid/gray_fluid_grid.json 37b3fc51d47c365088514a703cc5fcf11bd6837c data/refinedstorage/advancements/recipes/misc/fluid_grid/gray_fluid_grid.json
59e1f7d684ed762a4eb01f70aa9c9f10cd889579 data/refinedstorage/advancements/recipes/misc/fluid_grid/green_fluid_grid.json eaa9e19285209fe2d5bb68953892748b8433cd19 data/refinedstorage/advancements/recipes/misc/fluid_grid/green_fluid_grid.json
3adffdc0ea1601e4f291e7aa12ee1f4be8a945ca data/refinedstorage/advancements/recipes/misc/fluid_grid/light_gray_fluid_grid.json 2d2a94c20cd953005d4483a0af18af9498006128 data/refinedstorage/advancements/recipes/misc/fluid_grid/light_gray_fluid_grid.json
bfd57337bb7815c010fefcf181349f5d4002c48e data/refinedstorage/advancements/recipes/misc/fluid_grid/lime_fluid_grid.json 6217e87d976a2d97f137debe4b7af117bb0d9946 data/refinedstorage/advancements/recipes/misc/fluid_grid/lime_fluid_grid.json
1c56b7fa8747564b7c0ef894d50f1991ee48538a data/refinedstorage/advancements/recipes/misc/fluid_grid/magenta_fluid_grid.json c6faf936615279617b893d8a2b8c197f1cdc1922 data/refinedstorage/advancements/recipes/misc/fluid_grid/magenta_fluid_grid.json
73b0f5a2a02d8ec4903df6f04a8ef2e498298315 data/refinedstorage/advancements/recipes/misc/fluid_grid/orange_fluid_grid.json e1bea619d01e04e61c2295535840a294bda4e46f data/refinedstorage/advancements/recipes/misc/fluid_grid/orange_fluid_grid.json
3663e13f857557edb6b55e47abb125d90be4623c data/refinedstorage/advancements/recipes/misc/fluid_grid/pink_fluid_grid.json 69f1805039706b422b733e743addcd165452d7eb data/refinedstorage/advancements/recipes/misc/fluid_grid/pink_fluid_grid.json
f262028ad077f74030bd4edfbbe3b78a427f7d5f data/refinedstorage/advancements/recipes/misc/fluid_grid/purple_fluid_grid.json 38d16b36b2c8c1e0dabb778bcf03b967f262739b data/refinedstorage/advancements/recipes/misc/fluid_grid/purple_fluid_grid.json
a69a13878382bd9f7c18819fe673e9e2ebbe79b3 data/refinedstorage/advancements/recipes/misc/fluid_grid/red_fluid_grid.json d067044876223011f3e9736673ca67435e9a66e2 data/refinedstorage/advancements/recipes/misc/fluid_grid/red_fluid_grid.json
3610edeaf6f345fd26f29bbfe7792ef2fd730e49 data/refinedstorage/advancements/recipes/misc/fluid_grid/white_fluid_grid.json 0d47235aa57900ddca60c8599d92f4a1a79877d0 data/refinedstorage/advancements/recipes/misc/fluid_grid/white_fluid_grid.json
955db7cb08d1c76c0d73fbf1afb5bdd4d5eb9b70 data/refinedstorage/advancements/recipes/misc/fluid_grid/yellow_fluid_grid.json 1ffaa363c95cff7d00cad878af9c42015b4bfa1b data/refinedstorage/advancements/recipes/misc/fluid_grid/yellow_fluid_grid.json
d828b990c35bb65bbc98cfd8b17e54dd7004bcdb data/refinedstorage/advancements/recipes/misc/pattern_grid/black_pattern_grid.json b4445540f30612fd4ac460c83b20d6adef72c619 data/refinedstorage/advancements/recipes/misc/pattern_grid/black_pattern_grid.json
cac073d4400a67e258679dde739edcc93fc17bb0 data/refinedstorage/advancements/recipes/misc/pattern_grid/blue_pattern_grid.json 2aa9e0e19a41b6996a84b9a7ec2416ad0e0f4ab9 data/refinedstorage/advancements/recipes/misc/pattern_grid/blue_pattern_grid.json
6b03eb2affdf19243411630f5ba215fa96302982 data/refinedstorage/advancements/recipes/misc/pattern_grid/brown_pattern_grid.json d75032ae87285c3a4d1924d0655ca50748a40eb7 data/refinedstorage/advancements/recipes/misc/pattern_grid/brown_pattern_grid.json
4e8f2fcf76069e9ad40c6391da05724290b22485 data/refinedstorage/advancements/recipes/misc/pattern_grid/cyan_pattern_grid.json f624f44cf7e80933b2f8351701adfbf2212a8fc5 data/refinedstorage/advancements/recipes/misc/pattern_grid/cyan_pattern_grid.json
0348c20cd109493000abae61f69a4271126bc743 data/refinedstorage/advancements/recipes/misc/pattern_grid/gray_pattern_grid.json 03a3dbfb06c413572b93c5426873bddbb32924a2 data/refinedstorage/advancements/recipes/misc/pattern_grid/gray_pattern_grid.json
911af972906ac33b035be5c08718e34578b3bfa7 data/refinedstorage/advancements/recipes/misc/pattern_grid/green_pattern_grid.json 95614af1e6d8694b29bae065e43e2afce8e252e4 data/refinedstorage/advancements/recipes/misc/pattern_grid/green_pattern_grid.json
ec5acdaf46cf7f941c1b9dac5c611e394558e103 data/refinedstorage/advancements/recipes/misc/pattern_grid/light_gray_pattern_grid.json 905018dec1c9f5224aeb72407967b6983f1f7ed8 data/refinedstorage/advancements/recipes/misc/pattern_grid/light_gray_pattern_grid.json
6a612c8ba02289414f0adb5ab1e10d6e264ba51c data/refinedstorage/advancements/recipes/misc/pattern_grid/lime_pattern_grid.json c854b76d5c75b4936394bb331441457aa3a5356f data/refinedstorage/advancements/recipes/misc/pattern_grid/lime_pattern_grid.json
45b2f9d529c1837cac47c9a8c6b14bc8751e2d56 data/refinedstorage/advancements/recipes/misc/pattern_grid/magenta_pattern_grid.json 12f393c295bb60814be1bd29ad9e07d5343106fe data/refinedstorage/advancements/recipes/misc/pattern_grid/magenta_pattern_grid.json
6b9ff2c5785e403b9404aed9cbaa30e65154f6b7 data/refinedstorage/advancements/recipes/misc/pattern_grid/orange_pattern_grid.json 1c19ef9067c2ea223a419ce5f6d0967169fe44ea data/refinedstorage/advancements/recipes/misc/pattern_grid/orange_pattern_grid.json
2ea839bcfc17011a62f43291be4a73be4251deb9 data/refinedstorage/advancements/recipes/misc/pattern_grid/pattern_grid.json e53eb701016f00c8c727a36ccd0d41d6d6ff1cf3 data/refinedstorage/advancements/recipes/misc/pattern_grid/pattern_grid.json
84ab4c4711dc5b2ac41091efa36bd3e7528915a8 data/refinedstorage/advancements/recipes/misc/pattern_grid/pink_pattern_grid.json caa14b841c970d31a9247387ab7690f17f92f626 data/refinedstorage/advancements/recipes/misc/pattern_grid/pink_pattern_grid.json
4d2b2422136aaa5b353088648cd5717ee85e608e data/refinedstorage/advancements/recipes/misc/pattern_grid/purple_pattern_grid.json ce6ed82f788fa0e8fe471971c590b36c5582969a data/refinedstorage/advancements/recipes/misc/pattern_grid/purple_pattern_grid.json
c09b30d89b1cffa81abd224f5249f520ced536b9 data/refinedstorage/advancements/recipes/misc/pattern_grid/red_pattern_grid.json 05ed2ae9497d2ff40398d9da5f8c7e2e584536c3 data/refinedstorage/advancements/recipes/misc/pattern_grid/red_pattern_grid.json
7d0da920f6891ec150ab41ac1cb165d40be1bb40 data/refinedstorage/advancements/recipes/misc/pattern_grid/white_pattern_grid.json 82c53eb4b9d9ff5f7ae26b59aafef71c90712006 data/refinedstorage/advancements/recipes/misc/pattern_grid/white_pattern_grid.json
4d80986fe46f228e235c020ea19ebee019e10e41 data/refinedstorage/advancements/recipes/misc/pattern_grid/yellow_pattern_grid.json 28c917f48693b907454319c6d7f04c56cd9a5e04 data/refinedstorage/advancements/recipes/misc/pattern_grid/yellow_pattern_grid.json
1e484115999fa62d482da0ba86c36e3a7568513c data/refinedstorage/recipes/coloring_recipes/black_controller.json 1e484115999fa62d482da0ba86c36e3a7568513c data/refinedstorage/recipes/coloring_recipes/black_controller.json
837df99fec4b00d059e5f258c8c51040989fd59b data/refinedstorage/recipes/coloring_recipes/black_crafter.json 837df99fec4b00d059e5f258c8c51040989fd59b data/refinedstorage/recipes/coloring_recipes/black_crafter.json
cc777c1de15ee96706565e3032d8a17962452316 data/refinedstorage/recipes/coloring_recipes/black_crafter_manager.json cc777c1de15ee96706565e3032d8a17962452316 data/refinedstorage/recipes/coloring_recipes/black_crafter_manager.json

View File

@@ -1,2 +1,2 @@
// 1.20.1 2023-11-05T14:19:25.380203046 Block Entity Type Tags // 1.20.4 2024-02-12T20:34:18.531158825 Block Entity Type Tags
98555d946827da8ddb7a7c451a1c99f4d0184ad3 data/packingtape/tags/block_entity_type/blacklist/problematic.json 98555d946827da8ddb7a7c451a1c99f4d0184ad3 data/packingtape/tags/block_entity_type/blacklist/problematic.json

View File

@@ -1,4 +1,4 @@
// 1.20.1 2023-11-05T14:19:25.382491537 Tags for minecraft:item mod id refinedstorage // 1.20.4 2024-02-12T20:34:18.533198729 Tags for minecraft:item mod id refinedstorage
061bf4c2f3bdd530115615f2b04e55c2602908bd data/refinedstorage/tags/items/controller.json 061bf4c2f3bdd530115615f2b04e55c2602908bd data/refinedstorage/tags/items/controller.json
407a16e5d941c69915f75b135a13e9144cc9c43e data/refinedstorage/tags/items/crafter.json 407a16e5d941c69915f75b135a13e9144cc9c43e data/refinedstorage/tags/items/crafter.json
dc1342f1d3e6a4cd8eaaa52429a011c10c6c2d96 data/refinedstorage/tags/items/crafter_manager.json dc1342f1d3e6a4cd8eaaa52429a011c10c6c2d96 data/refinedstorage/tags/items/crafter_manager.json

View File

@@ -1,5 +1,5 @@
// 1.20.1 2023-11-05T14:52:30.007687009 Tags for minecraft:block mod id refinedstorage // 1.20.4 2024-02-12T20:34:18.553572165 Tags for minecraft:block mod id refinedstorage
885d292a69d67240dbf2e57e951bf4fff5c7a064 data/forge/tags/blocks/relocation_not_supported.json 7af8948adf9214476b9b2995799c32277c960c55 data/forge/tags/blocks/relocation_not_supported.json
061bf4c2f3bdd530115615f2b04e55c2602908bd data/refinedstorage/tags/blocks/controller.json 061bf4c2f3bdd530115615f2b04e55c2602908bd data/refinedstorage/tags/blocks/controller.json
407a16e5d941c69915f75b135a13e9144cc9c43e data/refinedstorage/tags/blocks/crafter.json 407a16e5d941c69915f75b135a13e9144cc9c43e data/refinedstorage/tags/blocks/crafter.json
dc1342f1d3e6a4cd8eaaa52429a011c10c6c2d96 data/refinedstorage/tags/blocks/crafter_manager.json dc1342f1d3e6a4cd8eaaa52429a011c10c6c2d96 data/refinedstorage/tags/blocks/crafter_manager.json

View File

@@ -1,4 +1,4 @@
// 1.20.1 2023-11-05T14:52:29.995381618 Block States: refinedstorage // 1.20.4 2024-02-12T20:34:18.545348794 Block States: refinedstorage
7b69e3ab3a7471a50e264579d36c04adb8acad35 assets/refinedstorage/blockstates/black_controller.json 7b69e3ab3a7471a50e264579d36c04adb8acad35 assets/refinedstorage/blockstates/black_controller.json
c87045bd089212825bdd0f06b0d25e7bcf0e3f5d assets/refinedstorage/blockstates/black_crafter.json c87045bd089212825bdd0f06b0d25e7bcf0e3f5d assets/refinedstorage/blockstates/black_crafter.json
999fe91e1661d6b45f9c29878f06438b3b5919dc assets/refinedstorage/blockstates/black_crafter_manager.json 999fe91e1661d6b45f9c29878f06438b3b5919dc assets/refinedstorage/blockstates/black_crafter_manager.json

View File

@@ -1,21 +1,21 @@
{ {
"values": [ "values": [
"#refinedstorage:creative_controller",
"#refinedstorage:detector", "#refinedstorage:detector",
"#refinedstorage:pattern_grid",
"#refinedstorage:network_transmitter",
"#refinedstorage:security_manager",
"#refinedstorage:disk_manipulator", "#refinedstorage:disk_manipulator",
"#refinedstorage:wireless_transmitter", "#refinedstorage:network_transmitter",
"#refinedstorage:crafter_manager",
"#refinedstorage:grid",
"#refinedstorage:crafting_monitor",
"#refinedstorage:controller",
"#refinedstorage:crafting_grid",
"#refinedstorage:crafter",
"#refinedstorage:fluid_grid", "#refinedstorage:fluid_grid",
"#refinedstorage:network_receiver", "#refinedstorage:controller",
"#refinedstorage:crafting_monitor",
"#refinedstorage:pattern_grid",
"#refinedstorage:wireless_transmitter",
"#refinedstorage:relay", "#refinedstorage:relay",
"#refinedstorage:network_receiver",
"#refinedstorage:grid",
"#refinedstorage:crafter",
"#refinedstorage:crafter_manager",
"#refinedstorage:crafting_grid",
"#refinedstorage:security_manager",
"#refinedstorage:creative_controller",
"refinedstorage:1k_storage_block", "refinedstorage:1k_storage_block",
"refinedstorage:4k_storage_block", "refinedstorage:4k_storage_block",
"refinedstorage:16k_storage_block", "refinedstorage:16k_storage_block",

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/black_controller" "refinedstorage:coloring_recipes/black_controller"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/black_crafter" "refinedstorage:coloring_recipes/black_crafter"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/black_crafter_manager" "refinedstorage:coloring_recipes/black_crafter_manager"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/black_crafting_grid" "refinedstorage:coloring_recipes/black_crafting_grid"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/black_crafting_monitor" "refinedstorage:coloring_recipes/black_crafting_monitor"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/black_detector" "refinedstorage:coloring_recipes/black_detector"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/black_disk_manipulator" "refinedstorage:coloring_recipes/black_disk_manipulator"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/black_fluid_grid" "refinedstorage:coloring_recipes/black_fluid_grid"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/black_grid" "refinedstorage:coloring_recipes/black_grid"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/black_network_receiver" "refinedstorage:coloring_recipes/black_network_receiver"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/black_network_transmitter" "refinedstorage:coloring_recipes/black_network_transmitter"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/black_pattern_grid" "refinedstorage:coloring_recipes/black_pattern_grid"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/black_relay" "refinedstorage:coloring_recipes/black_relay"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/black_security_manager" "refinedstorage:coloring_recipes/black_security_manager"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/black_wireless_transmitter" "refinedstorage:coloring_recipes/black_wireless_transmitter"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/blue_controller" "refinedstorage:coloring_recipes/blue_controller"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/blue_crafter" "refinedstorage:coloring_recipes/blue_crafter"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/blue_crafter_manager" "refinedstorage:coloring_recipes/blue_crafter_manager"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/blue_crafting_grid" "refinedstorage:coloring_recipes/blue_crafting_grid"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/blue_crafting_monitor" "refinedstorage:coloring_recipes/blue_crafting_monitor"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/blue_detector" "refinedstorage:coloring_recipes/blue_detector"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/blue_disk_manipulator" "refinedstorage:coloring_recipes/blue_disk_manipulator"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/blue_fluid_grid" "refinedstorage:coloring_recipes/blue_fluid_grid"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/blue_grid" "refinedstorage:coloring_recipes/blue_grid"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/blue_network_receiver" "refinedstorage:coloring_recipes/blue_network_receiver"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/blue_network_transmitter" "refinedstorage:coloring_recipes/blue_network_transmitter"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/blue_pattern_grid" "refinedstorage:coloring_recipes/blue_pattern_grid"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/blue_relay" "refinedstorage:coloring_recipes/blue_relay"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/blue_security_manager" "refinedstorage:coloring_recipes/blue_security_manager"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/blue_wireless_transmitter" "refinedstorage:coloring_recipes/blue_wireless_transmitter"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/brown_controller" "refinedstorage:coloring_recipes/brown_controller"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/brown_crafter" "refinedstorage:coloring_recipes/brown_crafter"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/brown_crafter_manager" "refinedstorage:coloring_recipes/brown_crafter_manager"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/brown_crafting_grid" "refinedstorage:coloring_recipes/brown_crafting_grid"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/brown_crafting_monitor" "refinedstorage:coloring_recipes/brown_crafting_monitor"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/brown_detector" "refinedstorage:coloring_recipes/brown_detector"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/brown_disk_manipulator" "refinedstorage:coloring_recipes/brown_disk_manipulator"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/brown_fluid_grid" "refinedstorage:coloring_recipes/brown_fluid_grid"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/brown_grid" "refinedstorage:coloring_recipes/brown_grid"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/brown_network_receiver" "refinedstorage:coloring_recipes/brown_network_receiver"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/brown_network_transmitter" "refinedstorage:coloring_recipes/brown_network_transmitter"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/brown_pattern_grid" "refinedstorage:coloring_recipes/brown_pattern_grid"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/brown_relay" "refinedstorage:coloring_recipes/brown_relay"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/brown_security_manager" "refinedstorage:coloring_recipes/brown_security_manager"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/brown_wireless_transmitter" "refinedstorage:coloring_recipes/brown_wireless_transmitter"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/controller" "refinedstorage:coloring_recipes/controller"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/crafter" "refinedstorage:coloring_recipes/crafter"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/crafter_manager" "refinedstorage:coloring_recipes/crafter_manager"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/crafting_grid" "refinedstorage:coloring_recipes/crafting_grid"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/crafting_monitor" "refinedstorage:coloring_recipes/crafting_monitor"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/cyan_controller" "refinedstorage:coloring_recipes/cyan_controller"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/cyan_crafter" "refinedstorage:coloring_recipes/cyan_crafter"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/cyan_crafter_manager" "refinedstorage:coloring_recipes/cyan_crafter_manager"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/cyan_crafting_grid" "refinedstorage:coloring_recipes/cyan_crafting_grid"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/cyan_crafting_monitor" "refinedstorage:coloring_recipes/cyan_crafting_monitor"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/cyan_detector" "refinedstorage:coloring_recipes/cyan_detector"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/cyan_disk_manipulator" "refinedstorage:coloring_recipes/cyan_disk_manipulator"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/cyan_fluid_grid" "refinedstorage:coloring_recipes/cyan_fluid_grid"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/cyan_grid" "refinedstorage:coloring_recipes/cyan_grid"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/cyan_network_receiver" "refinedstorage:coloring_recipes/cyan_network_receiver"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/cyan_network_transmitter" "refinedstorage:coloring_recipes/cyan_network_transmitter"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/cyan_pattern_grid" "refinedstorage:coloring_recipes/cyan_pattern_grid"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/cyan_relay" "refinedstorage:coloring_recipes/cyan_relay"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/cyan_security_manager" "refinedstorage:coloring_recipes/cyan_security_manager"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/cyan_wireless_transmitter" "refinedstorage:coloring_recipes/cyan_wireless_transmitter"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/detector" "refinedstorage:coloring_recipes/detector"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/disk_manipulator" "refinedstorage:coloring_recipes/disk_manipulator"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/fluid_grid" "refinedstorage:coloring_recipes/fluid_grid"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/gray_controller" "refinedstorage:coloring_recipes/gray_controller"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/gray_crafter" "refinedstorage:coloring_recipes/gray_crafter"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/gray_crafter_manager" "refinedstorage:coloring_recipes/gray_crafter_manager"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/gray_crafting_grid" "refinedstorage:coloring_recipes/gray_crafting_grid"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/gray_crafting_monitor" "refinedstorage:coloring_recipes/gray_crafting_monitor"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/gray_detector" "refinedstorage:coloring_recipes/gray_detector"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/gray_disk_manipulator" "refinedstorage:coloring_recipes/gray_disk_manipulator"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/gray_fluid_grid" "refinedstorage:coloring_recipes/gray_fluid_grid"
] ]
}, }
"sends_telemetry_event": false
} }

View File

@@ -22,14 +22,13 @@
}, },
"requirements": [ "requirements": [
[ [
"refinedstorage:controller", "has_the_recipe",
"has_the_recipe" "refinedstorage:controller"
] ]
], ],
"rewards": { "rewards": {
"recipes": [ "recipes": [
"refinedstorage:coloring_recipes/gray_grid" "refinedstorage:coloring_recipes/gray_grid"
] ]
}, }
"sends_telemetry_event": false
} }

Some files were not shown because too many files have changed in this diff Show More