Compare commits

..

No commits in common. "progression" and "main" have entirely different histories.

574 changed files with 9884 additions and 6831 deletions

1
.envrc
View file

@ -1 +0,0 @@
use nix

2
.gitignore vendored
View file

@ -17,4 +17,4 @@ classes/
.settings .settings
*.launch *.launch
.architectury-transformer .architectury-transformer
/common/src/generated/.cache /common/src/generated/.cache/9fb1092f32d4fcbf9e061ffd718d4ec689c6c95e

View file

@ -1 +1,2 @@
java openjdk-17 java openjdk-17
gradle 8.8

30
.vscode/launch.json vendored
View file

@ -3,19 +3,29 @@
"configurations": [ "configurations": [
{ {
"type": "java", "type": "java",
"request": "attach", "name": "Minecraft Client (:fabric)",
"name": "Attach to Forge Client", "request": "launch",
"hostName": "localhost", "cwd": "${workspaceFolder}/fabric/run",
"port": 5005, "console": "integratedTerminal",
"preLaunchTask": "Forge: runClient (fish) with Debug" "stopOnEntry": false,
"mainClass": "dev.architectury.transformer.TransformerRuntime",
"vmArgs": "-Dfabric.dli.config\u003d/home/toph/git/simplycompat-1.20.1-fabric-forge-template/fabric/.gradle/loom-cache/launch.cfg -Dfabric.dli.env\u003dclient -Dfabric.dli.main\u003dnet.fabricmc.loader.impl.launch.knot.KnotClient -Darchitectury.main.class\u003d/home/toph/git/simplycompat-1.20.1-fabric-forge-template/fabric/.gradle/architectury/.main_class -Darchitectury.runtime.transformer\u003d/home/toph/git/simplycompat-1.20.1-fabric-forge-template/fabric/.gradle/architectury/.transforms -Darchitectury.properties\u003d/home/toph/git/simplycompat-1.20.1-fabric-forge-template/fabric/.gradle/architectury/.properties -Djdk.attach.allowAttachSelf\u003dtrue -javaagent:/home/toph/git/simplycompat-1.20.1-fabric-forge-template/.gradle/architectury/architectury-transformer-agent.jar",
"args": "",
"env": {},
"projectName": "fabric"
}, },
{ {
"type": "java", "type": "java",
"request": "attach", "name": "Minecraft Server (:fabric)",
"name": "Attach to Fabric Client", "request": "launch",
"hostName": "localhost", "cwd": "${workspaceFolder}/fabric/run",
"port": 5005, "console": "integratedTerminal",
"preLaunchTask": "Fabric: runClient (fish) with Debug" "stopOnEntry": false,
"mainClass": "dev.architectury.transformer.TransformerRuntime",
"vmArgs": "-Dfabric.dli.config\u003d/home/toph/git/simplycompat-1.20.1-fabric-forge-template/fabric/.gradle/loom-cache/launch.cfg -Dfabric.dli.env\u003dserver -Dfabric.dli.main\u003dnet.fabricmc.loader.impl.launch.knot.KnotServer -Darchitectury.main.class\u003d/home/toph/git/simplycompat-1.20.1-fabric-forge-template/fabric/.gradle/architectury/.main_class -Darchitectury.runtime.transformer\u003d/home/toph/git/simplycompat-1.20.1-fabric-forge-template/fabric/.gradle/architectury/.transforms -Darchitectury.properties\u003d/home/toph/git/simplycompat-1.20.1-fabric-forge-template/fabric/.gradle/architectury/.properties -Djdk.attach.allowAttachSelf\u003dtrue -javaagent:/home/toph/git/simplycompat-1.20.1-fabric-forge-template/.gradle/architectury/architectury-transformer-agent.jar",
"args": "nogui",
"env": {},
"projectName": "fabric"
} }
] ]
} }

View file

@ -15,8 +15,10 @@
}, },
"java.compile.nullAnalysis.mode": "automatic", "java.compile.nullAnalysis.mode": "automatic",
"java.configuration.updateBuildConfiguration": "interactive", "java.configuration.updateBuildConfiguration": "interactive",
"java.import.gradle.home": "/home/toph/.asdf/installs/gradle/8.8",
"java.jdt.ls.java.home": "/home/toph/.asdf/installs/java/openjdk-17",
"java.jdt.ls.vmargs": "-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx4G -Xms100m -Xlog:disable", "java.jdt.ls.vmargs": "-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx4G -Xms100m -Xlog:disable",
"jdk.jdkhome": "/home/toph/.asdf/installs/java/openjdk-17",
"prettier-plugin-java-vscode.prettierConfigPath": "${workspaceFolder}/.prettierrc.yaml", "prettier-plugin-java-vscode.prettierConfigPath": "${workspaceFolder}/.prettierrc.yaml",
"workbench.iconTheme": "material-icon-theme", "workbench.iconTheme": "material-icon-theme"
"jdk.jdkhome": "/home/toph/.asdf/installs/java/openjdk-17"
} }

29
.vscode/tasks.json vendored
View file

@ -1,29 +0,0 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Forge: runClient with Debug",
"type": "shell",
"command": "nix-shell",
"args": [
"--command",
"gradle forge:runClient --offline --no-daemon --stacktrace --debug-jvm"
],
"options": {
"cwd": "${workspaceFolder}"
}
},
{
"label": "Fabric: runClient with Debug",
"type": "shell",
"command": "nix-shell",
"args": [
"--command",
"gradle fabric:runClient --offline --no-daemon --stacktrace --debug-jvm"
],
"options": {
"cwd": "${workspaceFolder}"
}
}
]
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_refined": {
"conditions": {
"items": [
{
"items": [
"progression:refined_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "progression:refined_boots"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_refined",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:refined_boots"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_refined": {
"conditions": {
"items": [
{
"items": [
"progression:refined_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "progression:refined_chestplate"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_refined",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:refined_chestplate"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_refined": {
"conditions": {
"items": [
{
"items": [
"progression:refined_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "progression:refined_helmet"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_refined",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:refined_helmet"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_refined": {
"conditions": {
"items": [
{
"items": [
"progression:refined_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "progression:refined_leggings"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_refined",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:refined_leggings"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_refined": {
"conditions": {
"items": [
{
"items": [
"progression:refined_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "progression:refined_sword"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_refined",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:refined_sword"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_rose_gold": {
"conditions": {
"items": [
{
"items": [
"progression:rose_gold_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "progression:rose_gold_sword"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_rose_gold",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:rose_gold_sword"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_shock": {
"conditions": {
"items": [
{
"items": [
"progression:shock_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "progression:shock_sword"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_shock",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:shock_sword"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_steel": {
"conditions": {
"items": [
{
"items": [
"progression:steel_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "progression:steel_chestplate"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_steel",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:steel_chestplate"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_sturdy": {
"conditions": {
"items": [
{
"items": [
"progression:sturdy_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "progression:sturdy_chestplate"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_sturdy",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:sturdy_chestplate"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_the_recipe": {
"conditions": {
"recipe": "progression:void_chestplate"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_void": {
"conditions": {
"items": [
{
"items": [
"progression:void_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_void",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:void_chestplate"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_the_recipe": {
"conditions": {
"recipe": "progression:void_helmet"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_void": {
"conditions": {
"items": [
{
"items": [
"progression:void_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_void",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:void_helmet"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_the_recipe": {
"conditions": {
"recipe": "progression:void_leggings"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_void": {
"conditions": {
"items": [
{
"items": [
"progression:void_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_void",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:void_leggings"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_the_recipe": {
"conditions": {
"recipe": "progression:whither_boots"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_whither": {
"conditions": {
"items": [
{
"items": [
"progression:whither_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_whither",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:whither_boots"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_the_recipe": {
"conditions": {
"recipe": "progression:whither_chestplate"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_whither": {
"conditions": {
"items": [
{
"items": [
"progression:whither_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_whither",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:whither_chestplate"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_the_recipe": {
"conditions": {
"recipe": "progression:whither_helmet"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_whither": {
"conditions": {
"items": [
{
"items": [
"progression:whither_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_whither",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:whither_helmet"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_the_recipe": {
"conditions": {
"recipe": "progression:whither_leggings"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_whither": {
"conditions": {
"items": [
{
"items": [
"progression:whither_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_whither",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:whither_leggings"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_the_recipe": {
"conditions": {
"recipe": "progression:whither_sword"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_whither": {
"conditions": {
"items": [
{
"items": [
"progression:whither_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_whither",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:whither_sword"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_copper": {
"conditions": {
"items": [
{
"items": [
"progression:copper_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "progression:copper_pickaxe"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_copper",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:copper_pickaxe"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_copper": {
"conditions": {
"items": [
{
"items": [
"progression:copper_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "progression:copper_shovel"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_copper",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:copper_shovel"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_echo": {
"conditions": {
"items": [
{
"items": [
"progression:echo_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "progression:echo_pickaxe"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_echo",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:echo_pickaxe"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_echo": {
"conditions": {
"items": [
{
"items": [
"progression:echo_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "progression:echo_shovel"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_echo",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:echo_shovel"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_exposed_copper": {
"conditions": {
"items": [
{
"items": [
"progression:exposed_copper_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "progression:exposed_copper_axe"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_exposed_copper",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:exposed_copper_axe"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_exposed_copper": {
"conditions": {
"items": [
{
"items": [
"progression:exposed_copper_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "progression:exposed_copper_hoe"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_exposed_copper",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:exposed_copper_hoe"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_exposed_copper": {
"conditions": {
"items": [
{
"items": [
"progression:exposed_copper_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "progression:exposed_copper_pickaxe"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_exposed_copper",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:exposed_copper_pickaxe"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_exposed_copper": {
"conditions": {
"items": [
{
"items": [
"progression:exposed_copper_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "progression:exposed_copper_shovel"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_exposed_copper",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:exposed_copper_shovel"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_oxidized_copper": {
"conditions": {
"items": [
{
"items": [
"progression:oxidized_copper_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "progression:oxidized_copper_axe"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_oxidized_copper",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:oxidized_copper_axe"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_oxidized_copper": {
"conditions": {
"items": [
{
"items": [
"progression:oxidized_copper_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "progression:oxidized_copper_hoe"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_oxidized_copper",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:oxidized_copper_hoe"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_oxidized_copper": {
"conditions": {
"items": [
{
"items": [
"progression:oxidized_copper_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "progression:oxidized_copper_pickaxe"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_oxidized_copper",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:oxidized_copper_pickaxe"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_oxidized_copper": {
"conditions": {
"items": [
{
"items": [
"progression:oxidized_copper_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "progression:oxidized_copper_shovel"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_oxidized_copper",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:oxidized_copper_shovel"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_refined": {
"conditions": {
"items": [
{
"items": [
"progression:refined_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "progression:refined_axe"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_refined",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:refined_axe"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_refined": {
"conditions": {
"items": [
{
"items": [
"progression:refined_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "progression:refined_hoe"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_refined",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:refined_hoe"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_refined": {
"conditions": {
"items": [
{
"items": [
"progression:refined_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "progression:refined_pickaxe"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_refined",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:refined_pickaxe"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_refined": {
"conditions": {
"items": [
{
"items": [
"progression:refined_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "progression:refined_shovel"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_refined",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:refined_shovel"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_rose_gold": {
"conditions": {
"items": [
{
"items": [
"progression:rose_gold_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "progression:rose_gold_axe"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_rose_gold",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:rose_gold_axe"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_rose_gold": {
"conditions": {
"items": [
{
"items": [
"progression:rose_gold_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "progression:rose_gold_hoe"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_rose_gold",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:rose_gold_hoe"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_rose_gold": {
"conditions": {
"items": [
{
"items": [
"progression:rose_gold_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "progression:rose_gold_pickaxe"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_rose_gold",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:rose_gold_pickaxe"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_rose_gold": {
"conditions": {
"items": [
{
"items": [
"progression:rose_gold_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "progression:rose_gold_shovel"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_rose_gold",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:rose_gold_shovel"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_shock": {
"conditions": {
"items": [
{
"items": [
"progression:shock_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "progression:shock_axe"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_shock",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:shock_axe"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_shock": {
"conditions": {
"items": [
{
"items": [
"progression:shock_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "progression:shock_hoe"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_shock",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:shock_hoe"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_shock": {
"conditions": {
"items": [
{
"items": [
"progression:shock_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "progression:shock_pickaxe"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_shock",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:shock_pickaxe"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_shock": {
"conditions": {
"items": [
{
"items": [
"progression:shock_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "progression:shock_shovel"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_shock",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:shock_shovel"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_steel": {
"conditions": {
"items": [
{
"items": [
"progression:steel_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "progression:steel_pickaxe"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_steel",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:steel_pickaxe"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_steel": {
"conditions": {
"items": [
{
"items": [
"progression:steel_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "progression:steel_shovel"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_steel",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:steel_shovel"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_sturdy": {
"conditions": {
"items": [
{
"items": [
"progression:sturdy_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "progression:sturdy_pickaxe"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_sturdy",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:sturdy_pickaxe"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_sturdy": {
"conditions": {
"items": [
{
"items": [
"progression:sturdy_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "progression:sturdy_shovel"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_sturdy",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:sturdy_shovel"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_the_recipe": {
"conditions": {
"recipe": "progression:void_pickaxe"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_void": {
"conditions": {
"items": [
{
"items": [
"progression:void_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_void",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:void_pickaxe"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_the_recipe": {
"conditions": {
"recipe": "progression:void_shovel"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_void": {
"conditions": {
"items": [
{
"items": [
"progression:void_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_void",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:void_shovel"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_the_recipe": {
"conditions": {
"recipe": "progression:weathered_copper_axe"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_weathered_copper": {
"conditions": {
"items": [
{
"items": [
"progression:weathered_copper_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_weathered_copper",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:weathered_copper_axe"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_the_recipe": {
"conditions": {
"recipe": "progression:weathered_copper_hoe"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_weathered_copper": {
"conditions": {
"items": [
{
"items": [
"progression:weathered_copper_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_weathered_copper",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:weathered_copper_hoe"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_the_recipe": {
"conditions": {
"recipe": "progression:weathered_copper_pickaxe"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_weathered_copper": {
"conditions": {
"items": [
{
"items": [
"progression:weathered_copper_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_weathered_copper",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:weathered_copper_pickaxe"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_the_recipe": {
"conditions": {
"recipe": "progression:weathered_copper_shovel"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_weathered_copper": {
"conditions": {
"items": [
{
"items": [
"progression:weathered_copper_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_weathered_copper",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:weathered_copper_shovel"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_the_recipe": {
"conditions": {
"recipe": "progression:whither_axe"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_whither": {
"conditions": {
"items": [
{
"items": [
"progression:whither_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_whither",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:whither_axe"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_the_recipe": {
"conditions": {
"recipe": "progression:whither_hoe"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_whither": {
"conditions": {
"items": [
{
"items": [
"progression:whither_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_whither",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:whither_hoe"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_the_recipe": {
"conditions": {
"recipe": "progression:whither_pickaxe"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_whither": {
"conditions": {
"items": [
{
"items": [
"progression:whither_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_whither",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:whither_pickaxe"
]
},
"sends_telemetry_event": false
}

View file

@ -1,35 +0,0 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_the_recipe": {
"conditions": {
"recipe": "progression:whither_shovel"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_whither": {
"conditions": {
"items": [
{
"items": [
"progression:whither_ingot"
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"has_whither",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"progression:whither_shovel"
]
},
"sends_telemetry_event": false
}

View file

@ -1,19 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:copper_ingot"
}
},
"pattern": [
" ",
"I I",
"I I"
],
"result": {
"item": "progression:copper_boots"
},
"show_notification": true
}

View file

@ -1,19 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:copper_ingot"
}
},
"pattern": [
"I I",
"III",
"III"
],
"result": {
"item": "progression:copper_chestplate"
},
"show_notification": true
}

View file

@ -1,19 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:copper_ingot"
}
},
"pattern": [
"III",
"I I",
" "
],
"result": {
"item": "progression:copper_helmet"
},
"show_notification": true
}

View file

@ -1,19 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:copper_ingot"
}
},
"pattern": [
"III",
"I I",
"I I"
],
"result": {
"item": "progression:copper_leggings"
},
"show_notification": true
}

View file

@ -1,19 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:echo_ingot"
}
},
"pattern": [
" ",
"I I",
"I I"
],
"result": {
"item": "progression:echo_boots"
},
"show_notification": true
}

View file

@ -1,19 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:echo_ingot"
}
},
"pattern": [
"I I",
"III",
"III"
],
"result": {
"item": "progression:echo_chestplate"
},
"show_notification": true
}

View file

@ -1,19 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:echo_ingot"
}
},
"pattern": [
"III",
"I I",
" "
],
"result": {
"item": "progression:echo_helmet"
},
"show_notification": true
}

View file

@ -1,19 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:echo_ingot"
}
},
"pattern": [
"III",
"I I",
"I I"
],
"result": {
"item": "progression:echo_leggings"
},
"show_notification": true
}

View file

@ -1,22 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:echo_ingot"
},
"S": {
"tag": "forge:rods/wooden"
}
},
"pattern": [
"III",
" S ",
" S "
],
"result": {
"item": "progression:echo_pickaxe"
},
"show_notification": true
}

View file

@ -1,22 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:exposed_copper_ingot"
},
"S": {
"tag": "forge:rods/wooden"
}
},
"pattern": [
"II",
"SI",
"S "
],
"result": {
"item": "progression:exposed_copper_axe"
},
"show_notification": true
}

View file

@ -1,19 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:exposed_copper_ingot"
}
},
"pattern": [
" ",
"I I",
"I I"
],
"result": {
"item": "progression:exposed_copper_boots"
},
"show_notification": true
}

View file

@ -1,19 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:exposed_copper_ingot"
}
},
"pattern": [
"I I",
"III",
"III"
],
"result": {
"item": "progression:exposed_copper_chestplate"
},
"show_notification": true
}

View file

@ -1,19 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:exposed_copper_ingot"
}
},
"pattern": [
"III",
"I I",
" "
],
"result": {
"item": "progression:exposed_copper_helmet"
},
"show_notification": true
}

View file

@ -1,22 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:exposed_copper_ingot"
},
"S": {
"tag": "forge:rods/wooden"
}
},
"pattern": [
"II",
"S ",
"S "
],
"result": {
"item": "progression:exposed_copper_hoe"
},
"show_notification": true
}

View file

@ -1,19 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:exposed_copper_ingot"
}
},
"pattern": [
"III",
"I I",
"I I"
],
"result": {
"item": "progression:exposed_copper_leggings"
},
"show_notification": true
}

View file

@ -1,22 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:exposed_copper_ingot"
},
"S": {
"tag": "forge:rods/wooden"
}
},
"pattern": [
"III",
" S ",
" S "
],
"result": {
"item": "progression:exposed_copper_pickaxe"
},
"show_notification": true
}

View file

@ -1,22 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:exposed_copper_ingot"
},
"S": {
"tag": "forge:rods/wooden"
}
},
"pattern": [
"I",
"S",
"S"
],
"result": {
"item": "progression:exposed_copper_shovel"
},
"show_notification": true
}

View file

@ -1,22 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:exposed_copper_ingot"
},
"S": {
"tag": "forge:rods/wooden"
}
},
"pattern": [
"I",
"I",
"S"
],
"result": {
"item": "progression:exposed_copper_sword"
},
"show_notification": true
}

View file

@ -1,22 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:oxidized_copper_ingot"
},
"S": {
"tag": "forge:rods/wooden"
}
},
"pattern": [
"II",
"SI",
"S "
],
"result": {
"item": "progression:oxidized_copper_axe"
},
"show_notification": true
}

View file

@ -1,19 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:oxidized_copper_ingot"
}
},
"pattern": [
" ",
"I I",
"I I"
],
"result": {
"item": "progression:oxidized_copper_boots"
},
"show_notification": true
}

View file

@ -1,19 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:oxidized_copper_ingot"
}
},
"pattern": [
"I I",
"III",
"III"
],
"result": {
"item": "progression:oxidized_copper_chestplate"
},
"show_notification": true
}

View file

@ -1,19 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:oxidized_copper_ingot"
}
},
"pattern": [
"III",
"I I",
" "
],
"result": {
"item": "progression:oxidized_copper_helmet"
},
"show_notification": true
}

View file

@ -1,22 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:oxidized_copper_ingot"
},
"S": {
"tag": "forge:rods/wooden"
}
},
"pattern": [
"II",
"S ",
"S "
],
"result": {
"item": "progression:oxidized_copper_hoe"
},
"show_notification": true
}

View file

@ -1,19 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:oxidized_copper_ingot"
}
},
"pattern": [
"III",
"I I",
"I I"
],
"result": {
"item": "progression:oxidized_copper_leggings"
},
"show_notification": true
}

View file

@ -1,22 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:oxidized_copper_ingot"
},
"S": {
"tag": "forge:rods/wooden"
}
},
"pattern": [
"III",
" S ",
" S "
],
"result": {
"item": "progression:oxidized_copper_pickaxe"
},
"show_notification": true
}

View file

@ -1,22 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:oxidized_copper_ingot"
},
"S": {
"tag": "forge:rods/wooden"
}
},
"pattern": [
"I",
"S",
"S"
],
"result": {
"item": "progression:oxidized_copper_shovel"
},
"show_notification": true
}

View file

@ -1,22 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:oxidized_copper_ingot"
},
"S": {
"tag": "forge:rods/wooden"
}
},
"pattern": [
"I",
"I",
"S"
],
"result": {
"item": "progression:oxidized_copper_sword"
},
"show_notification": true
}

View file

@ -1,22 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:refined_ingot"
},
"S": {
"tag": "forge:rods/wooden"
}
},
"pattern": [
"II",
"SI",
"S "
],
"result": {
"item": "progression:refined_axe"
},
"show_notification": true
}

View file

@ -1,19 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:refined_ingot"
}
},
"pattern": [
" ",
"I I",
"I I"
],
"result": {
"item": "progression:refined_boots"
},
"show_notification": true
}

View file

@ -1,19 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:refined_ingot"
}
},
"pattern": [
"I I",
"III",
"III"
],
"result": {
"item": "progression:refined_chestplate"
},
"show_notification": true
}

View file

@ -1,19 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:refined_ingot"
}
},
"pattern": [
"III",
"I I",
" "
],
"result": {
"item": "progression:refined_helmet"
},
"show_notification": true
}

View file

@ -1,22 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:refined_ingot"
},
"S": {
"tag": "forge:rods/wooden"
}
},
"pattern": [
"II",
"S ",
"S "
],
"result": {
"item": "progression:refined_hoe"
},
"show_notification": true
}

View file

@ -1,19 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:refined_ingot"
}
},
"pattern": [
"III",
"I I",
"I I"
],
"result": {
"item": "progression:refined_leggings"
},
"show_notification": true
}

View file

@ -1,22 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:refined_ingot"
},
"S": {
"tag": "forge:rods/wooden"
}
},
"pattern": [
"III",
" S ",
" S "
],
"result": {
"item": "progression:refined_pickaxe"
},
"show_notification": true
}

View file

@ -1,22 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:refined_ingot"
},
"S": {
"tag": "forge:rods/wooden"
}
},
"pattern": [
"I",
"S",
"S"
],
"result": {
"item": "progression:refined_shovel"
},
"show_notification": true
}

View file

@ -1,22 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:refined_ingot"
},
"S": {
"tag": "forge:rods/wooden"
}
},
"pattern": [
"I",
"I",
"S"
],
"result": {
"item": "progression:refined_sword"
},
"show_notification": true
}

View file

@ -1,22 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:rose_gold_ingot"
},
"S": {
"tag": "forge:rods/wooden"
}
},
"pattern": [
"II",
"SI",
"S "
],
"result": {
"item": "progression:rose_gold_axe"
},
"show_notification": true
}

View file

@ -1,19 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:rose_gold_ingot"
}
},
"pattern": [
" ",
"I I",
"I I"
],
"result": {
"item": "progression:rose_gold_boots"
},
"show_notification": true
}

View file

@ -1,19 +0,0 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"group": "progression",
"key": {
"I": {
"tag": "progression:rose_gold_ingot"
}
},
"pattern": [
"I I",
"III",
"III"
],
"result": {
"item": "progression:rose_gold_chestplate"
},
"show_notification": true
}

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