diff --git a/common/src/main/java/cc/cassian/pyrite/Pyrite.java b/common/src/main/java/cc/cassian/pyrite/Pyrite.java index 1197a3258..140f56112 100644 --- a/common/src/main/java/cc/cassian/pyrite/Pyrite.java +++ b/common/src/main/java/cc/cassian/pyrite/Pyrite.java @@ -24,10 +24,19 @@ public static void init() { // Switchable Glass createPyriteBlock("switchable_glass", "switchable_glass", Blocks.GLASS); // Cobblestone Bricks - generateBrickSet("cobblestone_brick", Blocks.COBBLESTONE, MapColor.STONE_GRAY, 0); - // Mossy Cobblestone Bricks - generateBrickSet("mossy_cobblestone_brick", Blocks.MOSSY_COBBLESTONE, MapColor.STONE_GRAY, 0); - generateBrickSet("smooth_stone_brick", Blocks.COBBLESTONE, MapColor.STONE_GRAY, 0); + generateBrickSet("cobblestone_brick", Blocks.COBBLESTONE, MapColor.STONE_GRAY, true); + // Smooth Stone Bricks + generateBrickSet("smooth_stone_brick", Blocks.SMOOTH_STONE, MapColor.STONE_GRAY, true); + // Granite Bricks + generateBrickSet("granite_brick", Blocks.GRANITE, MapColor.DIRT_BROWN, true); + // Andesite Bricks + generateBrickSet("andesite_brick", Blocks.ANDESITE, MapColor.STONE_GRAY, true); + // Diorite Bricks + generateBrickSet("diorite_brick", Blocks.DIORITE, MapColor.OFF_WHITE, true); + // Calcite Bricks + generateBrickSet("calcite_brick", Blocks.CALCITE, MapColor.OFF_WHITE, true); + // Mossy Deepslate Bricks + generateBrickSet("mossy_deepslate_brick", Blocks.DEEPSLATE_BRICKS, MapColor.BLACK); // Grass Set generateTurfSets(); // Nether Brick Fence Gate diff --git a/common/src/main/java/cc/cassian/pyrite/functions/BlockCreator.java b/common/src/main/java/cc/cassian/pyrite/functions/BlockCreator.java index 98c01e5ca..61ff56129 100644 --- a/common/src/main/java/cc/cassian/pyrite/functions/BlockCreator.java +++ b/common/src/main/java/cc/cassian/pyrite/functions/BlockCreator.java @@ -180,6 +180,16 @@ public static void generateBrickSet(String blockID, Block copyBlock, MapColor co createPyriteBlock(blockID+"_wall_gate","fence_gate", copyBlock); } + public static void generateBrickSet(String blockID, Block copyBlock, MapColor color) { + generateBrickSet(blockID, copyBlock, color, 0); + } + + public static void generateBrickSet(String blockID, Block copyBlock, MapColor color, boolean generateMossySet) { + generateBrickSet(blockID, copyBlock, color, 0); + if (generateMossySet) + generateBrickSet("mossy_"+blockID, copyBlock, color, 0); + } + //Generate a Turf block set - including block and its slab, stair, and carpet variants. public static void createTurfSet(String blockID, Block copyBlock) { diff --git a/common/src/main/resources/assets/pyrite/blockstates/andesite_brick_slab.json b/common/src/main/resources/assets/pyrite/blockstates/andesite_brick_slab.json new file mode 100644 index 000000000..205a654ba --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/andesite_brick_slab.json @@ -0,0 +1 @@ +{"variants":{"type=bottom":{"model":"pyrite:block/andesite_brick_slab"},"type=double":{"model":"pyrite:block/andesite_bricks"},"type=top":{"model":"pyrite:block/andesite_brick_slab_top"}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/andesite_brick_stairs.json b/common/src/main/resources/assets/pyrite/blockstates/andesite_brick_stairs.json new file mode 100644 index 000000000..4df968255 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/andesite_brick_stairs.json @@ -0,0 +1 @@ +{"variants":{"facing=east,half=bottom,shape=inner_left":{"model":"pyrite:block/andesite_brick_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"pyrite:block/andesite_brick_stairs_inner"},"facing=east,half=bottom,shape=outer_left":{"model":"pyrite:block/andesite_brick_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"pyrite:block/andesite_brick_stairs_outer"},"facing=east,half=bottom,shape=straight":{"model":"pyrite:block/andesite_brick_stairs"},"facing=east,half=top,shape=inner_left":{"model":"pyrite:block/andesite_brick_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"pyrite:block/andesite_brick_stairs_inner","x":180,"y":90,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"pyrite:block/andesite_brick_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"pyrite:block/andesite_brick_stairs_outer","x":180,"y":90,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"pyrite:block/andesite_brick_stairs","x":180,"uvlock":true},"facing=north,half=bottom,shape=inner_left":{"model":"pyrite:block/andesite_brick_stairs_inner","y":180,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"pyrite:block/andesite_brick_stairs_inner","y":270,"uvlock":true},"facing=north,half=bottom,shape=outer_left":{"model":"pyrite:block/andesite_brick_stairs_outer","y":180,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"pyrite:block/andesite_brick_stairs_outer","y":270,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"pyrite:block/andesite_brick_stairs","y":270,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"pyrite:block/andesite_brick_stairs_inner","x":180,"y":270,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"pyrite:block/andesite_brick_stairs_inner","x":180,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"pyrite:block/andesite_brick_stairs_outer","x":180,"y":270,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"pyrite:block/andesite_brick_stairs_outer","x":180,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"pyrite:block/andesite_brick_stairs","x":180,"y":270,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"pyrite:block/andesite_brick_stairs_inner"},"facing=south,half=bottom,shape=inner_right":{"model":"pyrite:block/andesite_brick_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"pyrite:block/andesite_brick_stairs_outer"},"facing=south,half=bottom,shape=outer_right":{"model":"pyrite:block/andesite_brick_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"pyrite:block/andesite_brick_stairs","y":90,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"pyrite:block/andesite_brick_stairs_inner","x":180,"y":90,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"pyrite:block/andesite_brick_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"pyrite:block/andesite_brick_stairs_outer","x":180,"y":90,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"pyrite:block/andesite_brick_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"pyrite:block/andesite_brick_stairs","x":180,"y":90,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"pyrite:block/andesite_brick_stairs_inner","y":90,"uvlock":true},"facing=west,half=bottom,shape=inner_right":{"model":"pyrite:block/andesite_brick_stairs_inner","y":180,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"pyrite:block/andesite_brick_stairs_outer","y":90,"uvlock":true},"facing=west,half=bottom,shape=outer_right":{"model":"pyrite:block/andesite_brick_stairs_outer","y":180,"uvlock":true},"facing=west,half=bottom,shape=straight":{"model":"pyrite:block/andesite_brick_stairs","y":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"pyrite:block/andesite_brick_stairs_inner","x":180,"y":180,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"pyrite:block/andesite_brick_stairs_inner","x":180,"y":270,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"pyrite:block/andesite_brick_stairs_outer","x":180,"y":180,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"pyrite:block/andesite_brick_stairs_outer","x":180,"y":270,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"pyrite:block/andesite_brick_stairs","x":180,"y":180,"uvlock":true}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/andesite_brick_wall.json b/common/src/main/resources/assets/pyrite/blockstates/andesite_brick_wall.json new file mode 100644 index 000000000..858222849 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/andesite_brick_wall.json @@ -0,0 +1 @@ +{"multipart":[{"apply":{"model":"pyrite:block/andesite_brick_wall_post"},"when":{"up":"true"}},{"apply":{"model":"pyrite:block/andesite_brick_wall_side","uvlock":true},"when":{"north":"low"}},{"apply":{"model":"pyrite:block/andesite_brick_wall_side","uvlock":true,"y":90},"when":{"east":"low"}},{"apply":{"model":"pyrite:block/andesite_brick_wall_side","uvlock":true,"y":180},"when":{"south":"low"}},{"apply":{"model":"pyrite:block/andesite_brick_wall_side","uvlock":true,"y":270},"when":{"west":"low"}},{"apply":{"model":"pyrite:block/andesite_brick_wall_side_tall","uvlock":true},"when":{"north":"tall"}},{"apply":{"model":"pyrite:block/andesite_brick_wall_side_tall","uvlock":true,"y":90},"when":{"east":"tall"}},{"apply":{"model":"pyrite:block/andesite_brick_wall_side_tall","uvlock":true,"y":180},"when":{"south":"tall"}},{"apply":{"model":"pyrite:block/andesite_brick_wall_side_tall","uvlock":true,"y":270},"when":{"west":"tall"}}]} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/andesite_brick_wall_gate.json b/common/src/main/resources/assets/pyrite/blockstates/andesite_brick_wall_gate.json new file mode 100644 index 000000000..695eb3862 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/andesite_brick_wall_gate.json @@ -0,0 +1 @@ +{"variants":{"facing=east,in_wall=false,open=false":{"model":"pyrite:block/andesite_brick_wall_gate","uvlock":true,"y":270},"facing=east,in_wall=false,open=true":{"model":"pyrite:block/andesite_brick_wall_gate_open","uvlock":true,"y":270},"facing=east,in_wall=true,open=false":{"model":"pyrite:block/andesite_brick_wall_gate_wall","uvlock":true,"y":270},"facing=east,in_wall=true,open=true":{"model":"pyrite:block/andesite_brick_wall_gate_wall_open","uvlock":true,"y":270},"facing=north,in_wall=false,open=false":{"model":"pyrite:block/andesite_brick_wall_gate","uvlock":true,"y":180},"facing=north,in_wall=false,open=true":{"model":"pyrite:block/andesite_brick_wall_gate_open","uvlock":true,"y":180},"facing=north,in_wall=true,open=false":{"model":"pyrite:block/andesite_brick_wall_gate_wall","uvlock":true,"y":180},"facing=north,in_wall=true,open=true":{"model":"pyrite:block/andesite_brick_wall_gate_wall_open","uvlock":true,"y":180},"facing=south,in_wall=false,open=false":{"model":"pyrite:block/andesite_brick_wall_gate","uvlock":true},"facing=south,in_wall=false,open=true":{"model":"pyrite:block/andesite_brick_wall_gate_open","uvlock":true},"facing=south,in_wall=true,open=false":{"model":"pyrite:block/andesite_brick_wall_gate_wall","uvlock":true},"facing=south,in_wall=true,open=true":{"model":"pyrite:block/andesite_brick_wall_gate_wall_open","uvlock":true},"facing=west,in_wall=false,open=false":{"model":"pyrite:block/andesite_brick_wall_gate","uvlock":true,"y":90},"facing=west,in_wall=false,open=true":{"model":"pyrite:block/andesite_brick_wall_gate_open","uvlock":true,"y":90},"facing=west,in_wall=true,open=false":{"model":"pyrite:block/andesite_brick_wall_gate_wall","uvlock":true,"y":90},"facing=west,in_wall=true,open=true":{"model":"pyrite:block/andesite_brick_wall_gate_wall_open","uvlock":true,"y":90}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/andesite_bricks.json b/common/src/main/resources/assets/pyrite/blockstates/andesite_bricks.json new file mode 100644 index 000000000..76d284e06 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/andesite_bricks.json @@ -0,0 +1 @@ +{"variants":{"":{"model":"pyrite:block/andesite_bricks"}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/calcite_brick_slab.json b/common/src/main/resources/assets/pyrite/blockstates/calcite_brick_slab.json new file mode 100644 index 000000000..c2cb536f7 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/calcite_brick_slab.json @@ -0,0 +1 @@ +{"variants":{"type=bottom":{"model":"pyrite:block/calcite_brick_slab"},"type=double":{"model":"pyrite:block/calcite_bricks"},"type=top":{"model":"pyrite:block/calcite_brick_slab_top"}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/calcite_brick_stairs.json b/common/src/main/resources/assets/pyrite/blockstates/calcite_brick_stairs.json new file mode 100644 index 000000000..5ff66f017 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/calcite_brick_stairs.json @@ -0,0 +1 @@ +{"variants":{"facing=east,half=bottom,shape=inner_left":{"model":"pyrite:block/calcite_brick_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"pyrite:block/calcite_brick_stairs_inner"},"facing=east,half=bottom,shape=outer_left":{"model":"pyrite:block/calcite_brick_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"pyrite:block/calcite_brick_stairs_outer"},"facing=east,half=bottom,shape=straight":{"model":"pyrite:block/calcite_brick_stairs"},"facing=east,half=top,shape=inner_left":{"model":"pyrite:block/calcite_brick_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"pyrite:block/calcite_brick_stairs_inner","x":180,"y":90,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"pyrite:block/calcite_brick_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"pyrite:block/calcite_brick_stairs_outer","x":180,"y":90,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"pyrite:block/calcite_brick_stairs","x":180,"uvlock":true},"facing=north,half=bottom,shape=inner_left":{"model":"pyrite:block/calcite_brick_stairs_inner","y":180,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"pyrite:block/calcite_brick_stairs_inner","y":270,"uvlock":true},"facing=north,half=bottom,shape=outer_left":{"model":"pyrite:block/calcite_brick_stairs_outer","y":180,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"pyrite:block/calcite_brick_stairs_outer","y":270,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"pyrite:block/calcite_brick_stairs","y":270,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"pyrite:block/calcite_brick_stairs_inner","x":180,"y":270,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"pyrite:block/calcite_brick_stairs_inner","x":180,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"pyrite:block/calcite_brick_stairs_outer","x":180,"y":270,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"pyrite:block/calcite_brick_stairs_outer","x":180,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"pyrite:block/calcite_brick_stairs","x":180,"y":270,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"pyrite:block/calcite_brick_stairs_inner"},"facing=south,half=bottom,shape=inner_right":{"model":"pyrite:block/calcite_brick_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"pyrite:block/calcite_brick_stairs_outer"},"facing=south,half=bottom,shape=outer_right":{"model":"pyrite:block/calcite_brick_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"pyrite:block/calcite_brick_stairs","y":90,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"pyrite:block/calcite_brick_stairs_inner","x":180,"y":90,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"pyrite:block/calcite_brick_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"pyrite:block/calcite_brick_stairs_outer","x":180,"y":90,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"pyrite:block/calcite_brick_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"pyrite:block/calcite_brick_stairs","x":180,"y":90,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"pyrite:block/calcite_brick_stairs_inner","y":90,"uvlock":true},"facing=west,half=bottom,shape=inner_right":{"model":"pyrite:block/calcite_brick_stairs_inner","y":180,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"pyrite:block/calcite_brick_stairs_outer","y":90,"uvlock":true},"facing=west,half=bottom,shape=outer_right":{"model":"pyrite:block/calcite_brick_stairs_outer","y":180,"uvlock":true},"facing=west,half=bottom,shape=straight":{"model":"pyrite:block/calcite_brick_stairs","y":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"pyrite:block/calcite_brick_stairs_inner","x":180,"y":180,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"pyrite:block/calcite_brick_stairs_inner","x":180,"y":270,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"pyrite:block/calcite_brick_stairs_outer","x":180,"y":180,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"pyrite:block/calcite_brick_stairs_outer","x":180,"y":270,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"pyrite:block/calcite_brick_stairs","x":180,"y":180,"uvlock":true}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/calcite_brick_wall.json b/common/src/main/resources/assets/pyrite/blockstates/calcite_brick_wall.json new file mode 100644 index 000000000..3067c050f --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/calcite_brick_wall.json @@ -0,0 +1 @@ +{"multipart":[{"apply":{"model":"pyrite:block/calcite_brick_wall_post"},"when":{"up":"true"}},{"apply":{"model":"pyrite:block/calcite_brick_wall_side","uvlock":true},"when":{"north":"low"}},{"apply":{"model":"pyrite:block/calcite_brick_wall_side","uvlock":true,"y":90},"when":{"east":"low"}},{"apply":{"model":"pyrite:block/calcite_brick_wall_side","uvlock":true,"y":180},"when":{"south":"low"}},{"apply":{"model":"pyrite:block/calcite_brick_wall_side","uvlock":true,"y":270},"when":{"west":"low"}},{"apply":{"model":"pyrite:block/calcite_brick_wall_side_tall","uvlock":true},"when":{"north":"tall"}},{"apply":{"model":"pyrite:block/calcite_brick_wall_side_tall","uvlock":true,"y":90},"when":{"east":"tall"}},{"apply":{"model":"pyrite:block/calcite_brick_wall_side_tall","uvlock":true,"y":180},"when":{"south":"tall"}},{"apply":{"model":"pyrite:block/calcite_brick_wall_side_tall","uvlock":true,"y":270},"when":{"west":"tall"}}]} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/calcite_brick_wall_gate.json b/common/src/main/resources/assets/pyrite/blockstates/calcite_brick_wall_gate.json new file mode 100644 index 000000000..11ed215a3 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/calcite_brick_wall_gate.json @@ -0,0 +1 @@ +{"variants":{"facing=east,in_wall=false,open=false":{"model":"pyrite:block/calcite_brick_wall_gate","uvlock":true,"y":270},"facing=east,in_wall=false,open=true":{"model":"pyrite:block/calcite_brick_wall_gate_open","uvlock":true,"y":270},"facing=east,in_wall=true,open=false":{"model":"pyrite:block/calcite_brick_wall_gate_wall","uvlock":true,"y":270},"facing=east,in_wall=true,open=true":{"model":"pyrite:block/calcite_brick_wall_gate_wall_open","uvlock":true,"y":270},"facing=north,in_wall=false,open=false":{"model":"pyrite:block/calcite_brick_wall_gate","uvlock":true,"y":180},"facing=north,in_wall=false,open=true":{"model":"pyrite:block/calcite_brick_wall_gate_open","uvlock":true,"y":180},"facing=north,in_wall=true,open=false":{"model":"pyrite:block/calcite_brick_wall_gate_wall","uvlock":true,"y":180},"facing=north,in_wall=true,open=true":{"model":"pyrite:block/calcite_brick_wall_gate_wall_open","uvlock":true,"y":180},"facing=south,in_wall=false,open=false":{"model":"pyrite:block/calcite_brick_wall_gate","uvlock":true},"facing=south,in_wall=false,open=true":{"model":"pyrite:block/calcite_brick_wall_gate_open","uvlock":true},"facing=south,in_wall=true,open=false":{"model":"pyrite:block/calcite_brick_wall_gate_wall","uvlock":true},"facing=south,in_wall=true,open=true":{"model":"pyrite:block/calcite_brick_wall_gate_wall_open","uvlock":true},"facing=west,in_wall=false,open=false":{"model":"pyrite:block/calcite_brick_wall_gate","uvlock":true,"y":90},"facing=west,in_wall=false,open=true":{"model":"pyrite:block/calcite_brick_wall_gate_open","uvlock":true,"y":90},"facing=west,in_wall=true,open=false":{"model":"pyrite:block/calcite_brick_wall_gate_wall","uvlock":true,"y":90},"facing=west,in_wall=true,open=true":{"model":"pyrite:block/calcite_brick_wall_gate_wall_open","uvlock":true,"y":90}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/calcite_bricks.json b/common/src/main/resources/assets/pyrite/blockstates/calcite_bricks.json new file mode 100644 index 000000000..b3d2931ac --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/calcite_bricks.json @@ -0,0 +1 @@ +{"variants":{"":{"model":"pyrite:block/calcite_bricks"}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/diorite_brick_slab.json b/common/src/main/resources/assets/pyrite/blockstates/diorite_brick_slab.json new file mode 100644 index 000000000..80980845a --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/diorite_brick_slab.json @@ -0,0 +1 @@ +{"variants":{"type=bottom":{"model":"pyrite:block/diorite_brick_slab"},"type=double":{"model":"pyrite:block/diorite_bricks"},"type=top":{"model":"pyrite:block/diorite_brick_slab_top"}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/diorite_brick_stairs.json b/common/src/main/resources/assets/pyrite/blockstates/diorite_brick_stairs.json new file mode 100644 index 000000000..cbebeb833 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/diorite_brick_stairs.json @@ -0,0 +1 @@ +{"variants":{"facing=east,half=bottom,shape=inner_left":{"model":"pyrite:block/diorite_brick_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"pyrite:block/diorite_brick_stairs_inner"},"facing=east,half=bottom,shape=outer_left":{"model":"pyrite:block/diorite_brick_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"pyrite:block/diorite_brick_stairs_outer"},"facing=east,half=bottom,shape=straight":{"model":"pyrite:block/diorite_brick_stairs"},"facing=east,half=top,shape=inner_left":{"model":"pyrite:block/diorite_brick_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"pyrite:block/diorite_brick_stairs_inner","x":180,"y":90,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"pyrite:block/diorite_brick_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"pyrite:block/diorite_brick_stairs_outer","x":180,"y":90,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"pyrite:block/diorite_brick_stairs","x":180,"uvlock":true},"facing=north,half=bottom,shape=inner_left":{"model":"pyrite:block/diorite_brick_stairs_inner","y":180,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"pyrite:block/diorite_brick_stairs_inner","y":270,"uvlock":true},"facing=north,half=bottom,shape=outer_left":{"model":"pyrite:block/diorite_brick_stairs_outer","y":180,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"pyrite:block/diorite_brick_stairs_outer","y":270,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"pyrite:block/diorite_brick_stairs","y":270,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"pyrite:block/diorite_brick_stairs_inner","x":180,"y":270,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"pyrite:block/diorite_brick_stairs_inner","x":180,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"pyrite:block/diorite_brick_stairs_outer","x":180,"y":270,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"pyrite:block/diorite_brick_stairs_outer","x":180,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"pyrite:block/diorite_brick_stairs","x":180,"y":270,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"pyrite:block/diorite_brick_stairs_inner"},"facing=south,half=bottom,shape=inner_right":{"model":"pyrite:block/diorite_brick_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"pyrite:block/diorite_brick_stairs_outer"},"facing=south,half=bottom,shape=outer_right":{"model":"pyrite:block/diorite_brick_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"pyrite:block/diorite_brick_stairs","y":90,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"pyrite:block/diorite_brick_stairs_inner","x":180,"y":90,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"pyrite:block/diorite_brick_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"pyrite:block/diorite_brick_stairs_outer","x":180,"y":90,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"pyrite:block/diorite_brick_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"pyrite:block/diorite_brick_stairs","x":180,"y":90,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"pyrite:block/diorite_brick_stairs_inner","y":90,"uvlock":true},"facing=west,half=bottom,shape=inner_right":{"model":"pyrite:block/diorite_brick_stairs_inner","y":180,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"pyrite:block/diorite_brick_stairs_outer","y":90,"uvlock":true},"facing=west,half=bottom,shape=outer_right":{"model":"pyrite:block/diorite_brick_stairs_outer","y":180,"uvlock":true},"facing=west,half=bottom,shape=straight":{"model":"pyrite:block/diorite_brick_stairs","y":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"pyrite:block/diorite_brick_stairs_inner","x":180,"y":180,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"pyrite:block/diorite_brick_stairs_inner","x":180,"y":270,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"pyrite:block/diorite_brick_stairs_outer","x":180,"y":180,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"pyrite:block/diorite_brick_stairs_outer","x":180,"y":270,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"pyrite:block/diorite_brick_stairs","x":180,"y":180,"uvlock":true}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/diorite_brick_wall.json b/common/src/main/resources/assets/pyrite/blockstates/diorite_brick_wall.json new file mode 100644 index 000000000..1b2f4d5c3 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/diorite_brick_wall.json @@ -0,0 +1 @@ +{"multipart":[{"apply":{"model":"pyrite:block/diorite_brick_wall_post"},"when":{"up":"true"}},{"apply":{"model":"pyrite:block/diorite_brick_wall_side","uvlock":true},"when":{"north":"low"}},{"apply":{"model":"pyrite:block/diorite_brick_wall_side","uvlock":true,"y":90},"when":{"east":"low"}},{"apply":{"model":"pyrite:block/diorite_brick_wall_side","uvlock":true,"y":180},"when":{"south":"low"}},{"apply":{"model":"pyrite:block/diorite_brick_wall_side","uvlock":true,"y":270},"when":{"west":"low"}},{"apply":{"model":"pyrite:block/diorite_brick_wall_side_tall","uvlock":true},"when":{"north":"tall"}},{"apply":{"model":"pyrite:block/diorite_brick_wall_side_tall","uvlock":true,"y":90},"when":{"east":"tall"}},{"apply":{"model":"pyrite:block/diorite_brick_wall_side_tall","uvlock":true,"y":180},"when":{"south":"tall"}},{"apply":{"model":"pyrite:block/diorite_brick_wall_side_tall","uvlock":true,"y":270},"when":{"west":"tall"}}]} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/diorite_brick_wall_gate.json b/common/src/main/resources/assets/pyrite/blockstates/diorite_brick_wall_gate.json new file mode 100644 index 000000000..04aa11d5b --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/diorite_brick_wall_gate.json @@ -0,0 +1 @@ +{"variants":{"facing=east,in_wall=false,open=false":{"model":"pyrite:block/diorite_brick_wall_gate","uvlock":true,"y":270},"facing=east,in_wall=false,open=true":{"model":"pyrite:block/diorite_brick_wall_gate_open","uvlock":true,"y":270},"facing=east,in_wall=true,open=false":{"model":"pyrite:block/diorite_brick_wall_gate_wall","uvlock":true,"y":270},"facing=east,in_wall=true,open=true":{"model":"pyrite:block/diorite_brick_wall_gate_wall_open","uvlock":true,"y":270},"facing=north,in_wall=false,open=false":{"model":"pyrite:block/diorite_brick_wall_gate","uvlock":true,"y":180},"facing=north,in_wall=false,open=true":{"model":"pyrite:block/diorite_brick_wall_gate_open","uvlock":true,"y":180},"facing=north,in_wall=true,open=false":{"model":"pyrite:block/diorite_brick_wall_gate_wall","uvlock":true,"y":180},"facing=north,in_wall=true,open=true":{"model":"pyrite:block/diorite_brick_wall_gate_wall_open","uvlock":true,"y":180},"facing=south,in_wall=false,open=false":{"model":"pyrite:block/diorite_brick_wall_gate","uvlock":true},"facing=south,in_wall=false,open=true":{"model":"pyrite:block/diorite_brick_wall_gate_open","uvlock":true},"facing=south,in_wall=true,open=false":{"model":"pyrite:block/diorite_brick_wall_gate_wall","uvlock":true},"facing=south,in_wall=true,open=true":{"model":"pyrite:block/diorite_brick_wall_gate_wall_open","uvlock":true},"facing=west,in_wall=false,open=false":{"model":"pyrite:block/diorite_brick_wall_gate","uvlock":true,"y":90},"facing=west,in_wall=false,open=true":{"model":"pyrite:block/diorite_brick_wall_gate_open","uvlock":true,"y":90},"facing=west,in_wall=true,open=false":{"model":"pyrite:block/diorite_brick_wall_gate_wall","uvlock":true,"y":90},"facing=west,in_wall=true,open=true":{"model":"pyrite:block/diorite_brick_wall_gate_wall_open","uvlock":true,"y":90}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/diorite_bricks.json b/common/src/main/resources/assets/pyrite/blockstates/diorite_bricks.json new file mode 100644 index 000000000..5c779c30a --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/diorite_bricks.json @@ -0,0 +1 @@ +{"variants":{"":{"model":"pyrite:block/diorite_bricks"}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/granite_brick_slab.json b/common/src/main/resources/assets/pyrite/blockstates/granite_brick_slab.json new file mode 100644 index 000000000..b600052ed --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/granite_brick_slab.json @@ -0,0 +1 @@ +{"variants":{"type=bottom":{"model":"pyrite:block/granite_brick_slab"},"type=double":{"model":"pyrite:block/granite_bricks"},"type=top":{"model":"pyrite:block/granite_brick_slab_top"}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/granite_brick_stairs.json b/common/src/main/resources/assets/pyrite/blockstates/granite_brick_stairs.json new file mode 100644 index 000000000..67eb388b6 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/granite_brick_stairs.json @@ -0,0 +1 @@ +{"variants":{"facing=east,half=bottom,shape=inner_left":{"model":"pyrite:block/granite_brick_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"pyrite:block/granite_brick_stairs_inner"},"facing=east,half=bottom,shape=outer_left":{"model":"pyrite:block/granite_brick_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"pyrite:block/granite_brick_stairs_outer"},"facing=east,half=bottom,shape=straight":{"model":"pyrite:block/granite_brick_stairs"},"facing=east,half=top,shape=inner_left":{"model":"pyrite:block/granite_brick_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"pyrite:block/granite_brick_stairs_inner","x":180,"y":90,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"pyrite:block/granite_brick_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"pyrite:block/granite_brick_stairs_outer","x":180,"y":90,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"pyrite:block/granite_brick_stairs","x":180,"uvlock":true},"facing=north,half=bottom,shape=inner_left":{"model":"pyrite:block/granite_brick_stairs_inner","y":180,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"pyrite:block/granite_brick_stairs_inner","y":270,"uvlock":true},"facing=north,half=bottom,shape=outer_left":{"model":"pyrite:block/granite_brick_stairs_outer","y":180,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"pyrite:block/granite_brick_stairs_outer","y":270,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"pyrite:block/granite_brick_stairs","y":270,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"pyrite:block/granite_brick_stairs_inner","x":180,"y":270,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"pyrite:block/granite_brick_stairs_inner","x":180,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"pyrite:block/granite_brick_stairs_outer","x":180,"y":270,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"pyrite:block/granite_brick_stairs_outer","x":180,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"pyrite:block/granite_brick_stairs","x":180,"y":270,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"pyrite:block/granite_brick_stairs_inner"},"facing=south,half=bottom,shape=inner_right":{"model":"pyrite:block/granite_brick_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"pyrite:block/granite_brick_stairs_outer"},"facing=south,half=bottom,shape=outer_right":{"model":"pyrite:block/granite_brick_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"pyrite:block/granite_brick_stairs","y":90,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"pyrite:block/granite_brick_stairs_inner","x":180,"y":90,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"pyrite:block/granite_brick_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"pyrite:block/granite_brick_stairs_outer","x":180,"y":90,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"pyrite:block/granite_brick_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"pyrite:block/granite_brick_stairs","x":180,"y":90,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"pyrite:block/granite_brick_stairs_inner","y":90,"uvlock":true},"facing=west,half=bottom,shape=inner_right":{"model":"pyrite:block/granite_brick_stairs_inner","y":180,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"pyrite:block/granite_brick_stairs_outer","y":90,"uvlock":true},"facing=west,half=bottom,shape=outer_right":{"model":"pyrite:block/granite_brick_stairs_outer","y":180,"uvlock":true},"facing=west,half=bottom,shape=straight":{"model":"pyrite:block/granite_brick_stairs","y":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"pyrite:block/granite_brick_stairs_inner","x":180,"y":180,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"pyrite:block/granite_brick_stairs_inner","x":180,"y":270,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"pyrite:block/granite_brick_stairs_outer","x":180,"y":180,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"pyrite:block/granite_brick_stairs_outer","x":180,"y":270,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"pyrite:block/granite_brick_stairs","x":180,"y":180,"uvlock":true}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/granite_brick_wall.json b/common/src/main/resources/assets/pyrite/blockstates/granite_brick_wall.json new file mode 100644 index 000000000..8ab14d316 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/granite_brick_wall.json @@ -0,0 +1 @@ +{"multipart":[{"apply":{"model":"pyrite:block/granite_brick_wall_post"},"when":{"up":"true"}},{"apply":{"model":"pyrite:block/granite_brick_wall_side","uvlock":true},"when":{"north":"low"}},{"apply":{"model":"pyrite:block/granite_brick_wall_side","uvlock":true,"y":90},"when":{"east":"low"}},{"apply":{"model":"pyrite:block/granite_brick_wall_side","uvlock":true,"y":180},"when":{"south":"low"}},{"apply":{"model":"pyrite:block/granite_brick_wall_side","uvlock":true,"y":270},"when":{"west":"low"}},{"apply":{"model":"pyrite:block/granite_brick_wall_side_tall","uvlock":true},"when":{"north":"tall"}},{"apply":{"model":"pyrite:block/granite_brick_wall_side_tall","uvlock":true,"y":90},"when":{"east":"tall"}},{"apply":{"model":"pyrite:block/granite_brick_wall_side_tall","uvlock":true,"y":180},"when":{"south":"tall"}},{"apply":{"model":"pyrite:block/granite_brick_wall_side_tall","uvlock":true,"y":270},"when":{"west":"tall"}}]} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/granite_brick_wall_gate.json b/common/src/main/resources/assets/pyrite/blockstates/granite_brick_wall_gate.json new file mode 100644 index 000000000..2d9e57482 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/granite_brick_wall_gate.json @@ -0,0 +1 @@ +{"variants":{"facing=east,in_wall=false,open=false":{"model":"pyrite:block/granite_brick_wall_gate","uvlock":true,"y":270},"facing=east,in_wall=false,open=true":{"model":"pyrite:block/granite_brick_wall_gate_open","uvlock":true,"y":270},"facing=east,in_wall=true,open=false":{"model":"pyrite:block/granite_brick_wall_gate_wall","uvlock":true,"y":270},"facing=east,in_wall=true,open=true":{"model":"pyrite:block/granite_brick_wall_gate_wall_open","uvlock":true,"y":270},"facing=north,in_wall=false,open=false":{"model":"pyrite:block/granite_brick_wall_gate","uvlock":true,"y":180},"facing=north,in_wall=false,open=true":{"model":"pyrite:block/granite_brick_wall_gate_open","uvlock":true,"y":180},"facing=north,in_wall=true,open=false":{"model":"pyrite:block/granite_brick_wall_gate_wall","uvlock":true,"y":180},"facing=north,in_wall=true,open=true":{"model":"pyrite:block/granite_brick_wall_gate_wall_open","uvlock":true,"y":180},"facing=south,in_wall=false,open=false":{"model":"pyrite:block/granite_brick_wall_gate","uvlock":true},"facing=south,in_wall=false,open=true":{"model":"pyrite:block/granite_brick_wall_gate_open","uvlock":true},"facing=south,in_wall=true,open=false":{"model":"pyrite:block/granite_brick_wall_gate_wall","uvlock":true},"facing=south,in_wall=true,open=true":{"model":"pyrite:block/granite_brick_wall_gate_wall_open","uvlock":true},"facing=west,in_wall=false,open=false":{"model":"pyrite:block/granite_brick_wall_gate","uvlock":true,"y":90},"facing=west,in_wall=false,open=true":{"model":"pyrite:block/granite_brick_wall_gate_open","uvlock":true,"y":90},"facing=west,in_wall=true,open=false":{"model":"pyrite:block/granite_brick_wall_gate_wall","uvlock":true,"y":90},"facing=west,in_wall=true,open=true":{"model":"pyrite:block/granite_brick_wall_gate_wall_open","uvlock":true,"y":90}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/granite_bricks.json b/common/src/main/resources/assets/pyrite/blockstates/granite_bricks.json new file mode 100644 index 000000000..7942e9153 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/granite_bricks.json @@ -0,0 +1 @@ +{"variants":{"":{"model":"pyrite:block/granite_bricks"}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/mossy_andesite_brick_slab.json b/common/src/main/resources/assets/pyrite/blockstates/mossy_andesite_brick_slab.json new file mode 100644 index 000000000..a7ff2d907 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/mossy_andesite_brick_slab.json @@ -0,0 +1 @@ +{"variants":{"type=bottom":{"model":"pyrite:block/mossy_andesite_brick_slab"},"type=double":{"model":"pyrite:block/mossy_andesite_bricks"},"type=top":{"model":"pyrite:block/mossy_andesite_brick_slab_top"}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/mossy_andesite_brick_stairs.json b/common/src/main/resources/assets/pyrite/blockstates/mossy_andesite_brick_stairs.json new file mode 100644 index 000000000..dd6f8a6fe --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/mossy_andesite_brick_stairs.json @@ -0,0 +1 @@ +{"variants":{"facing=east,half=bottom,shape=inner_left":{"model":"pyrite:block/mossy_andesite_brick_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"pyrite:block/mossy_andesite_brick_stairs_inner"},"facing=east,half=bottom,shape=outer_left":{"model":"pyrite:block/mossy_andesite_brick_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"pyrite:block/mossy_andesite_brick_stairs_outer"},"facing=east,half=bottom,shape=straight":{"model":"pyrite:block/mossy_andesite_brick_stairs"},"facing=east,half=top,shape=inner_left":{"model":"pyrite:block/mossy_andesite_brick_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"pyrite:block/mossy_andesite_brick_stairs_inner","x":180,"y":90,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"pyrite:block/mossy_andesite_brick_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"pyrite:block/mossy_andesite_brick_stairs_outer","x":180,"y":90,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"pyrite:block/mossy_andesite_brick_stairs","x":180,"uvlock":true},"facing=north,half=bottom,shape=inner_left":{"model":"pyrite:block/mossy_andesite_brick_stairs_inner","y":180,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"pyrite:block/mossy_andesite_brick_stairs_inner","y":270,"uvlock":true},"facing=north,half=bottom,shape=outer_left":{"model":"pyrite:block/mossy_andesite_brick_stairs_outer","y":180,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"pyrite:block/mossy_andesite_brick_stairs_outer","y":270,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"pyrite:block/mossy_andesite_brick_stairs","y":270,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"pyrite:block/mossy_andesite_brick_stairs_inner","x":180,"y":270,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"pyrite:block/mossy_andesite_brick_stairs_inner","x":180,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"pyrite:block/mossy_andesite_brick_stairs_outer","x":180,"y":270,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"pyrite:block/mossy_andesite_brick_stairs_outer","x":180,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"pyrite:block/mossy_andesite_brick_stairs","x":180,"y":270,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"pyrite:block/mossy_andesite_brick_stairs_inner"},"facing=south,half=bottom,shape=inner_right":{"model":"pyrite:block/mossy_andesite_brick_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"pyrite:block/mossy_andesite_brick_stairs_outer"},"facing=south,half=bottom,shape=outer_right":{"model":"pyrite:block/mossy_andesite_brick_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"pyrite:block/mossy_andesite_brick_stairs","y":90,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"pyrite:block/mossy_andesite_brick_stairs_inner","x":180,"y":90,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"pyrite:block/mossy_andesite_brick_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"pyrite:block/mossy_andesite_brick_stairs_outer","x":180,"y":90,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"pyrite:block/mossy_andesite_brick_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"pyrite:block/mossy_andesite_brick_stairs","x":180,"y":90,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"pyrite:block/mossy_andesite_brick_stairs_inner","y":90,"uvlock":true},"facing=west,half=bottom,shape=inner_right":{"model":"pyrite:block/mossy_andesite_brick_stairs_inner","y":180,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"pyrite:block/mossy_andesite_brick_stairs_outer","y":90,"uvlock":true},"facing=west,half=bottom,shape=outer_right":{"model":"pyrite:block/mossy_andesite_brick_stairs_outer","y":180,"uvlock":true},"facing=west,half=bottom,shape=straight":{"model":"pyrite:block/mossy_andesite_brick_stairs","y":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"pyrite:block/mossy_andesite_brick_stairs_inner","x":180,"y":180,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"pyrite:block/mossy_andesite_brick_stairs_inner","x":180,"y":270,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"pyrite:block/mossy_andesite_brick_stairs_outer","x":180,"y":180,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"pyrite:block/mossy_andesite_brick_stairs_outer","x":180,"y":270,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"pyrite:block/mossy_andesite_brick_stairs","x":180,"y":180,"uvlock":true}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/mossy_andesite_brick_wall.json b/common/src/main/resources/assets/pyrite/blockstates/mossy_andesite_brick_wall.json new file mode 100644 index 000000000..aa13d0a96 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/mossy_andesite_brick_wall.json @@ -0,0 +1 @@ +{"multipart":[{"apply":{"model":"pyrite:block/mossy_andesite_brick_wall_post"},"when":{"up":"true"}},{"apply":{"model":"pyrite:block/mossy_andesite_brick_wall_side","uvlock":true},"when":{"north":"low"}},{"apply":{"model":"pyrite:block/mossy_andesite_brick_wall_side","uvlock":true,"y":90},"when":{"east":"low"}},{"apply":{"model":"pyrite:block/mossy_andesite_brick_wall_side","uvlock":true,"y":180},"when":{"south":"low"}},{"apply":{"model":"pyrite:block/mossy_andesite_brick_wall_side","uvlock":true,"y":270},"when":{"west":"low"}},{"apply":{"model":"pyrite:block/mossy_andesite_brick_wall_side_tall","uvlock":true},"when":{"north":"tall"}},{"apply":{"model":"pyrite:block/mossy_andesite_brick_wall_side_tall","uvlock":true,"y":90},"when":{"east":"tall"}},{"apply":{"model":"pyrite:block/mossy_andesite_brick_wall_side_tall","uvlock":true,"y":180},"when":{"south":"tall"}},{"apply":{"model":"pyrite:block/mossy_andesite_brick_wall_side_tall","uvlock":true,"y":270},"when":{"west":"tall"}}]} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/mossy_andesite_brick_wall_gate.json b/common/src/main/resources/assets/pyrite/blockstates/mossy_andesite_brick_wall_gate.json new file mode 100644 index 000000000..6d8cd16c5 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/mossy_andesite_brick_wall_gate.json @@ -0,0 +1 @@ +{"variants":{"facing=east,in_wall=false,open=false":{"model":"pyrite:block/mossy_andesite_brick_wall_gate","uvlock":true,"y":270},"facing=east,in_wall=false,open=true":{"model":"pyrite:block/mossy_andesite_brick_wall_gate_open","uvlock":true,"y":270},"facing=east,in_wall=true,open=false":{"model":"pyrite:block/mossy_andesite_brick_wall_gate_wall","uvlock":true,"y":270},"facing=east,in_wall=true,open=true":{"model":"pyrite:block/mossy_andesite_brick_wall_gate_wall_open","uvlock":true,"y":270},"facing=north,in_wall=false,open=false":{"model":"pyrite:block/mossy_andesite_brick_wall_gate","uvlock":true,"y":180},"facing=north,in_wall=false,open=true":{"model":"pyrite:block/mossy_andesite_brick_wall_gate_open","uvlock":true,"y":180},"facing=north,in_wall=true,open=false":{"model":"pyrite:block/mossy_andesite_brick_wall_gate_wall","uvlock":true,"y":180},"facing=north,in_wall=true,open=true":{"model":"pyrite:block/mossy_andesite_brick_wall_gate_wall_open","uvlock":true,"y":180},"facing=south,in_wall=false,open=false":{"model":"pyrite:block/mossy_andesite_brick_wall_gate","uvlock":true},"facing=south,in_wall=false,open=true":{"model":"pyrite:block/mossy_andesite_brick_wall_gate_open","uvlock":true},"facing=south,in_wall=true,open=false":{"model":"pyrite:block/mossy_andesite_brick_wall_gate_wall","uvlock":true},"facing=south,in_wall=true,open=true":{"model":"pyrite:block/mossy_andesite_brick_wall_gate_wall_open","uvlock":true},"facing=west,in_wall=false,open=false":{"model":"pyrite:block/mossy_andesite_brick_wall_gate","uvlock":true,"y":90},"facing=west,in_wall=false,open=true":{"model":"pyrite:block/mossy_andesite_brick_wall_gate_open","uvlock":true,"y":90},"facing=west,in_wall=true,open=false":{"model":"pyrite:block/mossy_andesite_brick_wall_gate_wall","uvlock":true,"y":90},"facing=west,in_wall=true,open=true":{"model":"pyrite:block/mossy_andesite_brick_wall_gate_wall_open","uvlock":true,"y":90}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/mossy_andesite_bricks.json b/common/src/main/resources/assets/pyrite/blockstates/mossy_andesite_bricks.json new file mode 100644 index 000000000..9e2e88075 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/mossy_andesite_bricks.json @@ -0,0 +1 @@ +{"variants":{"":{"model":"pyrite:block/mossy_andesite_bricks"}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/mossy_calcite_brick_slab.json b/common/src/main/resources/assets/pyrite/blockstates/mossy_calcite_brick_slab.json new file mode 100644 index 000000000..392be88a3 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/mossy_calcite_brick_slab.json @@ -0,0 +1 @@ +{"variants":{"type=bottom":{"model":"pyrite:block/mossy_calcite_brick_slab"},"type=double":{"model":"pyrite:block/mossy_calcite_bricks"},"type=top":{"model":"pyrite:block/mossy_calcite_brick_slab_top"}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/mossy_calcite_brick_stairs.json b/common/src/main/resources/assets/pyrite/blockstates/mossy_calcite_brick_stairs.json new file mode 100644 index 000000000..6110893e6 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/mossy_calcite_brick_stairs.json @@ -0,0 +1 @@ +{"variants":{"facing=east,half=bottom,shape=inner_left":{"model":"pyrite:block/mossy_calcite_brick_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"pyrite:block/mossy_calcite_brick_stairs_inner"},"facing=east,half=bottom,shape=outer_left":{"model":"pyrite:block/mossy_calcite_brick_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"pyrite:block/mossy_calcite_brick_stairs_outer"},"facing=east,half=bottom,shape=straight":{"model":"pyrite:block/mossy_calcite_brick_stairs"},"facing=east,half=top,shape=inner_left":{"model":"pyrite:block/mossy_calcite_brick_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"pyrite:block/mossy_calcite_brick_stairs_inner","x":180,"y":90,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"pyrite:block/mossy_calcite_brick_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"pyrite:block/mossy_calcite_brick_stairs_outer","x":180,"y":90,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"pyrite:block/mossy_calcite_brick_stairs","x":180,"uvlock":true},"facing=north,half=bottom,shape=inner_left":{"model":"pyrite:block/mossy_calcite_brick_stairs_inner","y":180,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"pyrite:block/mossy_calcite_brick_stairs_inner","y":270,"uvlock":true},"facing=north,half=bottom,shape=outer_left":{"model":"pyrite:block/mossy_calcite_brick_stairs_outer","y":180,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"pyrite:block/mossy_calcite_brick_stairs_outer","y":270,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"pyrite:block/mossy_calcite_brick_stairs","y":270,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"pyrite:block/mossy_calcite_brick_stairs_inner","x":180,"y":270,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"pyrite:block/mossy_calcite_brick_stairs_inner","x":180,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"pyrite:block/mossy_calcite_brick_stairs_outer","x":180,"y":270,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"pyrite:block/mossy_calcite_brick_stairs_outer","x":180,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"pyrite:block/mossy_calcite_brick_stairs","x":180,"y":270,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"pyrite:block/mossy_calcite_brick_stairs_inner"},"facing=south,half=bottom,shape=inner_right":{"model":"pyrite:block/mossy_calcite_brick_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"pyrite:block/mossy_calcite_brick_stairs_outer"},"facing=south,half=bottom,shape=outer_right":{"model":"pyrite:block/mossy_calcite_brick_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"pyrite:block/mossy_calcite_brick_stairs","y":90,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"pyrite:block/mossy_calcite_brick_stairs_inner","x":180,"y":90,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"pyrite:block/mossy_calcite_brick_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"pyrite:block/mossy_calcite_brick_stairs_outer","x":180,"y":90,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"pyrite:block/mossy_calcite_brick_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"pyrite:block/mossy_calcite_brick_stairs","x":180,"y":90,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"pyrite:block/mossy_calcite_brick_stairs_inner","y":90,"uvlock":true},"facing=west,half=bottom,shape=inner_right":{"model":"pyrite:block/mossy_calcite_brick_stairs_inner","y":180,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"pyrite:block/mossy_calcite_brick_stairs_outer","y":90,"uvlock":true},"facing=west,half=bottom,shape=outer_right":{"model":"pyrite:block/mossy_calcite_brick_stairs_outer","y":180,"uvlock":true},"facing=west,half=bottom,shape=straight":{"model":"pyrite:block/mossy_calcite_brick_stairs","y":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"pyrite:block/mossy_calcite_brick_stairs_inner","x":180,"y":180,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"pyrite:block/mossy_calcite_brick_stairs_inner","x":180,"y":270,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"pyrite:block/mossy_calcite_brick_stairs_outer","x":180,"y":180,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"pyrite:block/mossy_calcite_brick_stairs_outer","x":180,"y":270,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"pyrite:block/mossy_calcite_brick_stairs","x":180,"y":180,"uvlock":true}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/mossy_calcite_brick_wall.json b/common/src/main/resources/assets/pyrite/blockstates/mossy_calcite_brick_wall.json new file mode 100644 index 000000000..27394399c --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/mossy_calcite_brick_wall.json @@ -0,0 +1 @@ +{"multipart":[{"apply":{"model":"pyrite:block/mossy_calcite_brick_wall_post"},"when":{"up":"true"}},{"apply":{"model":"pyrite:block/mossy_calcite_brick_wall_side","uvlock":true},"when":{"north":"low"}},{"apply":{"model":"pyrite:block/mossy_calcite_brick_wall_side","uvlock":true,"y":90},"when":{"east":"low"}},{"apply":{"model":"pyrite:block/mossy_calcite_brick_wall_side","uvlock":true,"y":180},"when":{"south":"low"}},{"apply":{"model":"pyrite:block/mossy_calcite_brick_wall_side","uvlock":true,"y":270},"when":{"west":"low"}},{"apply":{"model":"pyrite:block/mossy_calcite_brick_wall_side_tall","uvlock":true},"when":{"north":"tall"}},{"apply":{"model":"pyrite:block/mossy_calcite_brick_wall_side_tall","uvlock":true,"y":90},"when":{"east":"tall"}},{"apply":{"model":"pyrite:block/mossy_calcite_brick_wall_side_tall","uvlock":true,"y":180},"when":{"south":"tall"}},{"apply":{"model":"pyrite:block/mossy_calcite_brick_wall_side_tall","uvlock":true,"y":270},"when":{"west":"tall"}}]} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/mossy_calcite_brick_wall_gate.json b/common/src/main/resources/assets/pyrite/blockstates/mossy_calcite_brick_wall_gate.json new file mode 100644 index 000000000..28aacba2c --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/mossy_calcite_brick_wall_gate.json @@ -0,0 +1 @@ +{"variants":{"facing=east,in_wall=false,open=false":{"model":"pyrite:block/mossy_calcite_brick_wall_gate","uvlock":true,"y":270},"facing=east,in_wall=false,open=true":{"model":"pyrite:block/mossy_calcite_brick_wall_gate_open","uvlock":true,"y":270},"facing=east,in_wall=true,open=false":{"model":"pyrite:block/mossy_calcite_brick_wall_gate_wall","uvlock":true,"y":270},"facing=east,in_wall=true,open=true":{"model":"pyrite:block/mossy_calcite_brick_wall_gate_wall_open","uvlock":true,"y":270},"facing=north,in_wall=false,open=false":{"model":"pyrite:block/mossy_calcite_brick_wall_gate","uvlock":true,"y":180},"facing=north,in_wall=false,open=true":{"model":"pyrite:block/mossy_calcite_brick_wall_gate_open","uvlock":true,"y":180},"facing=north,in_wall=true,open=false":{"model":"pyrite:block/mossy_calcite_brick_wall_gate_wall","uvlock":true,"y":180},"facing=north,in_wall=true,open=true":{"model":"pyrite:block/mossy_calcite_brick_wall_gate_wall_open","uvlock":true,"y":180},"facing=south,in_wall=false,open=false":{"model":"pyrite:block/mossy_calcite_brick_wall_gate","uvlock":true},"facing=south,in_wall=false,open=true":{"model":"pyrite:block/mossy_calcite_brick_wall_gate_open","uvlock":true},"facing=south,in_wall=true,open=false":{"model":"pyrite:block/mossy_calcite_brick_wall_gate_wall","uvlock":true},"facing=south,in_wall=true,open=true":{"model":"pyrite:block/mossy_calcite_brick_wall_gate_wall_open","uvlock":true},"facing=west,in_wall=false,open=false":{"model":"pyrite:block/mossy_calcite_brick_wall_gate","uvlock":true,"y":90},"facing=west,in_wall=false,open=true":{"model":"pyrite:block/mossy_calcite_brick_wall_gate_open","uvlock":true,"y":90},"facing=west,in_wall=true,open=false":{"model":"pyrite:block/mossy_calcite_brick_wall_gate_wall","uvlock":true,"y":90},"facing=west,in_wall=true,open=true":{"model":"pyrite:block/mossy_calcite_brick_wall_gate_wall_open","uvlock":true,"y":90}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/mossy_calcite_bricks.json b/common/src/main/resources/assets/pyrite/blockstates/mossy_calcite_bricks.json new file mode 100644 index 000000000..f9ceb906a --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/mossy_calcite_bricks.json @@ -0,0 +1 @@ +{"variants":{"":{"model":"pyrite:block/mossy_calcite_bricks"}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/mossy_deepslate_brick_slab.json b/common/src/main/resources/assets/pyrite/blockstates/mossy_deepslate_brick_slab.json new file mode 100644 index 000000000..3a6b3d051 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/mossy_deepslate_brick_slab.json @@ -0,0 +1 @@ +{"variants":{"type=bottom":{"model":"pyrite:block/mossy_deepslate_brick_slab"},"type=double":{"model":"pyrite:block/mossy_deepslate_bricks"},"type=top":{"model":"pyrite:block/mossy_deepslate_brick_slab_top"}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/mossy_deepslate_brick_stairs.json b/common/src/main/resources/assets/pyrite/blockstates/mossy_deepslate_brick_stairs.json new file mode 100644 index 000000000..37fa85adb --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/mossy_deepslate_brick_stairs.json @@ -0,0 +1 @@ +{"variants":{"facing=east,half=bottom,shape=inner_left":{"model":"pyrite:block/mossy_deepslate_brick_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"pyrite:block/mossy_deepslate_brick_stairs_inner"},"facing=east,half=bottom,shape=outer_left":{"model":"pyrite:block/mossy_deepslate_brick_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"pyrite:block/mossy_deepslate_brick_stairs_outer"},"facing=east,half=bottom,shape=straight":{"model":"pyrite:block/mossy_deepslate_brick_stairs"},"facing=east,half=top,shape=inner_left":{"model":"pyrite:block/mossy_deepslate_brick_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"pyrite:block/mossy_deepslate_brick_stairs_inner","x":180,"y":90,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"pyrite:block/mossy_deepslate_brick_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"pyrite:block/mossy_deepslate_brick_stairs_outer","x":180,"y":90,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"pyrite:block/mossy_deepslate_brick_stairs","x":180,"uvlock":true},"facing=north,half=bottom,shape=inner_left":{"model":"pyrite:block/mossy_deepslate_brick_stairs_inner","y":180,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"pyrite:block/mossy_deepslate_brick_stairs_inner","y":270,"uvlock":true},"facing=north,half=bottom,shape=outer_left":{"model":"pyrite:block/mossy_deepslate_brick_stairs_outer","y":180,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"pyrite:block/mossy_deepslate_brick_stairs_outer","y":270,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"pyrite:block/mossy_deepslate_brick_stairs","y":270,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"pyrite:block/mossy_deepslate_brick_stairs_inner","x":180,"y":270,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"pyrite:block/mossy_deepslate_brick_stairs_inner","x":180,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"pyrite:block/mossy_deepslate_brick_stairs_outer","x":180,"y":270,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"pyrite:block/mossy_deepslate_brick_stairs_outer","x":180,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"pyrite:block/mossy_deepslate_brick_stairs","x":180,"y":270,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"pyrite:block/mossy_deepslate_brick_stairs_inner"},"facing=south,half=bottom,shape=inner_right":{"model":"pyrite:block/mossy_deepslate_brick_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"pyrite:block/mossy_deepslate_brick_stairs_outer"},"facing=south,half=bottom,shape=outer_right":{"model":"pyrite:block/mossy_deepslate_brick_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"pyrite:block/mossy_deepslate_brick_stairs","y":90,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"pyrite:block/mossy_deepslate_brick_stairs_inner","x":180,"y":90,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"pyrite:block/mossy_deepslate_brick_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"pyrite:block/mossy_deepslate_brick_stairs_outer","x":180,"y":90,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"pyrite:block/mossy_deepslate_brick_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"pyrite:block/mossy_deepslate_brick_stairs","x":180,"y":90,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"pyrite:block/mossy_deepslate_brick_stairs_inner","y":90,"uvlock":true},"facing=west,half=bottom,shape=inner_right":{"model":"pyrite:block/mossy_deepslate_brick_stairs_inner","y":180,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"pyrite:block/mossy_deepslate_brick_stairs_outer","y":90,"uvlock":true},"facing=west,half=bottom,shape=outer_right":{"model":"pyrite:block/mossy_deepslate_brick_stairs_outer","y":180,"uvlock":true},"facing=west,half=bottom,shape=straight":{"model":"pyrite:block/mossy_deepslate_brick_stairs","y":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"pyrite:block/mossy_deepslate_brick_stairs_inner","x":180,"y":180,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"pyrite:block/mossy_deepslate_brick_stairs_inner","x":180,"y":270,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"pyrite:block/mossy_deepslate_brick_stairs_outer","x":180,"y":180,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"pyrite:block/mossy_deepslate_brick_stairs_outer","x":180,"y":270,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"pyrite:block/mossy_deepslate_brick_stairs","x":180,"y":180,"uvlock":true}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/mossy_deepslate_brick_wall.json b/common/src/main/resources/assets/pyrite/blockstates/mossy_deepslate_brick_wall.json new file mode 100644 index 000000000..49e923aca --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/mossy_deepslate_brick_wall.json @@ -0,0 +1 @@ +{"multipart":[{"apply":{"model":"pyrite:block/mossy_deepslate_brick_wall_post"},"when":{"up":"true"}},{"apply":{"model":"pyrite:block/mossy_deepslate_brick_wall_side","uvlock":true},"when":{"north":"low"}},{"apply":{"model":"pyrite:block/mossy_deepslate_brick_wall_side","uvlock":true,"y":90},"when":{"east":"low"}},{"apply":{"model":"pyrite:block/mossy_deepslate_brick_wall_side","uvlock":true,"y":180},"when":{"south":"low"}},{"apply":{"model":"pyrite:block/mossy_deepslate_brick_wall_side","uvlock":true,"y":270},"when":{"west":"low"}},{"apply":{"model":"pyrite:block/mossy_deepslate_brick_wall_side_tall","uvlock":true},"when":{"north":"tall"}},{"apply":{"model":"pyrite:block/mossy_deepslate_brick_wall_side_tall","uvlock":true,"y":90},"when":{"east":"tall"}},{"apply":{"model":"pyrite:block/mossy_deepslate_brick_wall_side_tall","uvlock":true,"y":180},"when":{"south":"tall"}},{"apply":{"model":"pyrite:block/mossy_deepslate_brick_wall_side_tall","uvlock":true,"y":270},"when":{"west":"tall"}}]} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/mossy_deepslate_brick_wall_gate.json b/common/src/main/resources/assets/pyrite/blockstates/mossy_deepslate_brick_wall_gate.json new file mode 100644 index 000000000..4b6c649fa --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/mossy_deepslate_brick_wall_gate.json @@ -0,0 +1 @@ +{"variants":{"facing=east,in_wall=false,open=false":{"model":"pyrite:block/mossy_deepslate_brick_wall_gate","uvlock":true,"y":270},"facing=east,in_wall=false,open=true":{"model":"pyrite:block/mossy_deepslate_brick_wall_gate_open","uvlock":true,"y":270},"facing=east,in_wall=true,open=false":{"model":"pyrite:block/mossy_deepslate_brick_wall_gate_wall","uvlock":true,"y":270},"facing=east,in_wall=true,open=true":{"model":"pyrite:block/mossy_deepslate_brick_wall_gate_wall_open","uvlock":true,"y":270},"facing=north,in_wall=false,open=false":{"model":"pyrite:block/mossy_deepslate_brick_wall_gate","uvlock":true,"y":180},"facing=north,in_wall=false,open=true":{"model":"pyrite:block/mossy_deepslate_brick_wall_gate_open","uvlock":true,"y":180},"facing=north,in_wall=true,open=false":{"model":"pyrite:block/mossy_deepslate_brick_wall_gate_wall","uvlock":true,"y":180},"facing=north,in_wall=true,open=true":{"model":"pyrite:block/mossy_deepslate_brick_wall_gate_wall_open","uvlock":true,"y":180},"facing=south,in_wall=false,open=false":{"model":"pyrite:block/mossy_deepslate_brick_wall_gate","uvlock":true},"facing=south,in_wall=false,open=true":{"model":"pyrite:block/mossy_deepslate_brick_wall_gate_open","uvlock":true},"facing=south,in_wall=true,open=false":{"model":"pyrite:block/mossy_deepslate_brick_wall_gate_wall","uvlock":true},"facing=south,in_wall=true,open=true":{"model":"pyrite:block/mossy_deepslate_brick_wall_gate_wall_open","uvlock":true},"facing=west,in_wall=false,open=false":{"model":"pyrite:block/mossy_deepslate_brick_wall_gate","uvlock":true,"y":90},"facing=west,in_wall=false,open=true":{"model":"pyrite:block/mossy_deepslate_brick_wall_gate_open","uvlock":true,"y":90},"facing=west,in_wall=true,open=false":{"model":"pyrite:block/mossy_deepslate_brick_wall_gate_wall","uvlock":true,"y":90},"facing=west,in_wall=true,open=true":{"model":"pyrite:block/mossy_deepslate_brick_wall_gate_wall_open","uvlock":true,"y":90}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/mossy_deepslate_bricks.json b/common/src/main/resources/assets/pyrite/blockstates/mossy_deepslate_bricks.json new file mode 100644 index 000000000..69676e3dd --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/mossy_deepslate_bricks.json @@ -0,0 +1 @@ +{"variants":{"":{"model":"pyrite:block/mossy_deepslate_bricks"}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/mossy_diorite_brick_slab.json b/common/src/main/resources/assets/pyrite/blockstates/mossy_diorite_brick_slab.json new file mode 100644 index 000000000..f7e13f36e --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/mossy_diorite_brick_slab.json @@ -0,0 +1 @@ +{"variants":{"type=bottom":{"model":"pyrite:block/mossy_diorite_brick_slab"},"type=double":{"model":"pyrite:block/mossy_diorite_bricks"},"type=top":{"model":"pyrite:block/mossy_diorite_brick_slab_top"}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/mossy_diorite_brick_stairs.json b/common/src/main/resources/assets/pyrite/blockstates/mossy_diorite_brick_stairs.json new file mode 100644 index 000000000..7a6163a0c --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/mossy_diorite_brick_stairs.json @@ -0,0 +1 @@ +{"variants":{"facing=east,half=bottom,shape=inner_left":{"model":"pyrite:block/mossy_diorite_brick_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"pyrite:block/mossy_diorite_brick_stairs_inner"},"facing=east,half=bottom,shape=outer_left":{"model":"pyrite:block/mossy_diorite_brick_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"pyrite:block/mossy_diorite_brick_stairs_outer"},"facing=east,half=bottom,shape=straight":{"model":"pyrite:block/mossy_diorite_brick_stairs"},"facing=east,half=top,shape=inner_left":{"model":"pyrite:block/mossy_diorite_brick_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"pyrite:block/mossy_diorite_brick_stairs_inner","x":180,"y":90,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"pyrite:block/mossy_diorite_brick_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"pyrite:block/mossy_diorite_brick_stairs_outer","x":180,"y":90,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"pyrite:block/mossy_diorite_brick_stairs","x":180,"uvlock":true},"facing=north,half=bottom,shape=inner_left":{"model":"pyrite:block/mossy_diorite_brick_stairs_inner","y":180,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"pyrite:block/mossy_diorite_brick_stairs_inner","y":270,"uvlock":true},"facing=north,half=bottom,shape=outer_left":{"model":"pyrite:block/mossy_diorite_brick_stairs_outer","y":180,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"pyrite:block/mossy_diorite_brick_stairs_outer","y":270,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"pyrite:block/mossy_diorite_brick_stairs","y":270,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"pyrite:block/mossy_diorite_brick_stairs_inner","x":180,"y":270,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"pyrite:block/mossy_diorite_brick_stairs_inner","x":180,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"pyrite:block/mossy_diorite_brick_stairs_outer","x":180,"y":270,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"pyrite:block/mossy_diorite_brick_stairs_outer","x":180,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"pyrite:block/mossy_diorite_brick_stairs","x":180,"y":270,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"pyrite:block/mossy_diorite_brick_stairs_inner"},"facing=south,half=bottom,shape=inner_right":{"model":"pyrite:block/mossy_diorite_brick_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"pyrite:block/mossy_diorite_brick_stairs_outer"},"facing=south,half=bottom,shape=outer_right":{"model":"pyrite:block/mossy_diorite_brick_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"pyrite:block/mossy_diorite_brick_stairs","y":90,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"pyrite:block/mossy_diorite_brick_stairs_inner","x":180,"y":90,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"pyrite:block/mossy_diorite_brick_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"pyrite:block/mossy_diorite_brick_stairs_outer","x":180,"y":90,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"pyrite:block/mossy_diorite_brick_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"pyrite:block/mossy_diorite_brick_stairs","x":180,"y":90,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"pyrite:block/mossy_diorite_brick_stairs_inner","y":90,"uvlock":true},"facing=west,half=bottom,shape=inner_right":{"model":"pyrite:block/mossy_diorite_brick_stairs_inner","y":180,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"pyrite:block/mossy_diorite_brick_stairs_outer","y":90,"uvlock":true},"facing=west,half=bottom,shape=outer_right":{"model":"pyrite:block/mossy_diorite_brick_stairs_outer","y":180,"uvlock":true},"facing=west,half=bottom,shape=straight":{"model":"pyrite:block/mossy_diorite_brick_stairs","y":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"pyrite:block/mossy_diorite_brick_stairs_inner","x":180,"y":180,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"pyrite:block/mossy_diorite_brick_stairs_inner","x":180,"y":270,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"pyrite:block/mossy_diorite_brick_stairs_outer","x":180,"y":180,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"pyrite:block/mossy_diorite_brick_stairs_outer","x":180,"y":270,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"pyrite:block/mossy_diorite_brick_stairs","x":180,"y":180,"uvlock":true}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/mossy_diorite_brick_wall.json b/common/src/main/resources/assets/pyrite/blockstates/mossy_diorite_brick_wall.json new file mode 100644 index 000000000..73a7eb7fd --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/mossy_diorite_brick_wall.json @@ -0,0 +1 @@ +{"multipart":[{"apply":{"model":"pyrite:block/mossy_diorite_brick_wall_post"},"when":{"up":"true"}},{"apply":{"model":"pyrite:block/mossy_diorite_brick_wall_side","uvlock":true},"when":{"north":"low"}},{"apply":{"model":"pyrite:block/mossy_diorite_brick_wall_side","uvlock":true,"y":90},"when":{"east":"low"}},{"apply":{"model":"pyrite:block/mossy_diorite_brick_wall_side","uvlock":true,"y":180},"when":{"south":"low"}},{"apply":{"model":"pyrite:block/mossy_diorite_brick_wall_side","uvlock":true,"y":270},"when":{"west":"low"}},{"apply":{"model":"pyrite:block/mossy_diorite_brick_wall_side_tall","uvlock":true},"when":{"north":"tall"}},{"apply":{"model":"pyrite:block/mossy_diorite_brick_wall_side_tall","uvlock":true,"y":90},"when":{"east":"tall"}},{"apply":{"model":"pyrite:block/mossy_diorite_brick_wall_side_tall","uvlock":true,"y":180},"when":{"south":"tall"}},{"apply":{"model":"pyrite:block/mossy_diorite_brick_wall_side_tall","uvlock":true,"y":270},"when":{"west":"tall"}}]} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/mossy_diorite_brick_wall_gate.json b/common/src/main/resources/assets/pyrite/blockstates/mossy_diorite_brick_wall_gate.json new file mode 100644 index 000000000..bc79fdb93 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/mossy_diorite_brick_wall_gate.json @@ -0,0 +1 @@ +{"variants":{"facing=east,in_wall=false,open=false":{"model":"pyrite:block/mossy_diorite_brick_wall_gate","uvlock":true,"y":270},"facing=east,in_wall=false,open=true":{"model":"pyrite:block/mossy_diorite_brick_wall_gate_open","uvlock":true,"y":270},"facing=east,in_wall=true,open=false":{"model":"pyrite:block/mossy_diorite_brick_wall_gate_wall","uvlock":true,"y":270},"facing=east,in_wall=true,open=true":{"model":"pyrite:block/mossy_diorite_brick_wall_gate_wall_open","uvlock":true,"y":270},"facing=north,in_wall=false,open=false":{"model":"pyrite:block/mossy_diorite_brick_wall_gate","uvlock":true,"y":180},"facing=north,in_wall=false,open=true":{"model":"pyrite:block/mossy_diorite_brick_wall_gate_open","uvlock":true,"y":180},"facing=north,in_wall=true,open=false":{"model":"pyrite:block/mossy_diorite_brick_wall_gate_wall","uvlock":true,"y":180},"facing=north,in_wall=true,open=true":{"model":"pyrite:block/mossy_diorite_brick_wall_gate_wall_open","uvlock":true,"y":180},"facing=south,in_wall=false,open=false":{"model":"pyrite:block/mossy_diorite_brick_wall_gate","uvlock":true},"facing=south,in_wall=false,open=true":{"model":"pyrite:block/mossy_diorite_brick_wall_gate_open","uvlock":true},"facing=south,in_wall=true,open=false":{"model":"pyrite:block/mossy_diorite_brick_wall_gate_wall","uvlock":true},"facing=south,in_wall=true,open=true":{"model":"pyrite:block/mossy_diorite_brick_wall_gate_wall_open","uvlock":true},"facing=west,in_wall=false,open=false":{"model":"pyrite:block/mossy_diorite_brick_wall_gate","uvlock":true,"y":90},"facing=west,in_wall=false,open=true":{"model":"pyrite:block/mossy_diorite_brick_wall_gate_open","uvlock":true,"y":90},"facing=west,in_wall=true,open=false":{"model":"pyrite:block/mossy_diorite_brick_wall_gate_wall","uvlock":true,"y":90},"facing=west,in_wall=true,open=true":{"model":"pyrite:block/mossy_diorite_brick_wall_gate_wall_open","uvlock":true,"y":90}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/mossy_diorite_bricks.json b/common/src/main/resources/assets/pyrite/blockstates/mossy_diorite_bricks.json new file mode 100644 index 000000000..fca635c11 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/mossy_diorite_bricks.json @@ -0,0 +1 @@ +{"variants":{"":{"model":"pyrite:block/mossy_diorite_bricks"}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/mossy_granite_brick_slab.json b/common/src/main/resources/assets/pyrite/blockstates/mossy_granite_brick_slab.json new file mode 100644 index 000000000..3aa6b226f --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/mossy_granite_brick_slab.json @@ -0,0 +1 @@ +{"variants":{"type=bottom":{"model":"pyrite:block/mossy_granite_brick_slab"},"type=double":{"model":"pyrite:block/mossy_granite_bricks"},"type=top":{"model":"pyrite:block/mossy_granite_brick_slab_top"}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/mossy_granite_brick_stairs.json b/common/src/main/resources/assets/pyrite/blockstates/mossy_granite_brick_stairs.json new file mode 100644 index 000000000..541225e80 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/mossy_granite_brick_stairs.json @@ -0,0 +1 @@ +{"variants":{"facing=east,half=bottom,shape=inner_left":{"model":"pyrite:block/mossy_granite_brick_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"pyrite:block/mossy_granite_brick_stairs_inner"},"facing=east,half=bottom,shape=outer_left":{"model":"pyrite:block/mossy_granite_brick_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"pyrite:block/mossy_granite_brick_stairs_outer"},"facing=east,half=bottom,shape=straight":{"model":"pyrite:block/mossy_granite_brick_stairs"},"facing=east,half=top,shape=inner_left":{"model":"pyrite:block/mossy_granite_brick_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"pyrite:block/mossy_granite_brick_stairs_inner","x":180,"y":90,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"pyrite:block/mossy_granite_brick_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"pyrite:block/mossy_granite_brick_stairs_outer","x":180,"y":90,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"pyrite:block/mossy_granite_brick_stairs","x":180,"uvlock":true},"facing=north,half=bottom,shape=inner_left":{"model":"pyrite:block/mossy_granite_brick_stairs_inner","y":180,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"pyrite:block/mossy_granite_brick_stairs_inner","y":270,"uvlock":true},"facing=north,half=bottom,shape=outer_left":{"model":"pyrite:block/mossy_granite_brick_stairs_outer","y":180,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"pyrite:block/mossy_granite_brick_stairs_outer","y":270,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"pyrite:block/mossy_granite_brick_stairs","y":270,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"pyrite:block/mossy_granite_brick_stairs_inner","x":180,"y":270,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"pyrite:block/mossy_granite_brick_stairs_inner","x":180,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"pyrite:block/mossy_granite_brick_stairs_outer","x":180,"y":270,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"pyrite:block/mossy_granite_brick_stairs_outer","x":180,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"pyrite:block/mossy_granite_brick_stairs","x":180,"y":270,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"pyrite:block/mossy_granite_brick_stairs_inner"},"facing=south,half=bottom,shape=inner_right":{"model":"pyrite:block/mossy_granite_brick_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"pyrite:block/mossy_granite_brick_stairs_outer"},"facing=south,half=bottom,shape=outer_right":{"model":"pyrite:block/mossy_granite_brick_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"pyrite:block/mossy_granite_brick_stairs","y":90,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"pyrite:block/mossy_granite_brick_stairs_inner","x":180,"y":90,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"pyrite:block/mossy_granite_brick_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"pyrite:block/mossy_granite_brick_stairs_outer","x":180,"y":90,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"pyrite:block/mossy_granite_brick_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"pyrite:block/mossy_granite_brick_stairs","x":180,"y":90,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"pyrite:block/mossy_granite_brick_stairs_inner","y":90,"uvlock":true},"facing=west,half=bottom,shape=inner_right":{"model":"pyrite:block/mossy_granite_brick_stairs_inner","y":180,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"pyrite:block/mossy_granite_brick_stairs_outer","y":90,"uvlock":true},"facing=west,half=bottom,shape=outer_right":{"model":"pyrite:block/mossy_granite_brick_stairs_outer","y":180,"uvlock":true},"facing=west,half=bottom,shape=straight":{"model":"pyrite:block/mossy_granite_brick_stairs","y":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"pyrite:block/mossy_granite_brick_stairs_inner","x":180,"y":180,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"pyrite:block/mossy_granite_brick_stairs_inner","x":180,"y":270,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"pyrite:block/mossy_granite_brick_stairs_outer","x":180,"y":180,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"pyrite:block/mossy_granite_brick_stairs_outer","x":180,"y":270,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"pyrite:block/mossy_granite_brick_stairs","x":180,"y":180,"uvlock":true}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/mossy_granite_brick_wall.json b/common/src/main/resources/assets/pyrite/blockstates/mossy_granite_brick_wall.json new file mode 100644 index 000000000..baea0cb6f --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/mossy_granite_brick_wall.json @@ -0,0 +1 @@ +{"multipart":[{"apply":{"model":"pyrite:block/mossy_granite_brick_wall_post"},"when":{"up":"true"}},{"apply":{"model":"pyrite:block/mossy_granite_brick_wall_side","uvlock":true},"when":{"north":"low"}},{"apply":{"model":"pyrite:block/mossy_granite_brick_wall_side","uvlock":true,"y":90},"when":{"east":"low"}},{"apply":{"model":"pyrite:block/mossy_granite_brick_wall_side","uvlock":true,"y":180},"when":{"south":"low"}},{"apply":{"model":"pyrite:block/mossy_granite_brick_wall_side","uvlock":true,"y":270},"when":{"west":"low"}},{"apply":{"model":"pyrite:block/mossy_granite_brick_wall_side_tall","uvlock":true},"when":{"north":"tall"}},{"apply":{"model":"pyrite:block/mossy_granite_brick_wall_side_tall","uvlock":true,"y":90},"when":{"east":"tall"}},{"apply":{"model":"pyrite:block/mossy_granite_brick_wall_side_tall","uvlock":true,"y":180},"when":{"south":"tall"}},{"apply":{"model":"pyrite:block/mossy_granite_brick_wall_side_tall","uvlock":true,"y":270},"when":{"west":"tall"}}]} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/mossy_granite_brick_wall_gate.json b/common/src/main/resources/assets/pyrite/blockstates/mossy_granite_brick_wall_gate.json new file mode 100644 index 000000000..7dd40dbe2 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/mossy_granite_brick_wall_gate.json @@ -0,0 +1 @@ +{"variants":{"facing=east,in_wall=false,open=false":{"model":"pyrite:block/mossy_granite_brick_wall_gate","uvlock":true,"y":270},"facing=east,in_wall=false,open=true":{"model":"pyrite:block/mossy_granite_brick_wall_gate_open","uvlock":true,"y":270},"facing=east,in_wall=true,open=false":{"model":"pyrite:block/mossy_granite_brick_wall_gate_wall","uvlock":true,"y":270},"facing=east,in_wall=true,open=true":{"model":"pyrite:block/mossy_granite_brick_wall_gate_wall_open","uvlock":true,"y":270},"facing=north,in_wall=false,open=false":{"model":"pyrite:block/mossy_granite_brick_wall_gate","uvlock":true,"y":180},"facing=north,in_wall=false,open=true":{"model":"pyrite:block/mossy_granite_brick_wall_gate_open","uvlock":true,"y":180},"facing=north,in_wall=true,open=false":{"model":"pyrite:block/mossy_granite_brick_wall_gate_wall","uvlock":true,"y":180},"facing=north,in_wall=true,open=true":{"model":"pyrite:block/mossy_granite_brick_wall_gate_wall_open","uvlock":true,"y":180},"facing=south,in_wall=false,open=false":{"model":"pyrite:block/mossy_granite_brick_wall_gate","uvlock":true},"facing=south,in_wall=false,open=true":{"model":"pyrite:block/mossy_granite_brick_wall_gate_open","uvlock":true},"facing=south,in_wall=true,open=false":{"model":"pyrite:block/mossy_granite_brick_wall_gate_wall","uvlock":true},"facing=south,in_wall=true,open=true":{"model":"pyrite:block/mossy_granite_brick_wall_gate_wall_open","uvlock":true},"facing=west,in_wall=false,open=false":{"model":"pyrite:block/mossy_granite_brick_wall_gate","uvlock":true,"y":90},"facing=west,in_wall=false,open=true":{"model":"pyrite:block/mossy_granite_brick_wall_gate_open","uvlock":true,"y":90},"facing=west,in_wall=true,open=false":{"model":"pyrite:block/mossy_granite_brick_wall_gate_wall","uvlock":true,"y":90},"facing=west,in_wall=true,open=true":{"model":"pyrite:block/mossy_granite_brick_wall_gate_wall_open","uvlock":true,"y":90}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/mossy_granite_bricks.json b/common/src/main/resources/assets/pyrite/blockstates/mossy_granite_bricks.json new file mode 100644 index 000000000..66d589b86 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/mossy_granite_bricks.json @@ -0,0 +1 @@ +{"variants":{"":{"model":"pyrite:block/mossy_granite_bricks"}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/mossy_smooth_stone_brick_slab.json b/common/src/main/resources/assets/pyrite/blockstates/mossy_smooth_stone_brick_slab.json new file mode 100644 index 000000000..c16fd6ee9 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/mossy_smooth_stone_brick_slab.json @@ -0,0 +1 @@ +{"variants":{"type=bottom":{"model":"pyrite:block/mossy_smooth_stone_brick_slab"},"type=double":{"model":"pyrite:block/mossy_smooth_stone_bricks"},"type=top":{"model":"pyrite:block/mossy_smooth_stone_brick_slab_top"}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/mossy_smooth_stone_brick_stairs.json b/common/src/main/resources/assets/pyrite/blockstates/mossy_smooth_stone_brick_stairs.json new file mode 100644 index 000000000..f09c7bc28 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/mossy_smooth_stone_brick_stairs.json @@ -0,0 +1 @@ +{"variants":{"facing=east,half=bottom,shape=inner_left":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs_inner","y":270,"uvlock":true},"facing=east,half=bottom,shape=inner_right":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs_inner"},"facing=east,half=bottom,shape=outer_left":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs_outer","y":270,"uvlock":true},"facing=east,half=bottom,shape=outer_right":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs_outer"},"facing=east,half=bottom,shape=straight":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs"},"facing=east,half=top,shape=inner_left":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs_inner","x":180,"uvlock":true},"facing=east,half=top,shape=inner_right":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs_inner","x":180,"y":90,"uvlock":true},"facing=east,half=top,shape=outer_left":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs_outer","x":180,"uvlock":true},"facing=east,half=top,shape=outer_right":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs_outer","x":180,"y":90,"uvlock":true},"facing=east,half=top,shape=straight":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs","x":180,"uvlock":true},"facing=north,half=bottom,shape=inner_left":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs_inner","y":180,"uvlock":true},"facing=north,half=bottom,shape=inner_right":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs_inner","y":270,"uvlock":true},"facing=north,half=bottom,shape=outer_left":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs_outer","y":180,"uvlock":true},"facing=north,half=bottom,shape=outer_right":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs_outer","y":270,"uvlock":true},"facing=north,half=bottom,shape=straight":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs","y":270,"uvlock":true},"facing=north,half=top,shape=inner_left":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs_inner","x":180,"y":270,"uvlock":true},"facing=north,half=top,shape=inner_right":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs_inner","x":180,"uvlock":true},"facing=north,half=top,shape=outer_left":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs_outer","x":180,"y":270,"uvlock":true},"facing=north,half=top,shape=outer_right":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs_outer","x":180,"uvlock":true},"facing=north,half=top,shape=straight":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs","x":180,"y":270,"uvlock":true},"facing=south,half=bottom,shape=inner_left":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs_inner"},"facing=south,half=bottom,shape=inner_right":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs_inner","y":90,"uvlock":true},"facing=south,half=bottom,shape=outer_left":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs_outer"},"facing=south,half=bottom,shape=outer_right":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs_outer","y":90,"uvlock":true},"facing=south,half=bottom,shape=straight":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs","y":90,"uvlock":true},"facing=south,half=top,shape=inner_left":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs_inner","x":180,"y":90,"uvlock":true},"facing=south,half=top,shape=inner_right":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs_inner","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=outer_left":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs_outer","x":180,"y":90,"uvlock":true},"facing=south,half=top,shape=outer_right":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs_outer","x":180,"y":180,"uvlock":true},"facing=south,half=top,shape=straight":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs","x":180,"y":90,"uvlock":true},"facing=west,half=bottom,shape=inner_left":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs_inner","y":90,"uvlock":true},"facing=west,half=bottom,shape=inner_right":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs_inner","y":180,"uvlock":true},"facing=west,half=bottom,shape=outer_left":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs_outer","y":90,"uvlock":true},"facing=west,half=bottom,shape=outer_right":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs_outer","y":180,"uvlock":true},"facing=west,half=bottom,shape=straight":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs","y":180,"uvlock":true},"facing=west,half=top,shape=inner_left":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs_inner","x":180,"y":180,"uvlock":true},"facing=west,half=top,shape=inner_right":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs_inner","x":180,"y":270,"uvlock":true},"facing=west,half=top,shape=outer_left":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs_outer","x":180,"y":180,"uvlock":true},"facing=west,half=top,shape=outer_right":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs_outer","x":180,"y":270,"uvlock":true},"facing=west,half=top,shape=straight":{"model":"pyrite:block/mossy_smooth_stone_brick_stairs","x":180,"y":180,"uvlock":true}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/mossy_smooth_stone_brick_wall.json b/common/src/main/resources/assets/pyrite/blockstates/mossy_smooth_stone_brick_wall.json new file mode 100644 index 000000000..c3e715d70 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/mossy_smooth_stone_brick_wall.json @@ -0,0 +1 @@ +{"multipart":[{"apply":{"model":"pyrite:block/mossy_smooth_stone_brick_wall_post"},"when":{"up":"true"}},{"apply":{"model":"pyrite:block/mossy_smooth_stone_brick_wall_side","uvlock":true},"when":{"north":"low"}},{"apply":{"model":"pyrite:block/mossy_smooth_stone_brick_wall_side","uvlock":true,"y":90},"when":{"east":"low"}},{"apply":{"model":"pyrite:block/mossy_smooth_stone_brick_wall_side","uvlock":true,"y":180},"when":{"south":"low"}},{"apply":{"model":"pyrite:block/mossy_smooth_stone_brick_wall_side","uvlock":true,"y":270},"when":{"west":"low"}},{"apply":{"model":"pyrite:block/mossy_smooth_stone_brick_wall_side_tall","uvlock":true},"when":{"north":"tall"}},{"apply":{"model":"pyrite:block/mossy_smooth_stone_brick_wall_side_tall","uvlock":true,"y":90},"when":{"east":"tall"}},{"apply":{"model":"pyrite:block/mossy_smooth_stone_brick_wall_side_tall","uvlock":true,"y":180},"when":{"south":"tall"}},{"apply":{"model":"pyrite:block/mossy_smooth_stone_brick_wall_side_tall","uvlock":true,"y":270},"when":{"west":"tall"}}]} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/mossy_smooth_stone_brick_wall_gate.json b/common/src/main/resources/assets/pyrite/blockstates/mossy_smooth_stone_brick_wall_gate.json new file mode 100644 index 000000000..6ad3a8d35 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/mossy_smooth_stone_brick_wall_gate.json @@ -0,0 +1 @@ +{"variants":{"facing=east,in_wall=false,open=false":{"model":"pyrite:block/mossy_smooth_stone_brick_wall_gate","uvlock":true,"y":270},"facing=east,in_wall=false,open=true":{"model":"pyrite:block/mossy_smooth_stone_brick_wall_gate_open","uvlock":true,"y":270},"facing=east,in_wall=true,open=false":{"model":"pyrite:block/mossy_smooth_stone_brick_wall_gate_wall","uvlock":true,"y":270},"facing=east,in_wall=true,open=true":{"model":"pyrite:block/mossy_smooth_stone_brick_wall_gate_wall_open","uvlock":true,"y":270},"facing=north,in_wall=false,open=false":{"model":"pyrite:block/mossy_smooth_stone_brick_wall_gate","uvlock":true,"y":180},"facing=north,in_wall=false,open=true":{"model":"pyrite:block/mossy_smooth_stone_brick_wall_gate_open","uvlock":true,"y":180},"facing=north,in_wall=true,open=false":{"model":"pyrite:block/mossy_smooth_stone_brick_wall_gate_wall","uvlock":true,"y":180},"facing=north,in_wall=true,open=true":{"model":"pyrite:block/mossy_smooth_stone_brick_wall_gate_wall_open","uvlock":true,"y":180},"facing=south,in_wall=false,open=false":{"model":"pyrite:block/mossy_smooth_stone_brick_wall_gate","uvlock":true},"facing=south,in_wall=false,open=true":{"model":"pyrite:block/mossy_smooth_stone_brick_wall_gate_open","uvlock":true},"facing=south,in_wall=true,open=false":{"model":"pyrite:block/mossy_smooth_stone_brick_wall_gate_wall","uvlock":true},"facing=south,in_wall=true,open=true":{"model":"pyrite:block/mossy_smooth_stone_brick_wall_gate_wall_open","uvlock":true},"facing=west,in_wall=false,open=false":{"model":"pyrite:block/mossy_smooth_stone_brick_wall_gate","uvlock":true,"y":90},"facing=west,in_wall=false,open=true":{"model":"pyrite:block/mossy_smooth_stone_brick_wall_gate_open","uvlock":true,"y":90},"facing=west,in_wall=true,open=false":{"model":"pyrite:block/mossy_smooth_stone_brick_wall_gate_wall","uvlock":true,"y":90},"facing=west,in_wall=true,open=true":{"model":"pyrite:block/mossy_smooth_stone_brick_wall_gate_wall_open","uvlock":true,"y":90}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/mossy_smooth_stone_bricks.json b/common/src/main/resources/assets/pyrite/blockstates/mossy_smooth_stone_bricks.json new file mode 100644 index 000000000..d4348907a --- /dev/null +++ b/common/src/main/resources/assets/pyrite/blockstates/mossy_smooth_stone_bricks.json @@ -0,0 +1 @@ +{"variants":{"":{"model":"pyrite:block/mossy_smooth_stone_bricks"}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/polished_tuff_wall_gate.json b/common/src/main/resources/assets/pyrite/blockstates/polished_tuff_wall_gate.json deleted file mode 100644 index 83b161d01..000000000 --- a/common/src/main/resources/assets/pyrite/blockstates/polished_tuff_wall_gate.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":{"facing=east,in_wall=false,open=false":{"model":"pyrite:block/polished_tuff_wall_gate","uvlock":true,"y":270},"facing=east,in_wall=false,open=true":{"model":"pyrite:block/polished_tuff_wall_gate_open","uvlock":true,"y":270},"facing=east,in_wall=true,open=false":{"model":"pyrite:block/polished_tuff_wall_gate_wall","uvlock":true,"y":270},"facing=east,in_wall=true,open=true":{"model":"pyrite:block/polished_tuff_wall_gate_wall_open","uvlock":true,"y":270},"facing=north,in_wall=false,open=false":{"model":"pyrite:block/polished_tuff_wall_gate","uvlock":true,"y":180},"facing=north,in_wall=false,open=true":{"model":"pyrite:block/polished_tuff_wall_gate_open","uvlock":true,"y":180},"facing=north,in_wall=true,open=false":{"model":"pyrite:block/polished_tuff_wall_gate_wall","uvlock":true,"y":180},"facing=north,in_wall=true,open=true":{"model":"pyrite:block/polished_tuff_wall_gate_wall_open","uvlock":true,"y":180},"facing=south,in_wall=false,open=false":{"model":"pyrite:block/polished_tuff_wall_gate","uvlock":true},"facing=south,in_wall=false,open=true":{"model":"pyrite:block/polished_tuff_wall_gate_open","uvlock":true},"facing=south,in_wall=true,open=false":{"model":"pyrite:block/polished_tuff_wall_gate_wall","uvlock":true},"facing=south,in_wall=true,open=true":{"model":"pyrite:block/polished_tuff_wall_gate_wall_open","uvlock":true},"facing=west,in_wall=false,open=false":{"model":"pyrite:block/polished_tuff_wall_gate","uvlock":true,"y":90},"facing=west,in_wall=false,open=true":{"model":"pyrite:block/polished_tuff_wall_gate_open","uvlock":true,"y":90},"facing=west,in_wall=true,open=false":{"model":"pyrite:block/polished_tuff_wall_gate_wall","uvlock":true,"y":90},"facing=west,in_wall=true,open=true":{"model":"pyrite:block/polished_tuff_wall_gate_wall_open","uvlock":true,"y":90}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/tuff_brick_wall_gate.json b/common/src/main/resources/assets/pyrite/blockstates/tuff_brick_wall_gate.json deleted file mode 100644 index d52c7285d..000000000 --- a/common/src/main/resources/assets/pyrite/blockstates/tuff_brick_wall_gate.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":{"facing=east,in_wall=false,open=false":{"model":"pyrite:block/tuff_brick_wall_gate","uvlock":true,"y":270},"facing=east,in_wall=false,open=true":{"model":"pyrite:block/tuff_brick_wall_gate_open","uvlock":true,"y":270},"facing=east,in_wall=true,open=false":{"model":"pyrite:block/tuff_brick_wall_gate_wall","uvlock":true,"y":270},"facing=east,in_wall=true,open=true":{"model":"pyrite:block/tuff_brick_wall_gate_wall_open","uvlock":true,"y":270},"facing=north,in_wall=false,open=false":{"model":"pyrite:block/tuff_brick_wall_gate","uvlock":true,"y":180},"facing=north,in_wall=false,open=true":{"model":"pyrite:block/tuff_brick_wall_gate_open","uvlock":true,"y":180},"facing=north,in_wall=true,open=false":{"model":"pyrite:block/tuff_brick_wall_gate_wall","uvlock":true,"y":180},"facing=north,in_wall=true,open=true":{"model":"pyrite:block/tuff_brick_wall_gate_wall_open","uvlock":true,"y":180},"facing=south,in_wall=false,open=false":{"model":"pyrite:block/tuff_brick_wall_gate","uvlock":true},"facing=south,in_wall=false,open=true":{"model":"pyrite:block/tuff_brick_wall_gate_open","uvlock":true},"facing=south,in_wall=true,open=false":{"model":"pyrite:block/tuff_brick_wall_gate_wall","uvlock":true},"facing=south,in_wall=true,open=true":{"model":"pyrite:block/tuff_brick_wall_gate_wall_open","uvlock":true},"facing=west,in_wall=false,open=false":{"model":"pyrite:block/tuff_brick_wall_gate","uvlock":true,"y":90},"facing=west,in_wall=false,open=true":{"model":"pyrite:block/tuff_brick_wall_gate_open","uvlock":true,"y":90},"facing=west,in_wall=true,open=false":{"model":"pyrite:block/tuff_brick_wall_gate_wall","uvlock":true,"y":90},"facing=west,in_wall=true,open=true":{"model":"pyrite:block/tuff_brick_wall_gate_wall_open","uvlock":true,"y":90}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/blockstates/tuff_wall_gate.json b/common/src/main/resources/assets/pyrite/blockstates/tuff_wall_gate.json deleted file mode 100644 index 3f10fe0ab..000000000 --- a/common/src/main/resources/assets/pyrite/blockstates/tuff_wall_gate.json +++ /dev/null @@ -1 +0,0 @@ -{"variants":{"facing=east,in_wall=false,open=false":{"model":"pyrite:block/tuff_wall_gate","uvlock":true,"y":270},"facing=east,in_wall=false,open=true":{"model":"pyrite:block/tuff_wall_gate_open","uvlock":true,"y":270},"facing=east,in_wall=true,open=false":{"model":"pyrite:block/tuff_wall_gate_wall","uvlock":true,"y":270},"facing=east,in_wall=true,open=true":{"model":"pyrite:block/tuff_wall_gate_wall_open","uvlock":true,"y":270},"facing=north,in_wall=false,open=false":{"model":"pyrite:block/tuff_wall_gate","uvlock":true,"y":180},"facing=north,in_wall=false,open=true":{"model":"pyrite:block/tuff_wall_gate_open","uvlock":true,"y":180},"facing=north,in_wall=true,open=false":{"model":"pyrite:block/tuff_wall_gate_wall","uvlock":true,"y":180},"facing=north,in_wall=true,open=true":{"model":"pyrite:block/tuff_wall_gate_wall_open","uvlock":true,"y":180},"facing=south,in_wall=false,open=false":{"model":"pyrite:block/tuff_wall_gate","uvlock":true},"facing=south,in_wall=false,open=true":{"model":"pyrite:block/tuff_wall_gate_open","uvlock":true},"facing=south,in_wall=true,open=false":{"model":"pyrite:block/tuff_wall_gate_wall","uvlock":true},"facing=south,in_wall=true,open=true":{"model":"pyrite:block/tuff_wall_gate_wall_open","uvlock":true},"facing=west,in_wall=false,open=false":{"model":"pyrite:block/tuff_wall_gate","uvlock":true,"y":90},"facing=west,in_wall=false,open=true":{"model":"pyrite:block/tuff_wall_gate_open","uvlock":true,"y":90},"facing=west,in_wall=true,open=false":{"model":"pyrite:block/tuff_wall_gate_wall","uvlock":true,"y":90},"facing=west,in_wall=true,open=true":{"model":"pyrite:block/tuff_wall_gate_wall_open","uvlock":true,"y":90}}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/lang/en_ud.json b/common/src/main/resources/assets/pyrite/lang/en_ud.json index 2d168334f..ea8bd54af 100644 --- a/common/src/main/resources/assets/pyrite/lang/en_ud.json +++ b/common/src/main/resources/assets/pyrite/lang/en_ud.json @@ -1 +1,1467 @@ -{"itemGroup.pyrite.pyrite_group":"sʞɔolB ᵷuidןinᗺ ǝʇᴉɹʎԀ","itemGroup.pyrite.wood_group":"sʞɔoןᗺ nedooM ǝʇᴉɹʎԀ","itemGroup.pyrite.resource_group":"sʞcoןᗺ eɔrnoseᴚ ǝʇᴉɹʎԀ","itemGroup.pyrite.brick_group":"skcoןB ʞɔirᗺ ǝʇᴉɹʎԀ","itemGroup.pyrite.redstone_group":"sʞɔoןᗺ enotsdeᴚ ǝʇᴉɹʎԀ","lore.pyrite.amethyst_bricks":"˙sʞcirᗺ otni devraɔ neeb sah taht tsʎɥtǝɯA ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.amethyst_door":"˙rooᗡ a otni devraɔ neeb sah taht tsʎɥtǝɯA ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.amethyst_pillar":"˙ralןiԀ a otni devraɔ neeb sah taht tsʎɥtǝɯA ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.amethyst_trapdoor":"˙roodpar⟘ a otni devraɔ neeb sah taht tsʎɥtǝɯA ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.black_bricks":"˙kcolb ᵷnidliub a sa desu eb nac dna ,kcalB deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘","lore.pyrite.black_framed_glass":"˙wodniʍ luɟruoloc a sa oʇ desu eb nac dna ,kcalᗺ deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.black_framed_glass_pane":"˙wodniʍ luɟruoloc a sa desu eb nac dna ,ʞɔalᗺ deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.black_lamp":"˙dlroʍ ɹuoy pu thᵷil oʇ desu eb nac dna ,kcalᗺ deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘","lore.pyrite.black_terracotta_bricks":"˙kcolb ᵷnidliub a sa desu eb nac dna ,kcalB deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘","lore.pyrite.black_torch":"˙dlroʍ ruoy pu thᵷil oʇ desu eb nac dna ,kcalᗺ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.black_torch_lever":"˙thᵷis nialp ni enotsdeᴚ edih oʇ desu eb nac dna ,kcalᗺ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.blue_bricks":"˙kcolb ᵷnidliub a sa desu eb nac dna ,eulB deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘","lore.pyrite.blue_framed_glass":"˙wodniʍ luɟruoloc a sa oʇ desu eb nac dna ,eulᗺ deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.blue_framed_glass_pane":"˙wodniʍ luɟruoloc a sa desu eb naɔ dna ,eulᗺ deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.blue_lamp":"˙dlroʍ ɹuoy pu thᵷil oʇ desu eb nac dna ,eulᗺ deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘","lore.pyrite.blue_nether_bricks":"˙skcirᗺ reɥteN ruoʎ ot eulb ɟo pop a ᵷnidda ʞcoןb eʌᴉʇɐɹoɔǝd Ɐ","lore.pyrite.blue_rose":"˙tsad eht fo kuihʇ uoʎ seʞɐɯ ɹeʍolɟ ǝnןb sᴉɥ⟘","lore.pyrite.blue_terracotta_bricks":"˙kcolb ᵷnidliub a sa desu eb nac dna ,eulB deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘","lore.pyrite.blue_torch":"˙dlroʍ ruoy pu thᵷil oʇ desu eb nac dna ,eulᗺ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.blue_torch_lever":"˙thᵷis nialp ni enotsdeᴚ edih oʇ desu eb nac dna ,eulᗺ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.brown_bricks":"˙kcolb ᵷnidliub a sa desu eb nac dna ,nʍorB deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘","lore.pyrite.brown_framed_glass":"˙wodniw luɟruoloc a sa oʇ desu eb nac dna ,nʍorᗺ deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.brown_framed_glass_pane":"˙wodniw luɟruoloc a sa desu eb naɔ dna ,nʍorᗺ deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.brown_lamp":"˙dlrow ruoy pu thᵷil oʇ desu eb nac dna ,nʍoɹᗺ deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘","lore.pyrite.brown_terracotta_bricks":"˙kcolb ᵷnidliub a sa desu eb nac dna ,nʍorB deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘","lore.pyrite.brown_torch":"˙dlrow ruoy pu thᵷil oʇ desu eb nac dna ,nʍorᗺ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.brown_torch_lever":"˙thᵷis nialp ni enotsdeᴚ edih oʇ desu eb nac dna ,nʍorᗺ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.buttercup":"˙tsad eht fo kuihʇ noy seʞɐɯ ɹewolɟ ʍolןǝʎ sᴉɥ⟘","lore.pyrite.charred_nether_bricks":"˙skcirᗺ rehteN ruoy ot tnecca ʎʍodaɥs a ᵷnidda ʞcoןb eʌᴉʇɐɹoɔǝd Ɐ","lore.pyrite.chiseled_amethyst_block":"˙deןesihƆ neeb sah taht tsʎɥtǝɯA ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.chiseled_diamond_block":"˙deןesihƆ neǝb sah taɥt dnoɯaiᗡ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.chiseled_emerald_block":"˙delesihƆ neeb sah taɥt dןarǝɯƎ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.chiseled_gold_block":"˙delesihƆ neǝb sah taɥt dןo⅁ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.chiseled_iron_block":"˙deןesihƆ neǝb sah taɥt norI ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.chiseled_lapis_block":"˙peןesihƆ neǝb sah taɥt sidaꞀ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.chiseled_netherite_block":"˙deןesihƆ neeb sah taht etireɥtǝN ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.chiseled_quartz_block":"˙deןesihƆ neǝb sah taɥt ztrauꝹ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.chiseled_redstone_block":"˙deןesihƆ neeb sah taɥt enotsdǝᴚ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.cobblestone_bricks":"˙sdliub eɯag etal dna ʎlrae htob roɟ ʇɐǝrᵷ si kcoןb ʞɔiɹb sᴉɥ⟘","lore.pyrite.copper_pillar":"˙ralןiԀ a otni pevraɔ neeb sah taɥt rǝpdoƆ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.cut_amethyst":"˙tuƆ neeb sah taht tsʎɥtǝɯA ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.cut_diamond":"˙tuƆ neǝb sah taɥt dnoɯaiᗡ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.cut_emerald":"˙tuƆ neeb sah taɥt dןarǝɯƎ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.cut_gold":"˙tuƆ neǝb sah taɥt dןo⅁ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.cut_iron":"˙tuƆ neǝb sah taɥt norI ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.cut_lapis":"˙tuƆ neǝb sah taɥt sidaꞀ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.cut_netherite":"˙tuƆ neeb sah taht etireɥtǝN ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.cut_quartz":"˙tuƆ neǝb sah taɥt ztrauꝹ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.cut_redstone":"˙tuƆ neeb sah taɥt enotsdǝᴚ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.cyan_bricks":"˙kcolb ᵷnidliub a sa desu eb nac dna ,nayƆ deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘","lore.pyrite.cyan_framed_glass":"˙wodniʍ luɟruoloc a sa oʇ desu eb nac dna ,nayƆ deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.cyan_framed_glass_pane":"˙wodniʍ luɟruoloc a sa desu eb naɔ dna ,nayƆ deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.cyan_lamp":"˙dlroʍ ɹuoy pu thᵷil oʇ desu eb nac dna ,nayƆ deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘","lore.pyrite.cyan_terracotta_bricks":"˙kcolb ᵷnidliub a sa desu eb nac dna ,nayƆ deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘","lore.pyrite.cyan_torch":"˙dlroʍ ruoy pu thᵷil oʇ desu eb nac dna ,nayƆ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.cyan_torch_lever":"˙thᵷis nialp ni enotsdeᴚ edih oʇ desu eb nac dna ,nayƆ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.diamond_bricks":"˙sʞcirᗺ otni devraɔ neǝb sah taɥt dnoɯaiᗡ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.diamond_door":"˙rooD a otni devraɔ neǝb sah taɥt dnoɯaiᗡ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.diamond_pillar":"˙ralןiԀ a otni devraɔ neǝb sah taɥt dnoɯaiᗡ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.diamond_trapdoor":"˙roodpar⟘ a otni devraɔ neǝb sah taɥt dnoɯaiᗡ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.dragon_bricks":"˙kcolb gnidliub a sa desu eb nac dna ,htaerB s'noᵷarᗡ hʇiʍ deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘","lore.pyrite.dragon_dye":"˙wolg eltbus a ti htiʍ detfarc sʞɔoןb seʌᴉg taht ,ɥʇaerᗺ s'nogarᗡ morɟ edɐɯ eʎd neǝɹᵷ Ɐ","lore.pyrite.dragon_framed_glass":"˙wodniw luɟruoloc a sa ot desu eb nac dna ,htaerᗺ s'noᵷarᗡ hʇiʍ deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.dragon_framed_glass_pane":"˙wodniw luɟruoloc a sa desu eb naɔ dna ,htaerᗺ s'noᵷarᗡ hʇiʍ deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.dragon_lamp":"˙dlrow ruoy pu thgil ot desu eb nac dna ,htaerᗺ s'noᵷaɹᗡ hʇiʍ deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘","lore.pyrite.dragon_terracotta_bricks":"˙kcolb gnidliub a sa desu eb nac dna ,htaerB s'noᵷarᗡ htiʍ deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘","lore.pyrite.dragon_torch":"˙dlrow ruoy pu thgil ot desu eb nac dna ,htaerᗺ s'noᵷarᗡ hʇiʍ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.dragon_torch_lever":"˙thgis nialp ni enotsdeᴚ edih ot desu eb nac dna ,htaerᗺ s'noᵷarᗡ hʇiʍ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.emerald_bricks":"˙sʞcirᗺ otni devraɔ neeb sah taɥt dןarǝɯƎ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.emerald_door":"˙rooᗡ a otni devraɔ neeb sah taɥt dןarǝɯƎ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.emerald_pillar":"˙ralliԀ a otni devraɔ neeb sah taɥt dןarǝɯƎ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.emerald_trapdoor":"˙roodpar⟘ a otni devraɔ neeb sah taɥt dןarǝɯƎ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.exposed_copper_pillar":"˙ralןiԀ a otni devraɔ neeb sah taɥt reppoƆ pǝsodxƎ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.framed_glass":".ssal⅁ naht ɹehguot ʎlthᵷils s'ʇI ˙wodniʍ a sa desu ǝb nɐc ʞɔoןb sᴉɥ⟘","lore.pyrite.framed_glass_pane":".ssal⅁ naht ɹehguot ʎlthᵷils s'ʇI ˙wodniʍ a sa desu ǝb nɐc ʞɔoןb sᴉɥ⟘","lore.pyrite.glow_bricks":"˙kcolb ᵷnidliub a sa desu eb nac dna ,knI wol⅁ hʇiʍ deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘","lore.pyrite.glow_dye":"˙wolg eltbus a ti htiw detfarc skɔolb seʌᴉg taɥʇ ,ʞnI ʍoן⅁ morɟ edɐɯ eʎd neǝɹᵷ Ɐ","lore.pyrite.glow_framed_glass":"˙wodniw luɟruoloc a sa ot desu eb nac dna ,knI wolG hʇiʍ deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.glow_framed_glass_pane":"˙wodniw luɟruoloc a sa desu eb naɔ dna ,ʞnI wolG hʇiʍ deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.glow_lamp":"˙dlrow ɹuoy pu thᵷil ot desu eb nac dna ,knI wol⅁ hʇiʍ deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘","lore.pyrite.glow_terracotta_bricks":"˙kcolb ᵷnidliub a sa desu eb nac dna ,knI wol⅁ htiʍ deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘","lore.pyrite.glow_torch":"˙dlrow ruoy pu thᵷil ot desu eb nac dna ,knI wol⅁ hʇiʍ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.glow_torch_lever":"˙thᵷis nialp ni enotsdeᴚ edih ot desu eb nac dna ,knI wol⅁ hʇiʍ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.glowing_obsidian":"˙ecruos thgil a sa sevres tsuɾ ʍon tub ,esopɹup a dah ecno ǝʌɐh ʇhᵷiɯ ʞɔoןb sᴉɥ⟘","lore.pyrite.gold_bricks":"˙sʞcirᗺ otni devraɔ neǝb sah taɥt dןo⅁ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.gold_door":"˙rooᗡ a otni devraɔ neǝb sah taɥt dןo⅁ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.gold_pillar":"˙ralliԀ a otni devraɔ neǝb sah taɥt dןo⅁ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.gold_trapdoor":"˙roodpar⟘ a otni devraɔ neǝb sah taɥt dןo⅁ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.grass_turf":"˙edis hcae uo erntxet ssarG eht hʇiʍ ,kcolᗺ ssar⅁ ɐ selbɯesǝɹ ʞɔoןb sᴉɥ⟘","lore.pyrite.gray_bricks":"˙kcolb ᵷnidliub a sa desu eb nac dna ,yar⅁ deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘","lore.pyrite.gray_framed_glass":"˙wodniʍ luɟruoloc a sa oʇ desu eb nac dna ,yarG deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.gray_framed_glass_pane":"˙wodniʍ luɟruoloc a sa desu eb naɔ dna ,yarG deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.gray_lamp":"˙dlroʍ ruoy pu thᵷil oʇ desu eb nac dna ,yaɹ⅁ deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘","lore.pyrite.gray_terracotta_bricks":"˙kcolb ᵷnidliub a sa desu eb nac dna ,yar⅁ deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘","lore.pyrite.gray_torch":"˙dlroʍ ruoy pu thᵷil oʇ desu eb nac dna ,yar⅁ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.gray_torch_lever":"˙thᵷis nialp ni enotsdeᴚ edih oʇ desu eb nac dna ,yar⅁ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.green_bricks":"˙kcolb ᵷnidliub a sa desu eb nac dna ,neer⅁ deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘","lore.pyrite.green_framed_glass":"˙wodniʍ luɟruoloc a sa oʇ desu eb nac dna ,neerG deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.green_framed_glass_pane":"˙wodniʍ luɟruoloc a sa desu eb naɔ dna ,neerG deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.green_lamp":"˙dlroʍ ruoy pu thᵷil oʇ desu eb nac dna ,neeɹ⅁ deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘","lore.pyrite.green_terracotta_bricks":"˙kcolb ᵷnidliub a sa desu eb nac dna ,neer⅁ deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘","lore.pyrite.green_torch":"˙dlroʍ ruoy pu thᵷil oʇ desu eb nac dna ,neer⅁ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.green_torch_lever":"˙thᵷis nialp ni enotsdeᴚ edih oʇ desu eb nac dna ,neer⅁ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.honey_bricks":"˙kcolb ᵷnidliub a sa desu eb nac dna ,deruoloc yenoH deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘","lore.pyrite.honey_dye":"˙bmoɔyenoH morɟ edaɯ eʎd ǝᵷnɐɹo Ɐ","lore.pyrite.honey_framed_glass":"˙wodniʍ luɟruoloc a sa oʇ desu eb nac dna ,deruoloc yenoH deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.honey_framed_glass_pane":"˙wodniʍ luɟruoloc a sa desu eb nac dna ,deruoloɔ yenoH deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.honey_lamp":"˙dlroʍ ruoy pu thᵷil oʇ desu eb nac dna ,deɹuoloc yenoH deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘","lore.pyrite.honey_terracotta_bricks":"˙kcolb ᵷnidliub a sa desu eb nac dna ,deruoloc yenoH deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘","lore.pyrite.honey_torch":"˙dlroʍ ruoy pu thᵷil oʇ desu eb nac dna ,deruoloc yenoH deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.honey_torch_lever":"˙thᵷis nialp ni enotsdeᴚ edih oʇ desu eb nac dna ,deruoloc yenoH deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.iron_bricks":"˙sʞcirᗺ otni devraɔ neǝb sah taɥt norI ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.iron_door":"˙rooᗡ a otni devraɔ neǝb sah taɥt norI ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.iron_pillar":"˙ralןiԀ a otni devraɔ neǝb sah taɥt norI ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.iron_trapdoor":"˙roodpar⟘ a otni devraɔ neǝb sah taɥt norI ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.lapis_bricks":"˙sʞcirᗺ otni pevraɔ neǝb sah taɥt sidaꞀ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.lapis_door":"˙rooᗡ a otni pevraɔ neǝb sah taɥt sidaꞀ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.lapis_pillar":"˙ralןiԀ a otni pevraɔ neǝb sah taɥt sidaꞀ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.lapis_trapdoor":"˙roodpar⟘ a otni pevraɔ neǝb sah taɥt sidaꞀ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.light_blue_bricks":"˙kcolb gnidliub a sa desu eb nac dna ,eulB ʇhᵷiꞀ deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘","lore.pyrite.light_blue_framed_glass":"˙wodniʍ luɟruoloc a sa ot desu eb nac dna ,eulᗺ ʇhᵷiꞀ deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.light_blue_framed_glass_pane":"˙wodniʍ luɟruoloc a sa desu eb naɔ dna ,eulᗺ ʇhᵷiꞀ deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.light_blue_lamp":"˙dlroʍ ɹuoy pu thgil ot desu eb nac dna ,eulᗺ ʇhᵷiL deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘","lore.pyrite.light_blue_terracotta_bricks":"˙kcolb gnidliub a sa desu eb nac dna ,eulB thᵷiꞀ deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘","lore.pyrite.light_blue_torch":"˙dlroʍ ruoy pu thgil ot desu eb nac dna ,eulᗺ ʇhᵷiꞀ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.light_blue_torch_lever":"˙thgis nialp ni enotsdeᴚ edih ot desu eb nac dna ,eulᗺ ʇhᵷiꞀ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.light_gray_bricks":"˙kcolb gnidliub a sa desu eb nac dna ,yar⅁ ʇhᵷiꞀ deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘","lore.pyrite.light_gray_framed_glass":"˙wodniʍ luɟruoloc a sa ot desu eb nac dna ,yarG ʇhᵷiꞀ deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.light_gray_framed_glass_pane":"˙wodniʍ luɟruoloc a sa desu eb naɔ dna ,yarG ʇhᵷiꞀ deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.light_gray_lamp":"˙dlroʍ ruoy pu thgil ot desu eb nac dna ,yaɹ⅁ ʇhᵷiL deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘","lore.pyrite.light_gray_terracotta_bricks":"˙kcolb gnidliub a sa desu eb nac dna ,yar⅁ thᵷiꞀ deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘","lore.pyrite.light_gray_torch":"˙dlroʍ ruoy pu thgil ot desu eb nac dna ,yar⅁ ʇhᵷiꞀ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.light_gray_torch_lever":"˙thgis nialp ni enotsdeᴚ edih ot desu eb nac dna ,yar⅁ ʇhᵷiꞀ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.lime_bricks":"˙kcolb ᵷnidliub a sa desu eb nac dna ,eɯiꞀ deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘","lore.pyrite.lime_framed_glass":"˙wodniʍ luɟruoloc a sa oʇ desu eb nac dna ,emiꞀ deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.lime_framed_glass_pane":"˙wodniʍ luɟruoloc a sa desu eb naɔ dna ,emiꞀ deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.lime_lamp":"˙dlroʍ ɹuoy pu thᵷil oʇ desu eb nac dna ,emiL deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘","lore.pyrite.lime_terracotta_bricks":"˙kcolb ᵷnidliub a sa desu eb nac dna ,eɯiꞀ deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘","lore.pyrite.lime_torch":"˙dlroʍ ruoy pu thᵷil oʇ desu eb nac dna ,eɯiꞀ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.lime_torch_lever":"˙thᵷis nialp ni enotsdeᴚ edih oʇ desu eb nac dna ,eɯiꞀ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.lit_redstone_lamp":"˙edisni hcroT enotsdeR eht ot sknaht dereʍop ʎltnenamrep si tub ,pmaꞀ enoʇsdeᴚ ɐ selbɯesǝɹ ʞɔoןb sᴉɥ⟘","lore.pyrite.locked_chest":"˙ecruos thgil a sa sevres tsuɾ ʍon tub ,esopɹup a dah ecno ǝʌɐh ʇhᵷiɯ ʞɔoןb sᴉɥ⟘","lore.pyrite.magenta_bricks":"˙kcolb gnidliub a sa desu eb nac dna ,aʇneᵷaM deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘","lore.pyrite.magenta_framed_glass":"˙wodniʍ luɟruoloc a sa ot desu eb nac dna ,aʇneᵷaM deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.magenta_framed_glass_pane":"˙wodniʍ luɟruoloc a sa desu eb naɔ dna ,aʇneᵷaM deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.magenta_lamp":"˙dlroʍ ɹuoy pu thgil ot desu eb nac dna ,aʇneᵷaM deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘","lore.pyrite.magenta_terracotta_bricks":"˙kcolb gnidliub a sa desu eb nac dna ,atneᵷaM deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘","lore.pyrite.magenta_torch":"˙dlroʍ ruoy pu thgil ot desu eb nac dna ,aʇneᵷaM deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.magenta_torch_lever":"˙thgis nialp ni enotsdeᴚ edih ot desu eb nac dna ,aʇneᵷaM deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.mossy_cobblestone_bricks":"˙sdliub emag etal dna ylrae htob roɟ ʇɐǝrᵷ si kcoןb ʞɔiɹb ʎssoɯ sᴉɥ⟘","lore.pyrite.mycelium_turf":"˙epis hcɐe uo erutxet dot eht hʇiʍ ,mnilecʎM selbɯesǝɹ ʞɔoןb sᴉɥ⟘","lore.pyrite.nether_brick_fence_gate":"!rood a ekil penedo eb nac tub ,ecneℲ kcirᗺ rehʇeN ɐ selbɯesǝɹ ʞɔoןb sᴉɥ⟘","lore.pyrite.netherite_bricks":"˙sʞcirᗺ otni devraɔ neeb sah taht etireɥtǝN ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.netherite_door":"˙rooᗡ a otni devraɔ neeb sah taht etireɥtǝN ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.netherite_pillar":"˙ralןiԀ a otni devraɔ neeb sah taht etireɥtǝN ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.netherite_trapdoor":"˙roodpar⟘ a otni devraɔ neeb sah taht etireɥtǝN ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.nostalgia_amethyst_block":"˙neeb eʌah thgim tahw rednoʍ uoy sekaɯ eɹutxǝt ʎnihs s'kɔolb siɥt tɐ ᵷuᴉʞooן ʇsnՐ","lore.pyrite.nostalgia_bricks":"˙seiromeɯ kcab sgnirb erutxǝt thgiɹb s'kɔolb siɥt tɐ ᵷuᴉʞooן ʇsnՐ","lore.pyrite.nostalgia_cobblestone":"˙seiromǝm kcab sgnirb skcarc citaɯaɹd s'kɔolb siɥt tɐ ᵷuᴉʞooן ʇsnՐ","lore.pyrite.nostalgia_copper_block":"˙neeb eʌah thgim tahw rednoʍ uoy sekaɯ eɹutxǝt ʎnihs s'kɔolb siɥt tɐ ᵷuᴉʞooן ʇsnՐ","lore.pyrite.nostalgia_diamond_block":"˙seiromeɯ kcab sgnirb eɹutxǝt ʎnihs s'kɔolb siɥt tɐ ᵷuᴉʞooן ʇsnՐ","lore.pyrite.nostalgia_dye":"˙seiromem dnof tuo sgnᴉrb taɥʇ eןppA na morɟ edɐɯ eʎd neǝɹᵷ Ɐ","lore.pyrite.nostalgia_emerald_block":"˙seiromeɯ kcab sgnirb eɹutxet delǝsihc s'kɔolb siɥt tɐ ᵷuᴉʞooן ʇsnՐ","lore.pyrite.nostalgia_exposed_copper_block":"˙neeb eʌah thgim tahw rednoʍ uoy sekaɯ eɹutxǝt ʎnihs s'kɔolb siɥt tɐ ᵷuᴉʞooן ʇsnՐ","lore.pyrite.nostalgia_framed_glass":"˙wodniʍ lufruoloc a sa oʇ desu eb nac dna ,railimaɟ skool ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.nostalgia_framed_glass_pane":"˙wodniʍ lufruoloc a sa desu eb naɔ dna ,railimaɟ sʞool enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.nostalgia_glowing_obsidian":"˙ecruos thgil a sa sevres tsuɾ ʍon tub ,esopɹup a dah ecno ǝʌɐh ʇhᵷiɯ ʞɔoןb sᴉɥ⟘","lore.pyrite.nostalgia_gold_block":"˙seiromeɯ kcab sgnirb eɹutxǝt ʎnihs s'kɔolb siɥt tɐ ᵷuᴉʞooן ʇsnՐ","lore.pyrite.nostalgia_grass_block":"˙seiromeɯ kcab sgnirb erutxǝt tnaɹbiʌ s'kɔolb siɥt tɐ ᵷuᴉʞooן ʇsnՐ","lore.pyrite.nostalgia_gravel":"˙seiromem kcab sgnirb eɹutxet ʎssǝɯ s'kɔolb siɥt tɐ ᵷuᴉʞooן ʇsnՐ","lore.pyrite.nostalgia_iron_block":"˙seiromeɯ kcab sgnirb eɹutxǝt ʎnihs s'kɔolb siɥt tɐ ᵷuᴉʞooן ʇsnՐ","lore.pyrite.nostalgia_lamp":"˙dlroʍ ruoʎ pu thᵷil oʇ desu ǝb nac pna ,ɹailimaɟ skool ʞɔoןb dɯɐꞀ sᴉɥ⟘","lore.pyrite.nostalgia_lapis_block":"˙seiromem kcab sgnirb eɹutxǝt htooɯs s'kɔolb siɥt tɐ ᵷuᴉʞooן ʇsnՐ","lore.pyrite.nostalgia_mossy_cobblestone":"˙seiromǝm kcab sgnirb skcarc citaɯaɹd s'kɔolb siɥt tɐ ᵷuᴉʞooן ʇsnՐ","lore.pyrite.nostalgia_netherite_block":"˙neeb eʌah thgim tahw rednoʍ uoy sekaɯ eɹutxǝt ʎnihs s'kɔolb siɥt tɐ ᵷuᴉʞooן ʇsnՐ","lore.pyrite.nostalgia_netherrack":"˙seiromeɯ kcab sgnirb erutxet ǝgnaɹts s'kɔolb siɥt tɐ ᵷuᴉʞooן ʇsnՐ","lore.pyrite.nostalgia_oxidized_copper_block":"˙neeb eʌah thgim tahw rednoʍ uoy sekaɯ eɹutxǝt ʎnihs s'kɔolb siɥt tɐ ᵷuᴉʞooן ʇsnՐ","lore.pyrite.nostalgia_redstone_block":"˙seiromeɯ kcab sgnirb erutxet rǝkɹad s'kɔolb siɥt tɐ ᵷuᴉʞooן ʇsnՐ","lore.pyrite.nostalgia_terracotta_bricks":"˙kcolb ᵷnidliub a sa desu eb nac dna ,railiɯaɟ skool kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘","lore.pyrite.nostalgia_torch":"˙dlroʍ ruoʎ pu thᵷil oʇ desu ǝb nac dna ,railiɯɐɟ skool ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.nostalgia_torch_lever":"˙thᵷis nialp ni enotsdeᴚ edih oʇ desu ǝb nac dna ,railiɯɐɟ skool ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.nostalgia_weathered_copper_block":"˙neeb eʌah thgim tahw rednoʍ uoy sekaɯ eɹutxǝt ʎnihs s'kɔolb siɥt tɐ ᵷuᴉʞooן ʇsnՐ","lore.pyrite.orange_bricks":"˙kcolb gnidliub a sa desu eb nac dna ,eᵷnarO deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘","lore.pyrite.orange_framed_glass":"˙wodniʍ luɟruoloc a sa oʇ desu eb nac dna ,eᵷnarO deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.orange_framed_glass_pane":"˙wodniʍ luɟruoloc a sa desu eb naɔ dna ,eᵷnarO deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.orange_lamp":"˙dlroʍ ruoy pu thgil oʇ desu eb nac dna ,eᵷnaɹO deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘","lore.pyrite.orange_rose":"˙tsad eht fo knihʇ uoʎ seʞaɯ reʍoןɟ ǝᵷnɐɹo sᴉɥ⟘","lore.pyrite.orange_terracotta_bricks":"˙kcolb gnidliub a sa desu eb nac dna ,eᵷnarO deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘","lore.pyrite.orange_torch":"˙dlroʍ ruoy pu thgil oʇ desu eb nac dna ,eᵷnarO deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.orange_torch_lever":"˙thgis nialp ni enotsdeᴚ edih oʇ desu eb nac dna ,eᵷnarO deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.oxidized_copper_pillar":"˙ralןiԀ a otni devraɔ neeb sah taɥt reppoƆ dǝzidixO ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.paenoia_rose":"˙neeb eʌ'thgim tahw fo kniht uoʎ seʞam ɹeʍoןɟ aʇnǝᵷɐɯ sᴉɥ⟘","lore.pyrite.path_turf":"˙epis hcae uo erntxet dot eht htiʍ ,kcolᗺ htaԀ ʇriᗡ ɐ selbɯesǝɹ ʞɔoןb sᴉɥ⟘","lore.pyrite.pink_bricks":"˙kcolb ᵷnidliub a sa desu eb nac dna ,kniԀ deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘","lore.pyrite.pink_daisy":"˙tsap eht fo knihʇ uoʎ sekɐɯ ɹǝʍoןɟ ʞnid sᴉɥ⟘","lore.pyrite.pink_framed_glass":"˙wodniʍ luɟruoloc a sa oʇ desu eb nac dna ,kniԀ deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.pink_framed_glass_pane":"˙wodniʍ luɟruoloc a sa desu eb naɔ dna ,ʞniP deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.pink_lamp":"˙dlroʍ ɹuoy pu thᵷil oʇ desu eb nac dna ,kniԀ deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘","lore.pyrite.pink_rose":"˙tsap eht fo knihʇ uoʎ sekɐɯ ɹǝʍoןɟ ʞnid sᴉɥ⟘","lore.pyrite.pink_terracotta_bricks":"˙kcolb ᵷnidliub a sa desu eb nac dna ,kniԀ deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘","lore.pyrite.pink_torch":"˙dlroʍ ruoy pu thᵷil oʇ desu eb nac dna ,kniԀ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.pink_torch_lever":"˙thᵷis nialp ni enotsdeᴚ edih oʇ desu eb nac dna ,kniԀ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.podzol_turf":"˙edis hcɐe uo erntxet pot eht hʇiʍ ,lozdoԀ selbɯesǝɹ ʞɔoןb sᴉɥ⟘","lore.pyrite.poisonous_bricks":"˙kcolb ᵷnidliub a sa desu eb nac dna ,neer⅁ suonosioԀ deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘","lore.pyrite.poisonous_dye":"˙otaʇoP suonosioԀ na moɹɟ edɐm eʎd ǝɯᴉן Ɐ","lore.pyrite.poisonous_framed_glass":"˙wodniʍ luɟruoloc a sa oʇ desu eb nac dna ,neerG suonosioԀ deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.poisonous_framed_glass_pane":"˙wodniʍ luɟruoloc a sa desu eb naɔ dna ,neerG suonosioP deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.poisonous_lamp":"˙dlroʍ ruoy pu thᵷil oʇ desu eb nac dna ,neeɹ⅁ suonosioԀ deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘","lore.pyrite.poisonous_terracotta_bricks":"˙kcolb ᵷnidliub a sa desu eb nac dna ,neer⅁ suonosioԀ deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘","lore.pyrite.poisonous_torch":"˙dlroʍ ruoy pu thᵷil oʇ desu eb nac dna ,neer⅁ suonosioԀ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.poisonous_torch_lever":"˙thᵷis nialp ni enotsdeᴚ edih oʇ desu eb nac dna ,neer⅁ suonosioԀ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.purple_bricks":"˙kcolb ᵷnidliub a sa desu eb nac dna ,elpruԀ deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘","lore.pyrite.purple_framed_glass":"˙wodniʍ luɟruoloc a sa oʇ desu eb nac dna ,elpruԀ deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.purple_framed_glass_pane":"˙wodniʍ luɟruoloc a sa desu eb naɔ dna ,elpruP deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.purple_lamp":"˙dlroʍ ruoy pu thᵷil oʇ desu eb nac dna ,elpɹuԀ deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘","lore.pyrite.purple_terracotta_bricks":"˙kcolb ᵷnidliub a sa desu eb nac dna ,elpruԀ deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘","lore.pyrite.purple_torch":"˙dlroʍ ruoy pu thᵷil oʇ desu eb nac dna ,elpruԀ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.purple_torch_lever":"˙thᵷis nialp ni enotsdeᴚ edih oʇ desu eb nac dna ,elpruԀ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.quartz_bricks":"˙sʞcirᗺ otni devraɔ neǝb sah taɥt ztrauꝹ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.quartz_door":"˙rooᗡ a otni devraɔ neǝb sah taɥt ztrauꝹ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.quartz_pillar":"˙ralןiԀ a otni devraɔ neǝb sah taɥt ztrauꝹ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.quartz_trapdoor":"˙roodpar⟘ a otni devraɔ neǝb sah taɥt ztrauꝹ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.red_bricks":"˙kcolb ᵷnidliub a sa desu eb nac dna ,deᴚ deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘","lore.pyrite.red_framed_glass":"˙wodniʍ luɟruoloc a sa oʇ desu eb nac dna ,deᴚ deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.red_framed_glass_pane":"˙wodniʍ luɟruoloc a sa desu eb naɔ dna ,deᴚ deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.red_lamp":"˙dlroʍ ɹuoy pu thᵷil oʇ desu eb nac dna ,deᴚ deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘","lore.pyrite.red_terracotta_bricks":"˙kcolb ᵷnidliub a sa desu eb nac dna ,deᴚ deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘","lore.pyrite.red_torch":"˙dlroʍ ruoy pu thᵷil oʇ desu eb nac dna ,deᴚ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.red_torch_lever":"˙thᵷis nialp ni enotsdeR edih oʇ desu eb nac dna ,deᴚ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.redstone_bricks":"˙sʞcirᗺ otni devraɔ neeb sah taɥt enotsdǝᴚ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.redstone_door":"˙rooᗡ a otni devraɔ neeb sah taɥt enotsdǝᴚ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.redstone_pillar":"˙ralןiԀ a otni devraɔ neeb sah taɥt enotsdǝᴚ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.redstone_torch_lever":"˙thᵷis niaןp ni enotsdeR edih ot desu eb nɐc hɔɹoT enoʇsdǝᴚ sᴉɥ⟘","lore.pyrite.redstone_trapdoor":"˙roodpar⟘ a otni devraɔ neeb sah taɥt enotsdǝᴚ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.rose":"˙tsap eht fo kuihʇ noʎ seʞɐɯ reʍoןɟ dǝɹ sᴉɥ⟘","lore.pyrite.rose_bricks":"˙kcolb ᵷnidliub a sa desu eb nac dna ,esoᴚ deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘","lore.pyrite.rose_dye":"˙eyᗡ ʞniԀ dna deᴚ ᵷnixᴉm morɟ edɐɯ eʎd dǝɹ Ɐ","lore.pyrite.rose_framed_glass":"˙wodniʍ luɟruoloc a sa oʇ desu eb nac dna ,esoᴚ deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.rose_framed_glass_pane":"˙wodniʍ luɟruoloc a sa desu eb naɔ dna ,esoᴚ deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.rose_lamp":"˙dlroʍ ɹuoy pu thᵷil oʇ desu eb nac dna ,esoᴚ deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘","lore.pyrite.rose_terracotta_bricks":"˙kcolb ᵷnidliub a sa desu eb nac dna ,esoᴚ deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘","lore.pyrite.rose_torch":"˙dlroʍ ruoy pu thᵷil oʇ desu eb nac dna ,esoᴚ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.rose_torch_lever":"˙thᵷis nialp ni enotsdeR edih oʇ desu eb nac dna ,esoᴚ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.smooth_amethyst":"˙htooms yןtcefrep eb ot devraɔ neeb sah taht tsʎɥtǝɯA ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.smooth_copper":"˙htooɯs ʎןtcefrep eb ot pevraɔ neeb sah taɥt rǝpdoƆ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.smooth_diamond":"˙htooms ʎןtcefrep eb ot devraɔ neǝb sah taɥt dnoɯaiᗡ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.smooth_emerald":"˙htooms ʎltcefrep eb ot devraɔ neeb sah taɥt dןarǝɯƎ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.smooth_exposed_copper":"˙htooɯs ʎןtcefrep eb ot devraɔ neeb sah taɥt reppoƆ pǝsodxƎ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.smooth_gold":"˙htooɯs ʎltcefrep eb ot devraɔ neǝb sah taɥt dןo⅁ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.smooth_iron":"˙htooɯs ʎןtcefrep eb ot devraɔ neǝb sah taɥt norI ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.smooth_lapis":"˙htooɯs ʎןtcefrep eb ot pevraɔ neǝb sah taɥt sidaꞀ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.smooth_netherite":"˙htooɯs ʎןtcefrep eb ot devraɔ neeb sah taht etireɥtǝN ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.smooth_oxidized_copper":"˙htooɯs ʎןtcefrep eb ot devraɔ neeb sah taɥt reppoƆ dǝzidixO ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.smooth_quartz":"˙htooɯs ʎןtcefrep eb ot devraɔ neǝb sah taɥt ztrauꝹ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.smooth_redstone":"˙htooɯs ʎןtcefrep eb ot devraɔ neeb sah taɥt enotsdǝᴚ ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.smooth_stone_bricks":" ˙sʞcirb otni devraɔ neeb sah taht ǝnotS ɥtooɯS ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.smooth_weathered_copper":"˙htooɯs ʎןtcefrep eb ot devraɔ neeb sah taht reppoƆ dereɥtaǝM ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.soul_torch_lever":"˙thᵷis nialp ni enotsdeᴚ edih oʇ desu ǝb uɐc hɔɹoT ןnoS sᴉɥ⟘","lore.pyrite.star_bricks":"˙kcolb ᵷnidliub a sa desu eb nac dna ,ratS rehteN a hʇiʍ deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘","lore.pyrite.star_dye":"˙wolg thgirb a ti htiʍ detfarc skɔoןb seʌᴉᵷ taht ,ratS reɥʇeN a morɟ edaɯ ǝʎd ʞɹɐd Ɐ","lore.pyrite.star_framed_glass":"˙wodniw luɟruoloc a sa ot desu eb nac dna ,ratS rehteN a hʇiʍ deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.star_framed_glass_pane":"˙wodniw luɟruoloc a sa desu eb naɔ dna ,ratS rehteN a hʇiʍ deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.star_lamp":"˙dlrow ruoy pu thᵷil ot desu eb nac dna ,ratS ɹehteN a hʇiʍ deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘","lore.pyrite.star_terracotta_bricks":"˙kcolb ᵷnidliub a sa desu eb nac dna ,ratS rehteN a htiʍ deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘","lore.pyrite.star_torch":"˙dlrow ruoy pu thᵷil ot desu eb nac dna ,ratS rehteN a hʇiʍ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.star_torch_lever":"˙thᵷis nialp ni enotsdeᴚ edih ot desu eb nac dna ,ratS rehteN a hʇiʍ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.torch_lever":"˙thᵷis niaןp ni enotsdeᴚ edih oʇ desu ǝb nɐc hɔɹoT sᴉɥ⟘","lore.pyrite.weathered_copper_pillar":"˙ralןiԀ a otni devraɔ neeb sah taht reppoƆ dereɥtaǝM ɟo ʇnaᴉɹɐʌ Ɐ","lore.pyrite.white_bricks":"˙kcolb ᵷnidliub a sa desu eb nac dna ,eʇihM deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘","lore.pyrite.white_framed_glass":"˙wodniʍ luɟruoloc a sa ot desu eb nac dna ,eʇihM deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.white_framed_glass_pane":"˙wodniʍ luɟruoloc a sa desu eb naɔ dna ,eʇihM deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.white_lamp":"˙dlroʍ ɹuoy pu thᵷil ot desu eb nac dna ,eʇihM deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘","lore.pyrite.white_rose":"˙tsad eht fo kuiht noʎ seʞɐɯ ɹewoןɟ ǝʇihʍ sᴉɥ⟘","lore.pyrite.white_terracotta_bricks":"˙kcolb ᵷnidliub a sa desu eb nac dna ,etihM deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘","lore.pyrite.white_torch":"˙dlroʍ ruoy pu thᵷil ot desu eb nac dna ,eʇihM deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.white_torch_lever":"˙thᵷis nialp ni enotsdeᴚ edih ot desu eb nac dna ,eʇihM deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.yellow_bricks":"˙kcolb ᵷnidliub a sa desu eb nac dna ,ʍolle⅄ deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘","lore.pyrite.yellow_framed_glass":"˙wodniw luɟruoloc a sa oʇ desu eb nac dna ,ʍolle⅄ deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.yellow_framed_glass_pane":"˙wodniw luɟruoloc a sa desu eb naɔ dna ,ʍolle⅄ deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘","lore.pyrite.yellow_lamp":"˙dlrow ɹuoy pu thᵷil oʇ desu eb nac dna ,ʍolle⅄ deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘","lore.pyrite.yellow_terracotta_bricks":"˙kcolb ᵷnidliub a sa desu eb nac dna ,ʍolle⅄ deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘","lore.pyrite.yellow_torch":"˙dlrow ruoy pu thᵷil oʇ desu eb nac dna ,ʍolle⅄ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","lore.pyrite.yellow_torch_lever":"˙thᵷis nialp ni enotsdeᴚ edih oʇ desu eb nac dna ,ʍolle⅄ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘","tag.item.pyrite.copper_doors":"srooᗡ ɹǝpdoƆ","tag.item.pyrite.crafting_tables":"sǝןba⟘ ᵷnᴉʇɟɐɹƆ","tag.item.pyrite.metal_doors":"sɹooᗡ ןɐʇǝM","tag.item.pyrite.mushroom_stem":"smǝʇS ɯooɹɥsnM","tag.pyrite.brick_wall_gates.description":"˙rood a ekil penedo eb uac ti ʇnb ,llaM ɐ selbɯesǝɹ ʞɔoןb sᴉɥ⟘","tag.pyrite.crafting_tables.description":"˙ᵷnitfarc lamron eht naht smeti fo uoitceles deiraʌ ǝroɯ a tɟaɹc oʇ noʎ sʍollɐ ʞɔoןb sᴉɥ⟘","tag.pyrite.ladders.description":"˙ʎllacitɹeʌ bɯilc oʇ desu ǝb nɐc ʞɔoןb sᴉɥ⟘","tag.pyrite.metal_bars.description":"˙reʌo depɯuɾ eb nac ʇub ,reirɹab a sa desu ǝb nɐc ʞɔoןb sᴉɥ⟘","tag.pyrite.turf_carpets.description":"˙sthᵷil edih ot decalp eb nac dua ,ɟrnT ekil kool sʞcoןb eʌᴉʇɐɹoɔed esǝɥ⟘","tag.pyrite.wall_gates.description":"˙rood a ekil penedo eb uac ti ʇnb ,llaM ɐ selbɯesǝɹ ʞɔoןb sᴉɥ⟘","block.pyrite.torch_lever":"reʌǝꞀ ɥɔɹo⟘","block.pyrite.redstone_torch_lever":"reʌeꞀ ɥɔɹo⟘ enoʇsdǝᴚ","block.pyrite.soul_torch_lever":"reʌǝꞀ ɥɔɹo⟘ ןnoS","block.pyrite.white_stained_button":"nottuᗺ deniɐtS ǝʇᴉɥM","block.pyrite.white_stained_stairs":"sɹiatS deniɐtS ǝʇᴉɥM","block.pyrite.white_stained_slab":"baןS deniɐtS ǝʇᴉɥM","block.pyrite.white_stained_pressure_plate":"etaןP erusseɹԀ deniɐtS ǝʇᴉɥM","block.pyrite.white_stained_fence":"eɔneℲ deniɐtS ǝʇᴉɥM","block.pyrite.white_stained_fence_gate":"eta⅁ eɔneℲ deniɐtS ǝʇᴉɥM","block.pyrite.white_stained_planks":"sʞnaןԀ deniɐtS ǝʇᴉɥM","block.pyrite.white_stained_crafting_table":"eןba⟘ ᵷnitɟaɹƆ deniɐtS ǝʇᴉɥM","block.pyrite.white_stained_ladder":"ɹeddaꞀ deniɐtS ǝʇᴉɥM","block.pyrite.white_stained_door":"ɹooᗡ deniɐtS ǝʇᴉɥM","block.pyrite.white_stained_sign":"nᵷiS deniɐtS ǝʇᴉɥM","block.pyrite.white_stained_hanging_sign":"ngiS gniᵷnaH deniɐtS ǝʇᴉɥM","block.pyrite.white_stained_trapdoor":"roodpaɹ⟘ deniɐtS ǝʇᴉɥM","block.pyrite.white_bricks":"sʞɔiɹᗺ ǝʇᴉɥM","block.pyrite.white_brick_slab":"bɐןS ʞɔiɹᗺ ǝʇᴉɥM","block.pyrite.white_brick_stairs":"sriɐtS ʞɔiɹᗺ ǝʇᴉɥM","block.pyrite.white_brick_wall":"lןɐW ʞɔiɹᗺ ǝʇᴉɥM","block.pyrite.white_brick_wall_gate":"eta⅁ lןɐW ʞɔiɹᗺ ǝʇᴉɥM","block.pyrite.white_terracotta_bricks":"sʞcirᗺ attoɔɐrɹe⟘ ǝʇᴉɥM","block.pyrite.white_terracotta_brick_slab":"baןS ʞcirᗺ attoɔɐrɹe⟘ ǝʇᴉɥM","block.pyrite.white_terracotta_brick_stairs":"sriatS ʞcirᗺ attoɔɐrɹe⟘ ǝʇᴉɥM","block.pyrite.white_terracotta_brick_wall":"lןaW ʞcirᗺ attoɔɐrɹe⟘ ǝʇᴉɥM","block.pyrite.white_terracotta_brick_wall_gate":"eta⅁ lןaW ʞcirᗺ attoɔɐrɹe⟘ ǝʇᴉɥM","block.pyrite.white_lamp":"dɯɐꞀ ǝʇᴉɥM","block.pyrite.white_torch":"hɔɹo⟘ ǝʇᴉɥM","block.pyrite.white_torch_lever":"reʌeꞀ hɔɹo⟘ ǝʇᴉɥM","block.pyrite.white_framed_glass":"ssaן⅁ deɯɐɹℲ ǝʇᴉɥM","block.pyrite.white_framed_glass_pane":"enaԀ ssaן⅁ deɯɐɹℲ ǝʇᴉɥM","block.pyrite.orange_stained_button":"nottuᗺ denᴉaʇS ǝᵷnɐɹO","block.pyrite.orange_stained_stairs":"sriatS denᴉaʇS ǝᵷnɐɹO","block.pyrite.orange_stained_slab":"baןS denᴉaʇS ǝᵷnɐɹO","block.pyrite.orange_stained_pressure_plate":"etaןP erusserԀ denᴉaʇS ǝᵷnɐɹO","block.pyrite.orange_stained_fence":"eɔneℲ denᴉaʇS ǝᵷnɐɹO","block.pyrite.orange_stained_fence_gate":"eta⅁ eɔneℲ denᴉaʇS ǝᵷnɐɹO","block.pyrite.orange_stained_planks":"sʞnaןԀ denᴉaʇS ǝᵷnɐɹO","block.pyrite.orange_stained_crafting_table":"eןba⟘ gnitɟarƆ denᴉaʇS ǝᵷnɐɹO","block.pyrite.orange_stained_ladder":"reddaꞀ denᴉaʇS ǝᵷnɐɹO","block.pyrite.orange_stained_door":"rooᗡ denᴉaʇS ǝᵷnɐɹO","block.pyrite.orange_stained_sign":"ngiS denᴉaʇS ǝᵷnɐɹO","block.pyrite.orange_stained_hanging_sign":"ngiS gnignaH denᴉaʇS ǝᵷnɐɹO","block.pyrite.orange_stained_trapdoor":"roodpar⟘ denᴉaʇS ǝᵷnɐɹO","block.pyrite.orange_bricks":"sʞɔᴉrᗺ ǝᵷnɐɹO","block.pyrite.orange_brick_slab":"baןS ʞɔᴉrᗺ ǝᵷnɐɹO","block.pyrite.orange_brick_stairs":"sriaʇS ʞɔᴉrᗺ ǝᵷnɐɹO","block.pyrite.orange_brick_wall":"lןaM ʞɔᴉrᗺ ǝᵷnɐɹO","block.pyrite.orange_brick_wall_gate":"eʇa⅁ lןaM ʞɔᴉrᗺ ǝᵷnɐɹO","block.pyrite.orange_terracotta_bricks":"sʞcᴉrᗺ atʇoɔarre⟘ ǝᵷnɐɹO","block.pyrite.orange_terracotta_brick_slab":"baןS ʞcᴉrᗺ atʇoɔarre⟘ ǝᵷnɐɹO","block.pyrite.orange_terracotta_brick_stairs":"sriatS ʞcᴉrᗺ atʇoɔarre⟘ ǝᵷnɐɹO","block.pyrite.orange_terracotta_brick_wall":"lןaM ʞcᴉrᗺ atʇoɔarre⟘ ǝᵷnɐɹO","block.pyrite.orange_terracotta_brick_wall_gate":"eta⅁ lןaM ʞcᴉrᗺ atʇoɔarre⟘ ǝᵷnɐɹO","block.pyrite.orange_lamp":"dɯaꞀ ǝᵷnɐɹO","block.pyrite.orange_torch":"ɥɔro⟘ ǝᵷnɐɹO","block.pyrite.orange_torch_lever":"reʌeꞀ ɥɔro⟘ ǝᵷnɐɹO","block.pyrite.orange_framed_glass":"ssaן⅁ deɯarℲ ǝᵷnɐɹO","block.pyrite.orange_framed_glass_pane":"enaԀ ssaן⅁ deɯarℲ ǝᵷnɐɹO","block.pyrite.magenta_stained_button":"nottuᗺ denᴉatS aʇnǝᵷɐM","block.pyrite.magenta_stained_stairs":"sɹiatS denᴉatS aʇnǝᵷɐM","block.pyrite.magenta_stained_slab":"baןS denᴉatS aʇnǝᵷɐM","block.pyrite.magenta_stained_pressure_plate":"etaןP erusseɹԀ denᴉatS aʇnǝᵷɐM","block.pyrite.magenta_stained_fence":"eɔneℲ denᴉatS aʇnǝᵷɐM","block.pyrite.magenta_stained_fence_gate":"eta⅁ eɔneℲ denᴉatS aʇnǝᵷɐM","block.pyrite.magenta_stained_planks":"sʞnaןԀ denᴉatS aʇnǝᵷɐM","block.pyrite.magenta_stained_crafting_table":"eןba⟘ gnitɟaɹƆ denᴉatS aʇnǝᵷɐM","block.pyrite.magenta_stained_ladder":"ɹeddaꞀ denᴉatS aʇnǝᵷɐM","block.pyrite.magenta_stained_door":"ɹooᗡ denᴉatS aʇnǝᵷɐM","block.pyrite.magenta_stained_sign":"ngiS denᴉatS aʇnǝᵷɐM","block.pyrite.magenta_stained_hanging_sign":"ngiS gnignaH denᴉatS aʇnǝᵷɐM","block.pyrite.magenta_stained_trapdoor":"roodpaɹ⟘ denᴉatS aʇnǝᵷɐM","block.pyrite.magenta_bricks":"sʞɔᴉɹᗺ aʇnǝᵷɐM","block.pyrite.magenta_brick_slab":"baןS ʞɔᴉɹᗺ aʇnǝᵷɐM","block.pyrite.magenta_brick_stairs":"sriatS ʞɔᴉɹᗺ aʇnǝᵷɐM","block.pyrite.magenta_brick_wall":"lןaW ʞɔᴉɹᗺ aʇnǝᵷɐM","block.pyrite.magenta_brick_wall_gate":"eta⅁ lןaW ʞɔᴉɹᗺ aʇnǝᵷɐM","block.pyrite.magenta_terracotta_bricks":"sʞcᴉrᗺ attoɔarɹe⟘ aʇnǝᵷɐM","block.pyrite.magenta_terracotta_brick_slab":"baןS ʞcᴉrᗺ attoɔarɹe⟘ aʇnǝᵷɐM","block.pyrite.magenta_terracotta_brick_stairs":"sriatS ʞcᴉrᗺ attoɔarɹe⟘ aʇnǝᵷɐM","block.pyrite.magenta_terracotta_brick_wall":"lןaW ʞcᴉrᗺ attoɔarɹe⟘ aʇnǝᵷɐM","block.pyrite.magenta_terracotta_brick_wall_gate":"eta⅁ lןaW ʞcᴉrᗺ attoɔarɹe⟘ aʇnǝᵷɐM","block.pyrite.magenta_lamp":"dɯaꞀ aʇnǝᵷɐM","block.pyrite.magenta_torch":"ɥɔɹo⟘ aʇnǝᵷɐM","block.pyrite.magenta_torch_lever":"reʌeꞀ ɥɔɹo⟘ aʇnǝᵷɐM","block.pyrite.magenta_framed_glass":"ssaן⅁ deɯaɹℲ aʇnǝᵷɐM","block.pyrite.magenta_framed_glass_pane":"enaԀ ssaן⅁ deɯaɹℲ aʇnǝᵷɐM","block.pyrite.light_blue_stained_button":"nottuB deuiɐtS ǝnןᗺ ʇɥᵷᴉꞀ","block.pyrite.light_blue_stained_stairs":"sɹiatS deuiɐtS ǝnןᗺ ʇɥᵷᴉꞀ","block.pyrite.light_blue_stained_slab":"balS deuiɐtS ǝnןᗺ ʇɥᵷᴉꞀ","block.pyrite.light_blue_stained_pressure_plate":"etalP erusseɹԀ deuiɐtS ǝnןᗺ ʇɥᵷᴉꞀ","block.pyrite.light_blue_stained_fence":"eɔneℲ deuiɐtS ǝnןᗺ ʇɥᵷᴉꞀ","block.pyrite.light_blue_stained_fence_gate":"eta⅁ eɔneℲ deuiɐtS ǝnןᗺ ʇɥᵷᴉꞀ","block.pyrite.light_blue_stained_planks":"sʞnalԀ deuiɐtS ǝnןᗺ ʇɥᵷᴉꞀ","block.pyrite.light_blue_stained_crafting_table":"elba⟘ gnitɟaɹƆ deuiɐtS ǝnןᗺ ʇɥᵷᴉꞀ","block.pyrite.light_blue_stained_ladder":"ɹeddaL deuiɐtS ǝnןᗺ ʇɥᵷᴉꞀ","block.pyrite.light_blue_stained_door":"ɹooᗡ deuiɐtS ǝnןᗺ ʇɥᵷᴉꞀ","block.pyrite.light_blue_stained_sign":"ngiS deuiɐtS ǝnןᗺ ʇɥᵷᴉꞀ","block.pyrite.light_blue_stained_hanging_sign":"ngiS gnignaH deuiɐtS ǝnןᗺ ʇɥᵷᴉꞀ","block.pyrite.light_blue_stained_trapdoor":"roodpaɹ⟘ deuiɐtS ǝnןᗺ ʇɥᵷᴉꞀ","block.pyrite.light_blue_bricks":"sʞɔiɹB ǝnןᗺ ʇɥᵷᴉꞀ","block.pyrite.light_blue_brick_slab":"bɐlS ʞɔiɹB ǝnןᗺ ʇɥᵷᴉꞀ","block.pyrite.light_blue_brick_stairs":"sriɐtS ʞɔiɹB ǝnןᗺ ʇɥᵷᴉꞀ","block.pyrite.light_blue_brick_wall":"llɐM ʞɔiɹB ǝnןᗺ ʇɥᵷᴉꞀ","block.pyrite.light_blue_brick_wall_gate":"eta⅁ llɐM ʞɔiɹB ǝnןᗺ ʇɥᵷᴉꞀ","block.pyrite.light_blue_terracotta_bricks":"sʞcirB attoɔɐrɹe⟘ ǝnןᗺ ʇɥᵷᴉꞀ","block.pyrite.light_blue_terracotta_brick_slab":"balS ʞcirB attoɔɐrɹe⟘ ǝnןᗺ ʇɥᵷᴉꞀ","block.pyrite.light_blue_terracotta_brick_stairs":"sriatS ʞcirB attoɔɐrɹe⟘ ǝnןᗺ ʇɥᵷᴉꞀ","block.pyrite.light_blue_terracotta_brick_wall":"llaM ʞcirB attoɔɐrɹe⟘ ǝnןᗺ ʇɥᵷᴉꞀ","block.pyrite.light_blue_terracotta_brick_wall_gate":"eta⅁ llaM ʞcirB attoɔɐrɹe⟘ ǝnןᗺ ʇɥᵷᴉꞀ","block.pyrite.light_blue_lamp":"dɯɐL ǝnןᗺ ʇɥᵷᴉꞀ","block.pyrite.light_blue_torch":"hɔɹo⟘ ǝnןᗺ ʇɥᵷᴉꞀ","block.pyrite.light_blue_torch_lever":"reʌeL hɔɹo⟘ ǝnןᗺ ʇɥᵷᴉꞀ","block.pyrite.light_blue_framed_glass":"ssal⅁ deɯɐɹℲ ǝnןᗺ ʇɥᵷᴉꞀ","block.pyrite.light_blue_framed_glass_pane":"euaԀ ssal⅁ deɯɐɹℲ ǝnןᗺ ʇɥᵷᴉꞀ","block.pyrite.yellow_stained_button":"nottuᗺ denᴉɐʇS ʍolןǝ⅄","block.pyrite.yellow_stained_stairs":"sɹiatS denᴉɐʇS ʍolןǝ⅄","block.pyrite.yellow_stained_slab":"balS denᴉɐʇS ʍolןǝ⅄","block.pyrite.yellow_stained_pressure_plate":"etalP erusseɹԀ denᴉɐʇS ʍolןǝ⅄","block.pyrite.yellow_stained_fence":"eɔneℲ denᴉɐʇS ʍolןǝ⅄","block.pyrite.yellow_stained_fence_gate":"eta⅁ eɔneℲ denᴉɐʇS ʍolןǝ⅄","block.pyrite.yellow_stained_planks":"sʞnalԀ denᴉɐʇS ʍolןǝ⅄","block.pyrite.yellow_stained_crafting_table":"elba⟘ ᵷnitɟaɹƆ denᴉɐʇS ʍolןǝ⅄","block.pyrite.yellow_stained_ladder":"ɹeddaꞀ denᴉɐʇS ʍolןǝ⅄","block.pyrite.yellow_stained_door":"ɹooᗡ denᴉɐʇS ʍolןǝ⅄","block.pyrite.yellow_stained_sign":"nᵷiS denᴉɐʇS ʍolןǝ⅄","block.pyrite.yellow_stained_hanging_sign":"ngiS gniᵷnaH denᴉɐʇS ʍolןǝ⅄","block.pyrite.yellow_stained_trapdoor":"roodpaɹ⟘ denᴉɐʇS ʍolןǝ⅄","block.pyrite.yellow_bricks":"sʞɔᴉɹᗺ ʍolןǝ⅄","block.pyrite.yellow_brick_slab":"bɐlS ʞɔᴉɹᗺ ʍolןǝ⅄","block.pyrite.yellow_brick_stairs":"sriɐʇS ʞɔᴉɹᗺ ʍolןǝ⅄","block.pyrite.yellow_brick_wall":"llɐM ʞɔᴉɹᗺ ʍolןǝ⅄","block.pyrite.yellow_brick_wall_gate":"eʇa⅁ llɐM ʞɔᴉɹᗺ ʍolןǝ⅄","block.pyrite.yellow_terracotta_bricks":"sʞcᴉrᗺ atʇoɔɐrɹe⟘ ʍolןǝ⅄","block.pyrite.yellow_terracotta_brick_slab":"balS ʞcᴉrᗺ atʇoɔɐrɹe⟘ ʍolןǝ⅄","block.pyrite.yellow_terracotta_brick_stairs":"sriatS ʞcᴉrᗺ atʇoɔɐrɹe⟘ ʍolןǝ⅄","block.pyrite.yellow_terracotta_brick_wall":"llaM ʞcᴉrᗺ atʇoɔɐrɹe⟘ ʍolןǝ⅄","block.pyrite.yellow_terracotta_brick_wall_gate":"eta⅁ llaM ʞcᴉrᗺ atʇoɔɐrɹe⟘ ʍolןǝ⅄","block.pyrite.yellow_lamp":"dɯɐꞀ ʍolןǝ⅄","block.pyrite.yellow_torch":"ɥɔɹo⟘ ʍolןǝ⅄","block.pyrite.yellow_torch_lever":"reʌeꞀ ɥɔɹo⟘ ʍolןǝ⅄","block.pyrite.yellow_framed_glass":"ssal⅁ deɯɐɹℲ ʍolןǝ⅄","block.pyrite.yellow_framed_glass_pane":"enaԀ ssal⅁ deɯɐɹℲ ʍolןǝ⅄","block.pyrite.lime_stained_button":"nottuᗺ deniɐʇS ǝɯᴉꞀ","block.pyrite.lime_stained_stairs":"sɹiatS deniɐʇS ǝɯᴉꞀ","block.pyrite.lime_stained_slab":"baןS deniɐʇS ǝɯᴉꞀ","block.pyrite.lime_stained_pressure_plate":"etaןP erusseɹԀ deniɐʇS ǝɯᴉꞀ","block.pyrite.lime_stained_fence":"eɔneℲ deniɐʇS ǝɯᴉꞀ","block.pyrite.lime_stained_fence_gate":"eta⅁ eɔneℲ deniɐʇS ǝɯᴉꞀ","block.pyrite.lime_stained_planks":"sʞnaןԀ deniɐʇS ǝɯᴉꞀ","block.pyrite.lime_stained_crafting_table":"eןba⟘ ᵷnitɟaɹƆ deniɐʇS ǝɯᴉꞀ","block.pyrite.lime_stained_ladder":"ɹeddaL deniɐʇS ǝɯᴉꞀ","block.pyrite.lime_stained_door":"ɹooᗡ deniɐʇS ǝɯᴉꞀ","block.pyrite.lime_stained_sign":"nᵷiS deniɐʇS ǝɯᴉꞀ","block.pyrite.lime_stained_hanging_sign":"ngiS gniᵷnaH deniɐʇS ǝɯᴉꞀ","block.pyrite.lime_stained_trapdoor":"roodpaɹ⟘ deniɐʇS ǝɯᴉꞀ","block.pyrite.lime_bricks":"sʞɔiɹᗺ ǝɯᴉꞀ","block.pyrite.lime_brick_slab":"bɐןS ʞɔiɹᗺ ǝɯᴉꞀ","block.pyrite.lime_brick_stairs":"sriɐʇS ʞɔiɹᗺ ǝɯᴉꞀ","block.pyrite.lime_brick_wall":"lןɐM ʞɔiɹᗺ ǝɯᴉꞀ","block.pyrite.lime_brick_wall_gate":"eʇa⅁ lןɐM ʞɔiɹᗺ ǝɯᴉꞀ","block.pyrite.lime_terracotta_bricks":"sʞcirᗺ atʇoɔɐrɹe⟘ ǝɯᴉꞀ","block.pyrite.lime_terracotta_brick_slab":"baןS ʞcirᗺ atʇoɔɐrɹe⟘ ǝɯᴉꞀ","block.pyrite.lime_terracotta_brick_stairs":"sriatS ʞcirᗺ atʇoɔɐrɹe⟘ ǝɯᴉꞀ","block.pyrite.lime_terracotta_brick_wall":"lןaM ʞcirᗺ atʇoɔɐrɹe⟘ ǝɯᴉꞀ","block.pyrite.lime_terracotta_brick_wall_gate":"eta⅁ lןaM ʞcirᗺ atʇoɔɐrɹe⟘ ǝɯᴉꞀ","block.pyrite.lime_lamp":"dmɐL ǝɯᴉꞀ","block.pyrite.lime_torch":"ɥɔɹo⟘ ǝɯᴉꞀ","block.pyrite.lime_torch_lever":"reʌeL ɥɔɹo⟘ ǝɯᴉꞀ","block.pyrite.lime_framed_glass":"ssaן⅁ demɐɹℲ ǝɯᴉꞀ","block.pyrite.lime_framed_glass_pane":"enaԀ ssaן⅁ demɐɹℲ ǝɯᴉꞀ","block.pyrite.pink_stained_button":"nottuᗺ dǝniɐʇS ʞnᴉԀ","block.pyrite.pink_stained_stairs":"sɹiatS dǝniɐʇS ʞnᴉԀ","block.pyrite.pink_stained_slab":"baןS dǝniɐʇS ʞnᴉԀ","block.pyrite.pink_stained_pressure_plate":"etaןP erusseɹP dǝniɐʇS ʞnᴉԀ","block.pyrite.pink_stained_fence":"eɔneℲ dǝniɐʇS ʞnᴉԀ","block.pyrite.pink_stained_fence_gate":"eta⅁ eɔneℲ dǝniɐʇS ʞnᴉԀ","block.pyrite.pink_stained_planks":"sknaןP dǝniɐʇS ʞnᴉԀ","block.pyrite.pink_stained_crafting_table":"eןba⟘ ᵷnitɟaɹƆ dǝniɐʇS ʞnᴉԀ","block.pyrite.pink_stained_ladder":"ɹeddaꞀ dǝniɐʇS ʞnᴉԀ","block.pyrite.pink_stained_door":"ɹooᗡ dǝniɐʇS ʞnᴉԀ","block.pyrite.pink_stained_sign":"nᵷiS dǝniɐʇS ʞnᴉԀ","block.pyrite.pink_stained_hanging_sign":"ngiS gniᵷnaH dǝniɐʇS ʞnᴉԀ","block.pyrite.pink_stained_trapdoor":"roodpaɹ⟘ dǝniɐʇS ʞnᴉԀ","block.pyrite.pink_bricks":"skɔiɹᗺ ʞnᴉԀ","block.pyrite.pink_brick_slab":"bɐןS kɔiɹᗺ ʞnᴉԀ","block.pyrite.pink_brick_stairs":"sriɐʇS kɔiɹᗺ ʞnᴉԀ","block.pyrite.pink_brick_wall":"lןɐM kɔiɹᗺ ʞnᴉԀ","block.pyrite.pink_brick_wall_gate":"ǝʇa⅁ lןɐM kɔiɹᗺ ʞnᴉԀ","block.pyrite.pink_terracotta_bricks":"skcirᗺ atʇoɔɐrɹǝ⟘ ʞnᴉԀ","block.pyrite.pink_terracotta_brick_slab":"baןS kcirᗺ atʇoɔɐrɹǝ⟘ ʞnᴉԀ","block.pyrite.pink_terracotta_brick_stairs":"sriatS kcirᗺ atʇoɔɐrɹǝ⟘ ʞnᴉԀ","block.pyrite.pink_terracotta_brick_wall":"lןaM kcirᗺ atʇoɔɐrɹǝ⟘ ʞnᴉԀ","block.pyrite.pink_terracotta_brick_wall_gate":"eta⅁ lןaM kcirᗺ atʇoɔɐrɹǝ⟘ ʞnᴉԀ","block.pyrite.pink_lamp":"dɯɐꞀ ʞnᴉԀ","block.pyrite.pink_torch":"ɥɔɹo⟘ ʞnᴉԀ","block.pyrite.pink_torch_lever":"reʌǝꞀ ɥɔɹo⟘ ʞnᴉԀ","block.pyrite.pink_framed_glass":"ssaן⅁ dǝɯɐɹℲ ʞnᴉԀ","block.pyrite.pink_framed_glass_pane":"enaP ssaן⅁ dǝɯɐɹℲ ʞnᴉԀ","block.pyrite.gray_stained_button":"nottuᗺ dǝnᴉaʇS ʎɐɹ⅁","block.pyrite.gray_stained_stairs":"sriatS dǝnᴉaʇS ʎɐɹ⅁","block.pyrite.gray_stained_slab":"baןS dǝnᴉaʇS ʎɐɹ⅁","block.pyrite.gray_stained_pressure_plate":"etaןP erusserԀ dǝnᴉaʇS ʎɐɹ⅁","block.pyrite.gray_stained_fence":"eɔneℲ dǝnᴉaʇS ʎɐɹ⅁","block.pyrite.gray_stained_fence_gate":"etaG eɔneℲ dǝnᴉaʇS ʎɐɹ⅁","block.pyrite.gray_stained_planks":"sʞnaןԀ dǝnᴉaʇS ʎɐɹ⅁","block.pyrite.gray_stained_crafting_table":"eןba⟘ ᵷnitɟarƆ dǝnᴉaʇS ʎɐɹ⅁","block.pyrite.gray_stained_ladder":"reddaꞀ dǝnᴉaʇS ʎɐɹ⅁","block.pyrite.gray_stained_door":"rooᗡ dǝnᴉaʇS ʎɐɹ⅁","block.pyrite.gray_stained_sign":"nᵷiS dǝnᴉaʇS ʎɐɹ⅁","block.pyrite.gray_stained_hanging_sign":"ngiS gniᵷnaH dǝnᴉaʇS ʎɐɹ⅁","block.pyrite.gray_stained_trapdoor":"roodpar⟘ dǝnᴉaʇS ʎɐɹ⅁","block.pyrite.gray_bricks":"sʞɔᴉrᗺ ʎɐɹ⅁","block.pyrite.gray_brick_slab":"baןS ʞɔᴉrᗺ ʎɐɹ⅁","block.pyrite.gray_brick_stairs":"sriaʇS ʞɔᴉrᗺ ʎɐɹ⅁","block.pyrite.gray_brick_wall":"lןaM ʞɔᴉrᗺ ʎɐɹ⅁","block.pyrite.gray_brick_wall_gate":"ǝʇaG lןaM ʞɔᴉrᗺ ʎɐɹ⅁","block.pyrite.gray_terracotta_bricks":"sʞcᴉrᗺ atʇoɔarrǝ⟘ ʎɐɹ⅁","block.pyrite.gray_terracotta_brick_slab":"baןS ʞcᴉrᗺ atʇoɔarrǝ⟘ ʎɐɹ⅁","block.pyrite.gray_terracotta_brick_stairs":"sriatS ʞcᴉrᗺ atʇoɔarrǝ⟘ ʎɐɹ⅁","block.pyrite.gray_terracotta_brick_wall":"lןaM ʞcᴉrᗺ atʇoɔarrǝ⟘ ʎɐɹ⅁","block.pyrite.gray_terracotta_brick_wall_gate":"etaG lןaM ʞcᴉrᗺ atʇoɔarrǝ⟘ ʎɐɹ⅁","block.pyrite.gray_lamp":"dɯaꞀ ʎɐɹ⅁","block.pyrite.gray_torch":"ɥɔro⟘ ʎɐɹ⅁","block.pyrite.gray_torch_lever":"reʌǝꞀ ɥɔro⟘ ʎɐɹ⅁","block.pyrite.gray_framed_glass":"ssaןG dǝɯarℲ ʎɐɹ⅁","block.pyrite.gray_framed_glass_pane":"enaԀ ssaןG dǝɯarℲ ʎɐɹ⅁","block.pyrite.light_gray_stained_button":"nottuᗺ dǝniatS ʎɐɹ⅁ ʇɥᵷᴉꞀ","block.pyrite.light_gray_stained_stairs":"sriatS dǝniatS ʎɐɹ⅁ ʇɥᵷᴉꞀ","block.pyrite.light_gray_stained_slab":"baןS dǝniatS ʎɐɹ⅁ ʇɥᵷᴉꞀ","block.pyrite.light_gray_stained_pressure_plate":"etaןP erusserԀ dǝniatS ʎɐɹ⅁ ʇɥᵷᴉꞀ","block.pyrite.light_gray_stained_fence":"eɔneℲ dǝniatS ʎɐɹ⅁ ʇɥᵷᴉꞀ","block.pyrite.light_gray_stained_fence_gate":"etaG eɔneℲ dǝniatS ʎɐɹ⅁ ʇɥᵷᴉꞀ","block.pyrite.light_gray_stained_planks":"sʞnaןԀ dǝniatS ʎɐɹ⅁ ʇɥᵷᴉꞀ","block.pyrite.light_gray_stained_crafting_table":"eןba⟘ gnitɟarƆ dǝniatS ʎɐɹ⅁ ʇɥᵷᴉꞀ","block.pyrite.light_gray_stained_ladder":"reddaL dǝniatS ʎɐɹ⅁ ʇɥᵷᴉꞀ","block.pyrite.light_gray_stained_door":"rooᗡ dǝniatS ʎɐɹ⅁ ʇɥᵷᴉꞀ","block.pyrite.light_gray_stained_sign":"ngiS dǝniatS ʎɐɹ⅁ ʇɥᵷᴉꞀ","block.pyrite.light_gray_stained_hanging_sign":"ngiS gnignaH dǝniatS ʎɐɹ⅁ ʇɥᵷᴉꞀ","block.pyrite.light_gray_stained_trapdoor":"roodpar⟘ dǝniatS ʎɐɹ⅁ ʇɥᵷᴉꞀ","block.pyrite.light_gray_bricks":"sʞɔirᗺ ʎɐɹ⅁ ʇɥᵷᴉꞀ","block.pyrite.light_gray_brick_slab":"baןS ʞɔirᗺ ʎɐɹ⅁ ʇɥᵷᴉꞀ","block.pyrite.light_gray_brick_stairs":"sriatS ʞɔirᗺ ʎɐɹ⅁ ʇɥᵷᴉꞀ","block.pyrite.light_gray_brick_wall":"lןaM ʞɔirᗺ ʎɐɹ⅁ ʇɥᵷᴉꞀ","block.pyrite.light_gray_brick_wall_gate":"ǝtaG lןaM ʞɔirᗺ ʎɐɹ⅁ ʇɥᵷᴉꞀ","block.pyrite.light_gray_terracotta_bricks":"sʞcirᗺ attoɔarrǝ⟘ ʎɐɹ⅁ ʇɥᵷᴉꞀ","block.pyrite.light_gray_terracotta_brick_slab":"baןS ʞcirᗺ attoɔarrǝ⟘ ʎɐɹ⅁ ʇɥᵷᴉꞀ","block.pyrite.light_gray_terracotta_brick_stairs":"sriatS ʞcirᗺ attoɔarrǝ⟘ ʎɐɹ⅁ ʇɥᵷᴉꞀ","block.pyrite.light_gray_terracotta_brick_wall":"lןaM ʞcirᗺ attoɔarrǝ⟘ ʎɐɹ⅁ ʇɥᵷᴉꞀ","block.pyrite.light_gray_terracotta_brick_wall_gate":"etaG lןaM ʞcirᗺ attoɔarrǝ⟘ ʎɐɹ⅁ ʇɥᵷᴉꞀ","block.pyrite.light_gray_lamp":"dɯaL ʎɐɹ⅁ ʇɥᵷᴉꞀ","block.pyrite.light_gray_torch":"hɔro⟘ ʎɐɹ⅁ ʇɥᵷᴉꞀ","block.pyrite.light_gray_torch_lever":"reʌǝL hɔro⟘ ʎɐɹ⅁ ʇɥᵷᴉꞀ","block.pyrite.light_gray_framed_glass":"ssaןG dǝɯarℲ ʎɐɹ⅁ ʇɥᵷᴉꞀ","block.pyrite.light_gray_framed_glass_pane":"enaԀ ssaןG dǝɯarℲ ʎɐɹ⅁ ʇɥᵷᴉꞀ","block.pyrite.cyan_stained_button":"nottuᗺ dǝnᴉaʇS nɐʎƆ","block.pyrite.cyan_stained_stairs":"sɹiatS dǝnᴉaʇS nɐʎƆ","block.pyrite.cyan_stained_slab":"baןS dǝnᴉaʇS nɐʎƆ","block.pyrite.cyan_stained_pressure_plate":"etaןP erusseɹԀ dǝnᴉaʇS nɐʎƆ","block.pyrite.cyan_stained_fence":"eɔneℲ dǝnᴉaʇS nɐʎƆ","block.pyrite.cyan_stained_fence_gate":"eta⅁ eɔneℲ dǝnᴉaʇS nɐʎƆ","block.pyrite.cyan_stained_planks":"sʞnaןԀ dǝnᴉaʇS nɐʎƆ","block.pyrite.cyan_stained_crafting_table":"eןba⟘ ᵷnitɟaɹC dǝnᴉaʇS nɐʎƆ","block.pyrite.cyan_stained_ladder":"ɹeddaꞀ dǝnᴉaʇS nɐʎƆ","block.pyrite.cyan_stained_door":"ɹooᗡ dǝnᴉaʇS nɐʎƆ","block.pyrite.cyan_stained_sign":"nᵷiS dǝnᴉaʇS nɐʎƆ","block.pyrite.cyan_stained_hanging_sign":"ngiS gniᵷnaH dǝnᴉaʇS nɐʎƆ","block.pyrite.cyan_stained_trapdoor":"roodpaɹ⟘ dǝnᴉaʇS nɐʎƆ","block.pyrite.cyan_bricks":"sʞɔᴉɹᗺ nɐʎƆ","block.pyrite.cyan_brick_slab":"baןS ʞɔᴉɹᗺ nɐʎƆ","block.pyrite.cyan_brick_stairs":"sriaʇS ʞɔᴉɹᗺ nɐʎƆ","block.pyrite.cyan_brick_wall":"lןaM ʞɔᴉɹᗺ nɐʎƆ","block.pyrite.cyan_brick_wall_gate":"ǝʇa⅁ lןaM ʞɔᴉɹᗺ nɐʎƆ","block.pyrite.cyan_terracotta_bricks":"sʞcᴉrᗺ atʇoɔarɹǝ⟘ nɐʎƆ","block.pyrite.cyan_terracotta_brick_slab":"baןS ʞcᴉrᗺ atʇoɔarɹǝ⟘ nɐʎƆ","block.pyrite.cyan_terracotta_brick_stairs":"sriatS ʞcᴉrᗺ atʇoɔarɹǝ⟘ nɐʎƆ","block.pyrite.cyan_terracotta_brick_wall":"lןaM ʞcᴉrᗺ atʇoɔarɹǝ⟘ nɐʎƆ","block.pyrite.cyan_terracotta_brick_wall_gate":"eta⅁ lןaM ʞcᴉrᗺ atʇoɔarɹǝ⟘ nɐʎƆ","block.pyrite.cyan_lamp":"dɯaꞀ nɐʎƆ","block.pyrite.cyan_torch":"ɥɔɹo⟘ nɐʎƆ","block.pyrite.cyan_torch_lever":"reʌǝꞀ ɥɔɹo⟘ nɐʎƆ","block.pyrite.cyan_framed_glass":"ssaן⅁ dǝɯaɹℲ nɐʎƆ","block.pyrite.cyan_framed_glass_pane":"enaԀ ssaן⅁ dǝɯaɹℲ nɐʎƆ","block.pyrite.purple_stained_button":"nottuᗺ peuᴉɐʇS ǝןdɹnԀ","block.pyrite.purple_stained_stairs":"sriatS peuᴉɐʇS ǝןdɹnԀ","block.pyrite.purple_stained_slab":"balS peuᴉɐʇS ǝןdɹnԀ","block.pyrite.purple_stained_pressure_plate":"etalP erusserP peuᴉɐʇS ǝןdɹnԀ","block.pyrite.purple_stained_fence":"eɔneℲ peuᴉɐʇS ǝןdɹnԀ","block.pyrite.purple_stained_fence_gate":"eta⅁ eɔneℲ peuᴉɐʇS ǝןdɹnԀ","block.pyrite.purple_stained_planks":"sʞnalP peuᴉɐʇS ǝןdɹnԀ","block.pyrite.purple_stained_crafting_table":"elba⟘ ᵷnitɟarƆ peuᴉɐʇS ǝןdɹnԀ","block.pyrite.purple_stained_ladder":"reddaꞀ peuᴉɐʇS ǝןdɹnԀ","block.pyrite.purple_stained_door":"rooᗡ peuᴉɐʇS ǝןdɹnԀ","block.pyrite.purple_stained_sign":"nᵷiS peuᴉɐʇS ǝןdɹnԀ","block.pyrite.purple_stained_hanging_sign":"ngiS gniᵷnaH peuᴉɐʇS ǝןdɹnԀ","block.pyrite.purple_stained_trapdoor":"roodpar⟘ peuᴉɐʇS ǝןdɹnԀ","block.pyrite.purple_bricks":"sʞɔᴉrᗺ ǝןdɹnԀ","block.pyrite.purple_brick_slab":"bɐlS ʞɔᴉrᗺ ǝןdɹnԀ","block.pyrite.purple_brick_stairs":"sriɐʇS ʞɔᴉrᗺ ǝןdɹnԀ","block.pyrite.purple_brick_wall":"llɐM ʞɔᴉrᗺ ǝןdɹnԀ","block.pyrite.purple_brick_wall_gate":"eʇa⅁ llɐM ʞɔᴉrᗺ ǝןdɹnԀ","block.pyrite.purple_terracotta_bricks":"sʞcᴉrᗺ atʇoɔɐrre⟘ ǝןdɹnԀ","block.pyrite.purple_terracotta_brick_slab":"balS ʞcᴉrᗺ atʇoɔɐrre⟘ ǝןdɹnԀ","block.pyrite.purple_terracotta_brick_stairs":"sriatS ʞcᴉrᗺ atʇoɔɐrre⟘ ǝןdɹnԀ","block.pyrite.purple_terracotta_brick_wall":"llaM ʞcᴉrᗺ atʇoɔɐrre⟘ ǝןdɹnԀ","block.pyrite.purple_terracotta_brick_wall_gate":"eta⅁ llaM ʞcᴉrᗺ atʇoɔɐrre⟘ ǝןdɹnԀ","block.pyrite.purple_lamp":"pɯɐꞀ ǝןdɹnԀ","block.pyrite.purple_torch":"ɥɔro⟘ ǝןdɹnԀ","block.pyrite.purple_torch_lever":"reʌeꞀ ɥɔro⟘ ǝןdɹnԀ","block.pyrite.purple_framed_glass":"ssal⅁ peɯɐrℲ ǝןdɹnԀ","block.pyrite.purple_framed_glass_pane":"euaP ssal⅁ peɯɐrℲ ǝןdɹnԀ","block.pyrite.blue_stained_button":"nottuB deuᴉɐʇS ǝnןᗺ","block.pyrite.blue_stained_stairs":"sɹiatS deuᴉɐʇS ǝnןᗺ","block.pyrite.blue_stained_slab":"balS deuᴉɐʇS ǝnןᗺ","block.pyrite.blue_stained_pressure_plate":"etalP erusseɹԀ deuᴉɐʇS ǝnןᗺ","block.pyrite.blue_stained_fence":"eɔneℲ deuᴉɐʇS ǝnןᗺ","block.pyrite.blue_stained_fence_gate":"eta⅁ eɔneℲ deuᴉɐʇS ǝnןᗺ","block.pyrite.blue_stained_planks":"sʞnalԀ deuᴉɐʇS ǝnןᗺ","block.pyrite.blue_stained_crafting_table":"elba⟘ ᵷnitɟaɹƆ deuᴉɐʇS ǝnןᗺ","block.pyrite.blue_stained_ladder":"ɹeddaꞀ deuᴉɐʇS ǝnןᗺ","block.pyrite.blue_stained_door":"ɹooᗡ deuᴉɐʇS ǝnןᗺ","block.pyrite.blue_stained_sign":"nᵷiS deuᴉɐʇS ǝnןᗺ","block.pyrite.blue_stained_hanging_sign":"ngiS gniᵷnaH deuᴉɐʇS ǝnןᗺ","block.pyrite.blue_stained_trapdoor":"roodpaɹ⟘ deuᴉɐʇS ǝnןᗺ","block.pyrite.blue_bricks":"sʞɔᴉɹB ǝnןᗺ","block.pyrite.blue_brick_slab":"bɐlS ʞɔᴉɹB ǝnןᗺ","block.pyrite.blue_brick_stairs":"sriɐʇS ʞɔᴉɹB ǝnןᗺ","block.pyrite.blue_brick_wall":"llɐM ʞɔᴉɹB ǝnןᗺ","block.pyrite.blue_brick_wall_gate":"eʇa⅁ llɐM ʞɔᴉɹB ǝnןᗺ","block.pyrite.blue_terracotta_bricks":"sʞcᴉrB atʇoɔɐrɹe⟘ ǝnןᗺ","block.pyrite.blue_terracotta_brick_slab":"balS ʞcᴉrB atʇoɔɐrɹe⟘ ǝnןᗺ","block.pyrite.blue_terracotta_brick_stairs":"sriatS ʞcᴉrB atʇoɔɐrɹe⟘ ǝnןᗺ","block.pyrite.blue_terracotta_brick_wall":"llaM ʞcᴉrB atʇoɔɐrɹe⟘ ǝnןᗺ","block.pyrite.blue_terracotta_brick_wall_gate":"eta⅁ llaM ʞcᴉrB atʇoɔɐrɹe⟘ ǝnןᗺ","block.pyrite.blue_lamp":"dɯɐꞀ ǝnןᗺ","block.pyrite.blue_torch":"ɥɔɹo⟘ ǝnןᗺ","block.pyrite.blue_torch_lever":"reʌeꞀ ɥɔɹo⟘ ǝnןᗺ","block.pyrite.blue_framed_glass":"ssal⅁ deɯɐɹℲ ǝnןᗺ","block.pyrite.blue_framed_glass_pane":"euaԀ ssal⅁ deɯɐɹℲ ǝnןᗺ","block.pyrite.brown_stained_button":"nottuB dǝnᴉɐʇS nʍoɹᗺ","block.pyrite.brown_stained_stairs":"sriatS dǝnᴉɐʇS nʍoɹᗺ","block.pyrite.brown_stained_slab":"baןS dǝnᴉɐʇS nʍoɹᗺ","block.pyrite.brown_stained_pressure_plate":"etaןP erusserԀ dǝnᴉɐʇS nʍoɹᗺ","block.pyrite.brown_stained_fence":"eɔneℲ dǝnᴉɐʇS nʍoɹᗺ","block.pyrite.brown_stained_fence_gate":"eta⅁ eɔneℲ dǝnᴉɐʇS nʍoɹᗺ","block.pyrite.brown_stained_planks":"sʞnaןԀ dǝnᴉɐʇS nʍoɹᗺ","block.pyrite.brown_stained_crafting_table":"eןba⟘ ᵷnitɟarƆ dǝnᴉɐʇS nʍoɹᗺ","block.pyrite.brown_stained_ladder":"reddaꞀ dǝnᴉɐʇS nʍoɹᗺ","block.pyrite.brown_stained_door":"rooᗡ dǝnᴉɐʇS nʍoɹᗺ","block.pyrite.brown_stained_sign":"nᵷiS dǝnᴉɐʇS nʍoɹᗺ","block.pyrite.brown_stained_hanging_sign":"ngiS gniᵷnaH dǝnᴉɐʇS nʍoɹᗺ","block.pyrite.brown_stained_trapdoor":"roodpar⟘ dǝnᴉɐʇS nʍoɹᗺ","block.pyrite.brown_bricks":"sʞɔᴉrB nʍoɹᗺ","block.pyrite.brown_brick_slab":"bɐןS ʞɔᴉrB nʍoɹᗺ","block.pyrite.brown_brick_stairs":"sriɐʇS ʞɔᴉrB nʍoɹᗺ","block.pyrite.brown_brick_wall":"lןɐM ʞɔᴉrB nʍoɹᗺ","block.pyrite.brown_brick_wall_gate":"ǝʇa⅁ lןɐM ʞɔᴉrB nʍoɹᗺ","block.pyrite.brown_terracotta_bricks":"sʞcᴉrB atʇoɔɐrrǝ⟘ nʍoɹᗺ","block.pyrite.brown_terracotta_brick_slab":"baןS ʞcᴉrB atʇoɔɐrrǝ⟘ nʍoɹᗺ","block.pyrite.brown_terracotta_brick_stairs":"sriatS ʞcᴉrB atʇoɔɐrrǝ⟘ nʍoɹᗺ","block.pyrite.brown_terracotta_brick_wall":"lןaM ʞcᴉrB atʇoɔɐrrǝ⟘ nʍoɹᗺ","block.pyrite.brown_terracotta_brick_wall_gate":"eta⅁ lןaM ʞcᴉrB atʇoɔɐrrǝ⟘ nʍoɹᗺ","block.pyrite.brown_lamp":"dɯɐꞀ nʍoɹᗺ","block.pyrite.brown_torch":"ɥɔro⟘ nʍoɹᗺ","block.pyrite.brown_torch_lever":"reʌǝꞀ ɥɔro⟘ nʍoɹᗺ","block.pyrite.brown_framed_glass":"ssaן⅁ dǝɯɐrℲ nʍoɹᗺ","block.pyrite.brown_framed_glass_pane":"enaԀ ssaן⅁ dǝɯɐrℲ nʍoɹᗺ","block.pyrite.green_stained_button":"nottuᗺ denᴉɐʇS neǝɹ⅁","block.pyrite.green_stained_stairs":"sriatS denᴉɐʇS neǝɹ⅁","block.pyrite.green_stained_slab":"baןS denᴉɐʇS neǝɹ⅁","block.pyrite.green_stained_pressure_plate":"etaןP erusserԀ denᴉɐʇS neǝɹ⅁","block.pyrite.green_stained_fence":"eɔneℲ denᴉɐʇS neǝɹ⅁","block.pyrite.green_stained_fence_gate":"etaG eɔneℲ denᴉɐʇS neǝɹ⅁","block.pyrite.green_stained_planks":"sʞnaןԀ denᴉɐʇS neǝɹ⅁","block.pyrite.green_stained_crafting_table":"eןba⟘ ᵷnitɟarƆ denᴉɐʇS neǝɹ⅁","block.pyrite.green_stained_ladder":"reddaꞀ denᴉɐʇS neǝɹ⅁","block.pyrite.green_stained_door":"rooᗡ denᴉɐʇS neǝɹ⅁","block.pyrite.green_stained_sign":"nᵷiS denᴉɐʇS neǝɹ⅁","block.pyrite.green_stained_hanging_sign":"ngiS gniᵷnaH denᴉɐʇS neǝɹ⅁","block.pyrite.green_stained_trapdoor":"roodpar⟘ denᴉɐʇS neǝɹ⅁","block.pyrite.green_bricks":"sʞɔᴉrᗺ neǝɹ⅁","block.pyrite.green_brick_slab":"bɐןS ʞɔᴉrᗺ neǝɹ⅁","block.pyrite.green_brick_stairs":"sriɐʇS ʞɔᴉrᗺ neǝɹ⅁","block.pyrite.green_brick_wall":"lןɐM ʞɔᴉrᗺ neǝɹ⅁","block.pyrite.green_brick_wall_gate":"eʇaG lןɐM ʞɔᴉrᗺ neǝɹ⅁","block.pyrite.green_terracotta_bricks":"sʞcᴉrᗺ atʇoɔɐrre⟘ neǝɹ⅁","block.pyrite.green_terracotta_brick_slab":"baןS ʞcᴉrᗺ atʇoɔɐrre⟘ neǝɹ⅁","block.pyrite.green_terracotta_brick_stairs":"sriatS ʞcᴉrᗺ atʇoɔɐrre⟘ neǝɹ⅁","block.pyrite.green_terracotta_brick_wall":"lןaM ʞcᴉrᗺ atʇoɔɐrre⟘ neǝɹ⅁","block.pyrite.green_terracotta_brick_wall_gate":"etaG lןaM ʞcᴉrᗺ atʇoɔɐrre⟘ neǝɹ⅁","block.pyrite.green_lamp":"dɯɐꞀ neǝɹ⅁","block.pyrite.green_torch":"ɥɔro⟘ neǝɹ⅁","block.pyrite.green_torch_lever":"reʌeꞀ ɥɔro⟘ neǝɹ⅁","block.pyrite.green_framed_glass":"ssaןG deɯɐrℲ neǝɹ⅁","block.pyrite.green_framed_glass_pane":"enaԀ ssaןG deɯɐrℲ neǝɹ⅁","block.pyrite.red_stained_button":"nottuᗺ denᴉɐʇS dǝᴚ","block.pyrite.red_stained_stairs":"sɹiatS denᴉɐʇS dǝᴚ","block.pyrite.red_stained_slab":"baןS denᴉɐʇS dǝᴚ","block.pyrite.red_stained_pressure_plate":"etaןP erusseɹԀ denᴉɐʇS dǝᴚ","block.pyrite.red_stained_fence":"eɔneℲ denᴉɐʇS dǝᴚ","block.pyrite.red_stained_fence_gate":"eta⅁ eɔneℲ denᴉɐʇS dǝᴚ","block.pyrite.red_stained_planks":"sʞnaןԀ denᴉɐʇS dǝᴚ","block.pyrite.red_stained_crafting_table":"eןba⟘ ᵷnitɟaɹƆ denᴉɐʇS dǝᴚ","block.pyrite.red_stained_ladder":"ɹeddaꞀ denᴉɐʇS dǝᴚ","block.pyrite.red_stained_door":"ɹooᗡ denᴉɐʇS dǝᴚ","block.pyrite.red_stained_sign":"nᵷiS denᴉɐʇS dǝᴚ","block.pyrite.red_stained_hanging_sign":"ngiS gniᵷnaH denᴉɐʇS dǝᴚ","block.pyrite.red_stained_trapdoor":"roodpaɹ⟘ denᴉɐʇS dǝᴚ","block.pyrite.red_bricks":"sʞɔᴉɹᗺ dǝᴚ","block.pyrite.red_brick_slab":"bɐןS ʞɔᴉɹᗺ dǝᴚ","block.pyrite.red_brick_stairs":"sriɐʇS ʞɔᴉɹᗺ dǝᴚ","block.pyrite.red_brick_wall":"lןɐM ʞɔᴉɹᗺ dǝᴚ","block.pyrite.red_brick_wall_gate":"eʇa⅁ lןɐM ʞɔᴉɹᗺ dǝᴚ","block.pyrite.red_terracotta_bricks":"sʞcᴉrᗺ atʇoɔɐrɹe⟘ dǝᴚ","block.pyrite.red_terracotta_brick_slab":"baןS ʞcᴉrᗺ atʇoɔɐrɹe⟘ dǝᴚ","block.pyrite.red_terracotta_brick_stairs":"sriatS ʞcᴉrᗺ atʇoɔɐrɹe⟘ dǝᴚ","block.pyrite.red_terracotta_brick_wall":"lןaM ʞcᴉrᗺ atʇoɔɐrɹe⟘ dǝᴚ","block.pyrite.red_terracotta_brick_wall_gate":"eta⅁ lןaM ʞcᴉrᗺ atʇoɔɐrɹe⟘ dǝᴚ","block.pyrite.red_lamp":"pɯɐꞀ dǝᴚ","block.pyrite.red_torch":"ɥɔɹo⟘ dǝᴚ","block.pyrite.red_torch_lever":"reʌeꞀ ɥɔɹo⟘ dǝᴚ","block.pyrite.red_framed_glass":"ssaן⅁ deɯɐɹℲ dǝᴚ","block.pyrite.red_framed_glass_pane":"enaԀ ssaן⅁ deɯɐɹℲ dǝᴚ","block.pyrite.black_stained_button":"nottuB dǝnᴉaʇS ʞɔɐןᗺ","block.pyrite.black_stained_stairs":"sɹiatS dǝnᴉaʇS ʞɔɐןᗺ","block.pyrite.black_stained_slab":"balS dǝnᴉaʇS ʞɔɐןᗺ","block.pyrite.black_stained_pressure_plate":"etalP erusseɹԀ dǝnᴉaʇS ʞɔɐןᗺ","block.pyrite.black_stained_fence":"ecneℲ dǝnᴉaʇS ʞɔɐןᗺ","block.pyrite.black_stained_fence_gate":"eta⅁ ecneℲ dǝnᴉaʇS ʞɔɐןᗺ","block.pyrite.black_stained_planks":"sknalԀ dǝnᴉaʇS ʞɔɐןᗺ","block.pyrite.black_stained_crafting_table":"elba⟘ ᵷnitɟaɹƆ dǝnᴉaʇS ʞɔɐןᗺ","block.pyrite.black_stained_ladder":"ɹeddaꞀ dǝnᴉaʇS ʞɔɐןᗺ","block.pyrite.black_stained_door":"ɹooᗡ dǝnᴉaʇS ʞɔɐןᗺ","block.pyrite.black_stained_sign":"nᵷiS dǝnᴉaʇS ʞɔɐןᗺ","block.pyrite.black_stained_hanging_sign":"ngiS gniᵷnaH dǝnᴉaʇS ʞɔɐןᗺ","block.pyrite.black_stained_trapdoor":"roodpaɹ⟘ dǝnᴉaʇS ʞɔɐןᗺ","block.pyrite.black_bricks":"skcᴉɹB ʞɔɐןᗺ","block.pyrite.black_brick_slab":"balS kcᴉɹB ʞɔɐןᗺ","block.pyrite.black_brick_stairs":"sriaʇS kcᴉɹB ʞɔɐןᗺ","block.pyrite.black_brick_wall":"llaM kcᴉɹB ʞɔɐןᗺ","block.pyrite.black_brick_wall_gate":"ǝʇa⅁ llaM kcᴉɹB ʞɔɐןᗺ","block.pyrite.black_terracotta_bricks":"skcᴉrB atʇocarɹǝ⟘ ʞɔɐןᗺ","block.pyrite.black_terracotta_brick_slab":"balS kcᴉrB atʇocarɹǝ⟘ ʞɔɐןᗺ","block.pyrite.black_terracotta_brick_stairs":"sriatS kcᴉrB atʇocarɹǝ⟘ ʞɔɐןᗺ","block.pyrite.black_terracotta_brick_wall":"llaM kcᴉrB atʇocarɹǝ⟘ ʞɔɐןᗺ","block.pyrite.black_terracotta_brick_wall_gate":"eta⅁ llaM kcᴉrB atʇocarɹǝ⟘ ʞɔɐןᗺ","block.pyrite.black_lamp":"dɯaꞀ ʞɔɐןᗺ","block.pyrite.black_torch":"ɥcɹo⟘ ʞɔɐןᗺ","block.pyrite.black_torch_lever":"reʌǝꞀ ɥcɹo⟘ ʞɔɐןᗺ","block.pyrite.black_framed_glass":"ssal⅁ dǝɯaɹℲ ʞɔɐןᗺ","block.pyrite.black_framed_glass_pane":"enaԀ ssal⅁ dǝɯaɹℲ ʞɔɐןᗺ","block.pyrite.glow_stained_button":"nottuᗺ dǝnᴉɐʇS ʍoן⅁","block.pyrite.glow_stained_stairs":"sɹiatS dǝnᴉɐʇS ʍoן⅁","block.pyrite.glow_stained_slab":"balS dǝnᴉɐʇS ʍoן⅁","block.pyrite.glow_stained_pressure_plate":"etalP erusseɹԀ dǝnᴉɐʇS ʍoן⅁","block.pyrite.glow_stained_fence":"eɔneℲ dǝnᴉɐʇS ʍoן⅁","block.pyrite.glow_stained_fence_gate":"etaG eɔneℲ dǝnᴉɐʇS ʍoן⅁","block.pyrite.glow_stained_planks":"sʞnalԀ dǝnᴉɐʇS ʍoן⅁","block.pyrite.glow_stained_crafting_table":"elba⟘ ᵷnitɟaɹƆ dǝnᴉɐʇS ʍoן⅁","block.pyrite.glow_stained_ladder":"ɹeddaꞀ dǝnᴉɐʇS ʍoן⅁","block.pyrite.glow_stained_door":"ɹooᗡ dǝnᴉɐʇS ʍoן⅁","block.pyrite.glow_stained_sign":"nᵷiS dǝnᴉɐʇS ʍoן⅁","block.pyrite.glow_stained_hanging_sign":"ngiS gniᵷnaH dǝnᴉɐʇS ʍoן⅁","block.pyrite.glow_stained_trapdoor":"roodpaɹ⟘ dǝnᴉɐʇS ʍoן⅁","block.pyrite.glow_bricks":"sʞɔᴉɹᗺ ʍoן⅁","block.pyrite.glow_brick_slab":"bɐlS ʞɔᴉɹᗺ ʍoן⅁","block.pyrite.glow_brick_stairs":"sriɐʇS ʞɔᴉɹᗺ ʍoן⅁","block.pyrite.glow_brick_wall":"llɐM ʞɔᴉɹᗺ ʍoן⅁","block.pyrite.glow_brick_wall_gate":"ǝʇaG llɐM ʞɔᴉɹᗺ ʍoן⅁","block.pyrite.glow_terracotta_bricks":"sʞcᴉrᗺ atʇoɔɐrɹǝ⟘ ʍoן⅁","block.pyrite.glow_terracotta_brick_slab":"balS ʞcᴉrᗺ atʇoɔɐrɹǝ⟘ ʍoן⅁","block.pyrite.glow_terracotta_brick_stairs":"sriatS ʞcᴉrᗺ atʇoɔɐrɹǝ⟘ ʍoן⅁","block.pyrite.glow_terracotta_brick_wall":"llaM ʞcᴉrᗺ atʇoɔɐrɹǝ⟘ ʍoן⅁","block.pyrite.glow_terracotta_brick_wall_gate":"etaG llaM ʞcᴉrᗺ atʇoɔɐrɹǝ⟘ ʍoן⅁","block.pyrite.glow_lamp":"dɯɐꞀ ʍoן⅁","block.pyrite.glow_torch":"ɥɔɹo⟘ ʍoן⅁","block.pyrite.glow_torch_lever":"reʌǝꞀ ɥɔɹo⟘ ʍoן⅁","block.pyrite.glow_framed_glass":"ssalG dǝɯɐɹℲ ʍoן⅁","block.pyrite.glow_framed_glass_pane":"enaԀ ssalG dǝɯɐɹℲ ʍoן⅁","block.pyrite.dragon_stained_button":"nottuᗺ dǝnᴉaʇS noᵷɐɹᗡ","block.pyrite.dragon_stained_stairs":"sriatS dǝnᴉaʇS noᵷɐɹᗡ","block.pyrite.dragon_stained_slab":"baןS dǝnᴉaʇS noᵷɐɹᗡ","block.pyrite.dragon_stained_pressure_plate":"etaןP erusserԀ dǝnᴉaʇS noᵷɐɹᗡ","block.pyrite.dragon_stained_fence":"eɔneℲ dǝnᴉaʇS noᵷɐɹᗡ","block.pyrite.dragon_stained_fence_gate":"eta⅁ eɔneℲ dǝnᴉaʇS noᵷɐɹᗡ","block.pyrite.dragon_stained_planks":"sʞnaןԀ dǝnᴉaʇS noᵷɐɹᗡ","block.pyrite.dragon_stained_crafting_table":"eןba⟘ gnitɟarƆ dǝnᴉaʇS noᵷɐɹᗡ","block.pyrite.dragon_stained_ladder":"reddaꞀ dǝnᴉaʇS noᵷɐɹᗡ","block.pyrite.dragon_stained_door":"rooD dǝnᴉaʇS noᵷɐɹᗡ","block.pyrite.dragon_stained_sign":"ngiS dǝnᴉaʇS noᵷɐɹᗡ","block.pyrite.dragon_stained_hanging_sign":"ngiS gnignaH dǝnᴉaʇS noᵷɐɹᗡ","block.pyrite.dragon_stained_trapdoor":"roodpar⟘ dǝnᴉaʇS noᵷɐɹᗡ","block.pyrite.dragon_bricks":"sʞɔᴉrᗺ noᵷɐɹᗡ","block.pyrite.dragon_brick_slab":"baןS ʞɔᴉrᗺ noᵷɐɹᗡ","block.pyrite.dragon_brick_stairs":"sriaʇS ʞɔᴉrᗺ noᵷɐɹᗡ","block.pyrite.dragon_brick_wall":"lןaM ʞɔᴉrᗺ noᵷɐɹᗡ","block.pyrite.dragon_brick_wall_gate":"ǝʇa⅁ lןaM ʞɔᴉrᗺ noᵷɐɹᗡ","block.pyrite.dragon_terracotta_bricks":"sʞcᴉrᗺ atʇoɔarrǝ⟘ noᵷɐɹᗡ","block.pyrite.dragon_terracotta_brick_slab":"baןS ʞcᴉrᗺ atʇoɔarrǝ⟘ noᵷɐɹᗡ","block.pyrite.dragon_terracotta_brick_stairs":"sriatS ʞcᴉrᗺ atʇoɔarrǝ⟘ noᵷɐɹᗡ","block.pyrite.dragon_terracotta_brick_wall":"lןaM ʞcᴉrᗺ atʇoɔarrǝ⟘ noᵷɐɹᗡ","block.pyrite.dragon_terracotta_brick_wall_gate":"eta⅁ lןaM ʞcᴉrᗺ atʇoɔarrǝ⟘ noᵷɐɹᗡ","block.pyrite.dragon_lamp":"dɯaꞀ noᵷɐɹᗡ","block.pyrite.dragon_torch":"ɥɔro⟘ noᵷɐɹᗡ","block.pyrite.dragon_torch_lever":"reʌǝꞀ ɥɔro⟘ noᵷɐɹᗡ","block.pyrite.dragon_framed_glass":"ssaן⅁ dǝɯarℲ noᵷɐɹᗡ","block.pyrite.dragon_framed_glass_pane":"enaԀ ssaן⅁ dǝɯarℲ noᵷɐɹᗡ","block.pyrite.star_stained_button":"nottuᗺ dǝnᴉatS ɹɐʇS","block.pyrite.star_stained_stairs":"sriatS dǝnᴉatS ɹɐʇS","block.pyrite.star_stained_slab":"baןS dǝnᴉatS ɹɐʇS","block.pyrite.star_stained_pressure_plate":"etaןP erusserԀ dǝnᴉatS ɹɐʇS","block.pyrite.star_stained_fence":"eɔneℲ dǝnᴉatS ɹɐʇS","block.pyrite.star_stained_fence_gate":"eta⅁ eɔneℲ dǝnᴉatS ɹɐʇS","block.pyrite.star_stained_planks":"sʞnaןԀ dǝnᴉatS ɹɐʇS","block.pyrite.star_stained_crafting_table":"eןba⟘ ᵷnitɟarƆ dǝnᴉatS ɹɐʇS","block.pyrite.star_stained_ladder":"reddaꞀ dǝnᴉatS ɹɐʇS","block.pyrite.star_stained_door":"rooᗡ dǝnᴉatS ɹɐʇS","block.pyrite.star_stained_sign":"nᵷiS dǝnᴉatS ɹɐʇS","block.pyrite.star_stained_hanging_sign":"ngiS gniᵷnaH dǝnᴉatS ɹɐʇS","block.pyrite.star_stained_trapdoor":"roodpar⟘ dǝnᴉatS ɹɐʇS","block.pyrite.star_bricks":"sʞɔᴉrᗺ ɹɐʇS","block.pyrite.star_brick_slab":"baןS ʞɔᴉrᗺ ɹɐʇS","block.pyrite.star_brick_stairs":"sriatS ʞɔᴉrᗺ ɹɐʇS","block.pyrite.star_brick_wall":"lןaM ʞɔᴉrᗺ ɹɐʇS","block.pyrite.star_brick_wall_gate":"ǝta⅁ lןaM ʞɔᴉrᗺ ɹɐʇS","block.pyrite.star_terracotta_bricks":"sʞcᴉrᗺ attoɔarrǝ⟘ ɹɐʇS","block.pyrite.star_terracotta_brick_slab":"baןS ʞcᴉrᗺ attoɔarrǝ⟘ ɹɐʇS","block.pyrite.star_terracotta_brick_stairs":"sriatS ʞcᴉrᗺ attoɔarrǝ⟘ ɹɐʇS","block.pyrite.star_terracotta_brick_wall":"lןaM ʞcᴉrᗺ attoɔarrǝ⟘ ɹɐʇS","block.pyrite.star_terracotta_brick_wall_gate":"eta⅁ lןaM ʞcᴉrᗺ attoɔarrǝ⟘ ɹɐʇS","block.pyrite.star_lamp":"dɯaꞀ ɹɐʇS","block.pyrite.star_torch":"ɥɔro⟘ ɹɐʇS","block.pyrite.star_torch_lever":"reʌǝꞀ ɥɔro⟘ ɹɐʇS","block.pyrite.star_framed_glass":"ssaן⅁ dǝɯarℲ ɹɐʇS","block.pyrite.star_framed_glass_pane":"enaԀ ssaן⅁ dǝɯarℲ ɹɐʇS","block.pyrite.honey_stained_button":"nottuᗺ denᴉɐʇS ʎǝnoH","block.pyrite.honey_stained_stairs":"sɹiatS denᴉɐʇS ʎǝnoH","block.pyrite.honey_stained_slab":"baןS denᴉɐʇS ʎǝnoH","block.pyrite.honey_stained_pressure_plate":"etaןP erusseɹԀ denᴉɐʇS ʎǝnoH","block.pyrite.honey_stained_fence":"eɔneℲ denᴉɐʇS ʎǝnoH","block.pyrite.honey_stained_fence_gate":"eta⅁ eɔneℲ denᴉɐʇS ʎǝnoH","block.pyrite.honey_stained_planks":"sʞnaןԀ denᴉɐʇS ʎǝnoH","block.pyrite.honey_stained_crafting_table":"eןba⟘ ᵷnitɟaɹƆ denᴉɐʇS ʎǝnoH","block.pyrite.honey_stained_ladder":"ɹeddaꞀ denᴉɐʇS ʎǝnoH","block.pyrite.honey_stained_door":"ɹooᗡ denᴉɐʇS ʎǝnoH","block.pyrite.honey_stained_sign":"nᵷiS denᴉɐʇS ʎǝnoH","block.pyrite.honey_stained_hanging_sign":"ngiS gniᵷnaH denᴉɐʇS ʎǝnoH","block.pyrite.honey_stained_trapdoor":"roodpaɹ⟘ denᴉɐʇS ʎǝnoH","block.pyrite.honey_bricks":"sʞɔᴉɹᗺ ʎǝnoH","block.pyrite.honey_brick_slab":"bɐןS ʞɔᴉɹᗺ ʎǝnoH","block.pyrite.honey_brick_stairs":"sriɐʇS ʞɔᴉɹᗺ ʎǝnoH","block.pyrite.honey_brick_wall":"lןɐM ʞɔᴉɹᗺ ʎǝnoH","block.pyrite.honey_brick_wall_gate":"eʇa⅁ lןɐM ʞɔᴉɹᗺ ʎǝnoH","block.pyrite.honey_terracotta_bricks":"sʞcᴉrᗺ atʇoɔɐrɹe⟘ ʎǝnoH","block.pyrite.honey_terracotta_brick_slab":"baןS ʞcᴉrᗺ atʇoɔɐrɹe⟘ ʎǝnoH","block.pyrite.honey_terracotta_brick_stairs":"sriatS ʞcᴉrᗺ atʇoɔɐrɹe⟘ ʎǝnoH","block.pyrite.honey_terracotta_brick_wall":"lןaM ʞcᴉrᗺ atʇoɔɐrɹe⟘ ʎǝnoH","block.pyrite.honey_terracotta_brick_wall_gate":"eta⅁ lןaM ʞcᴉrᗺ atʇoɔɐrɹe⟘ ʎǝnoH","block.pyrite.honey_lamp":"dɯɐꞀ ʎǝnoH","block.pyrite.honey_torch":"ɥɔɹo⟘ ʎǝnoH","block.pyrite.honey_torch_lever":"reʌeꞀ ɥɔɹo⟘ ʎǝnoH","block.pyrite.honey_framed_glass":"ssaן⅁ deɯɐɹℲ ʎǝnoH","block.pyrite.honey_framed_glass_pane":"enaԀ ssaן⅁ deɯɐɹℲ ʎǝnoH","block.pyrite.nostalgia_stained_button":"nottuᗺ dǝniatS aᴉᵷןɐʇsoN","block.pyrite.nostalgia_stained_stairs":"sɹiatS dǝniatS aᴉᵷןɐʇsoN","block.pyrite.nostalgia_stained_slab":"balS dǝniatS aᴉᵷןɐʇsoN","block.pyrite.nostalgia_stained_pressure_plate":"etalP erusseɹԀ dǝniatS aᴉᵷןɐʇsoN","block.pyrite.nostalgia_stained_fence":"eɔneℲ dǝniatS aᴉᵷןɐʇsoN","block.pyrite.nostalgia_stained_fence_gate":"eta⅁ eɔneℲ dǝniatS aᴉᵷןɐʇsoN","block.pyrite.nostalgia_stained_planks":"sʞnalԀ dǝniatS aᴉᵷןɐʇsoN","block.pyrite.nostalgia_stained_crafting_table":"elba⟘ gnitɟaɹƆ dǝniatS aᴉᵷןɐʇsoN","block.pyrite.nostalgia_stained_ladder":"ɹeddaꞀ dǝniatS aᴉᵷןɐʇsoN","block.pyrite.nostalgia_stained_door":"ɹooᗡ dǝniatS aᴉᵷןɐʇsoN","block.pyrite.nostalgia_stained_sign":"ngiS dǝniatS aᴉᵷןɐʇsoN","block.pyrite.nostalgia_stained_hanging_sign":"ngiS gnignaH dǝniatS aᴉᵷןɐʇsoN","block.pyrite.nostalgia_stained_trapdoor":"roodpaɹ⟘ dǝniatS aᴉᵷןɐʇsoN","block.pyrite.nostalgia_bricks":"sʞɔiɹᗺ aᴉᵷןɐʇsoN","block.pyrite.nostalgia_brick_slab":"balS ʞɔiɹᗺ aᴉᵷןɐʇsoN","block.pyrite.nostalgia_brick_stairs":"sriatS ʞɔiɹᗺ aᴉᵷןɐʇsoN","block.pyrite.nostalgia_brick_wall":"llaM ʞɔiɹᗺ aᴉᵷןɐʇsoN","block.pyrite.nostalgia_brick_wall_gate":"ǝta⅁ llaM ʞɔiɹᗺ aᴉᵷןɐʇsoN","block.pyrite.nostalgia_terracotta_bricks":"sʞcirᗺ attoɔarɹǝ⟘ aᴉᵷןɐʇsoN","block.pyrite.nostalgia_terracotta_brick_slab":"balS ʞcirᗺ attoɔarɹǝ⟘ aᴉᵷןɐʇsoN","block.pyrite.nostalgia_terracotta_brick_stairs":"sriatS ʞcirᗺ attoɔarɹǝ⟘ aᴉᵷןɐʇsoN","block.pyrite.nostalgia_terracotta_brick_wall":"llaM ʞcirᗺ attoɔarɹǝ⟘ aᴉᵷןɐʇsoN","block.pyrite.nostalgia_terracotta_brick_wall_gate":"eta⅁ llaM ʞcirᗺ attoɔarɹǝ⟘ aᴉᵷןɐʇsoN","block.pyrite.nostalgia_lamp":"dɯaꞀ aᴉᵷןɐʇsoN","block.pyrite.nostalgia_torch":"ɥɔɹo⟘ aᴉᵷןɐʇsoN","block.pyrite.nostalgia_torch_lever":"reʌǝꞀ ɥɔɹo⟘ aᴉᵷןɐʇsoN","block.pyrite.nostalgia_framed_glass":"ssal⅁ dǝɯaɹℲ aᴉᵷןɐʇsoN","block.pyrite.nostalgia_framed_glass_pane":"enaԀ ssal⅁ dǝɯaɹℲ aᴉᵷןɐʇsoN","block.pyrite.rose_stained_button":"nottuᗺ denᴉɐʇS ǝsoᴚ","block.pyrite.rose_stained_stairs":"sɹiatS denᴉɐʇS ǝsoᴚ","block.pyrite.rose_stained_slab":"baןS denᴉɐʇS ǝsoᴚ","block.pyrite.rose_stained_pressure_plate":"etaןP erusseɹԀ denᴉɐʇS ǝsoᴚ","block.pyrite.rose_stained_fence":"eɔneℲ denᴉɐʇS ǝsoᴚ","block.pyrite.rose_stained_fence_gate":"eta⅁ eɔneℲ denᴉɐʇS ǝsoᴚ","block.pyrite.rose_stained_planks":"sʞnaןԀ denᴉɐʇS ǝsoᴚ","block.pyrite.rose_stained_crafting_table":"eןba⟘ ᵷnitɟaɹƆ denᴉɐʇS ǝsoᴚ","block.pyrite.rose_stained_ladder":"ɹeddaꞀ denᴉɐʇS ǝsoᴚ","block.pyrite.rose_stained_door":"ɹooᗡ denᴉɐʇS ǝsoᴚ","block.pyrite.rose_stained_sign":"nᵷiS denᴉɐʇS ǝsoᴚ","block.pyrite.rose_stained_hanging_sign":"ngiS gniᵷnaH denᴉɐʇS ǝsoᴚ","block.pyrite.rose_stained_trapdoor":"roodpaɹ⟘ denᴉɐʇS ǝsoᴚ","block.pyrite.rose_bricks":"sʞɔᴉɹᗺ ǝsoᴚ","block.pyrite.rose_brick_slab":"bɐןS ʞɔᴉɹᗺ ǝsoᴚ","block.pyrite.rose_brick_stairs":"sriɐʇS ʞɔᴉɹᗺ ǝsoᴚ","block.pyrite.rose_brick_wall":"lןɐM ʞɔᴉɹᗺ ǝsoᴚ","block.pyrite.rose_brick_wall_gate":"eʇa⅁ lןɐM ʞɔᴉɹᗺ ǝsoᴚ","block.pyrite.rose_terracotta_bricks":"sʞcᴉrᗺ atʇoɔɐrɹe⟘ ǝsoᴚ","block.pyrite.rose_terracotta_brick_slab":"baןS ʞcᴉrᗺ atʇoɔɐrɹe⟘ ǝsoᴚ","block.pyrite.rose_terracotta_brick_stairs":"sriatS ʞcᴉrᗺ atʇoɔɐrɹe⟘ ǝsoᴚ","block.pyrite.rose_terracotta_brick_wall":"lןaM ʞcᴉrᗺ atʇoɔɐrɹe⟘ ǝsoᴚ","block.pyrite.rose_terracotta_brick_wall_gate":"eta⅁ lןaM ʞcᴉrᗺ atʇoɔɐrɹe⟘ ǝsoᴚ","block.pyrite.rose_lamp":"dɯɐꞀ ǝsoᴚ","block.pyrite.rose_torch":"ɥɔɹo⟘ ǝsoᴚ","block.pyrite.rose_torch_lever":"reʌeꞀ ɥɔɹo⟘ ǝsoᴚ","block.pyrite.rose_framed_glass":"ssaן⅁ deɯɐɹℲ ǝsoᴚ","block.pyrite.rose_framed_glass_pane":"enaԀ ssaן⅁ deɯɐɹℲ ǝsoᴚ","block.pyrite.poisonous_stained_button":"nottuᗺ dǝniɐʇS suonosᴉoԀ","block.pyrite.poisonous_stained_stairs":"sɹiatS dǝniɐʇS suonosᴉoԀ","block.pyrite.poisonous_stained_slab":"baןS dǝniɐʇS suonosᴉoԀ","block.pyrite.poisonous_stained_pressure_plate":"etaןP erusseɹP dǝniɐʇS suonosᴉoԀ","block.pyrite.poisonous_stained_fence":"eɔneℲ dǝniɐʇS suonosᴉoԀ","block.pyrite.poisonous_stained_fence_gate":"eta⅁ eɔneℲ dǝniɐʇS suonosᴉoԀ","block.pyrite.poisonous_stained_planks":"sʞnaןP dǝniɐʇS suonosᴉoԀ","block.pyrite.poisonous_stained_crafting_table":"eןba⟘ ᵷnitɟaɹƆ dǝniɐʇS suonosᴉoԀ","block.pyrite.poisonous_stained_ladder":"ɹeddaꞀ dǝniɐʇS suonosᴉoԀ","block.pyrite.poisonous_stained_door":"ɹooᗡ dǝniɐʇS suonosᴉoԀ","block.pyrite.poisonous_stained_sign":"nᵷiS dǝniɐʇS suonosᴉoԀ","block.pyrite.poisonous_stained_hanging_sign":"ngiS gniᵷnaH dǝniɐʇS suonosᴉoԀ","block.pyrite.poisonous_stained_trapdoor":"roodpaɹ⟘ dǝniɐʇS suonosᴉoԀ","block.pyrite.poisonous_bricks":"sʞɔiɹᗺ suonosᴉoԀ","block.pyrite.poisonous_brick_slab":"bɐןS ʞɔiɹᗺ suonosᴉoԀ","block.pyrite.poisonous_brick_stairs":"sriɐʇS ʞɔiɹᗺ suonosᴉoԀ","block.pyrite.poisonous_brick_wall":"lןɐM ʞɔiɹᗺ suonosᴉoԀ","block.pyrite.poisonous_brick_wall_gate":"ǝʇa⅁ lןɐM ʞɔiɹᗺ suonosᴉoԀ","block.pyrite.poisonous_terracotta_bricks":"sʞcirᗺ atʇoɔɐrɹǝ⟘ suonosᴉoԀ","block.pyrite.poisonous_terracotta_brick_slab":"baןS ʞcirᗺ atʇoɔɐrɹǝ⟘ suonosᴉoԀ","block.pyrite.poisonous_terracotta_brick_stairs":"sriatS ʞcirᗺ atʇoɔɐrɹǝ⟘ suonosᴉoԀ","block.pyrite.poisonous_terracotta_brick_wall":"lןaM ʞcirᗺ atʇoɔɐrɹǝ⟘ suonosᴉoԀ","block.pyrite.poisonous_terracotta_brick_wall_gate":"eta⅁ lןaM ʞcirᗺ atʇoɔɐrɹǝ⟘ suonosᴉoԀ","block.pyrite.poisonous_lamp":"dɯɐꞀ suonosᴉoԀ","block.pyrite.poisonous_torch":"ɥɔɹo⟘ suonosᴉoԀ","block.pyrite.poisonous_torch_lever":"reʌǝꞀ ɥɔɹo⟘ suonosᴉoԀ","block.pyrite.poisonous_framed_glass":"ssaן⅁ dǝɯɐɹℲ suonosᴉoԀ","block.pyrite.poisonous_framed_glass_pane":"enaP ssaן⅁ dǝɯɐɹℲ suonosᴉoԀ","block.pyrite.spruce_crafting_table":"eןba⟘ ᵷuᴉʇɟɐrƆ ǝɔnɹdS","block.pyrite.birch_crafting_table":"ǝןba⟘ ᵷniʇɟɐrƆ ɥɔɹᴉᗺ","block.pyrite.jungle_crafting_table":"elba⟘ gnᴉʇɟɐɹƆ ǝןᵷunՐ","block.pyrite.acacia_crafting_table":"ǝןba⟘ ᵷniʇɟaɹƆ aᴉcɐɔⱯ","block.pyrite.dark_oak_crafting_table":"ǝןba⟘ ᵷnᴉʇɟarƆ kaO ʞɹɐᗡ","block.pyrite.mangrove_crafting_table":"eןba⟘ gnᴉʇɟarƆ ǝʌoɹᵷnɐM","block.pyrite.cherry_crafting_table":"eןba⟘ ᵷnᴉʇɟɐrC ʎrɹǝɥƆ","block.pyrite.bamboo_crafting_table":"ǝןba⟘ ᵷnᴉʇɟaɹƆ oobɯɐᗺ","block.pyrite.crimson_crafting_table":"ǝןba⟘ ᵷniʇɟɐrC nosɯᴉɹƆ","block.pyrite.warped_crafting_table":"eןba⟘ ᵷnᴉʇɟarƆ pǝdɹɐM","block.pyrite.skyroot_crafting_table":"ǝןba⟘ ᵷnᴉtɟɐrƆ ʇooɹʎʞS","block.pyrite.holystone_wall_gate":"eta⅁ llɐM ǝnoʇsʎןoH","block.pyrite.mossy_holystone_wall_gate":"eta⅁ llɐW ǝnoʇsyןoH ʎssoM","block.pyrite.holystone_brick_wall_gate":"eta⅁ llɐM ʞɔᴉɹᗺ ǝnoʇsʎןoH","block.pyrite.icestone_wall_gate":"eta⅁ lןɐM enoʇsǝɔI","block.pyrite.aerogel_wall_gate":"eʇa⅁ llɐM ןeᵷoɹǝⱯ","block.pyrite.carved_wall_gate":"eʇa⅁ lןaM dǝʌɹɐƆ","block.pyrite.angelic_wall_gate":"eʇa⅁ llɐM ɔᴉןǝᵷnⱯ","block.pyrite.hellfire_wall_gate":"eʇa⅁ llɐM eɹᴉɟlןǝH","block.pyrite.red_mushroom_button":"uotʇuᗺ ɯooɹɥsnM dǝᴚ","block.pyrite.red_mushroom_stairs":"srᴉɐʇS ɯooɹɥsnM dǝᴚ","block.pyrite.red_mushroom_slab":"bɐןS ɯooɹɥsnM dǝᴚ","block.pyrite.red_mushroom_pressure_plate":"eʇɐןP erusserԀ ɯooɹɥsnM dǝᴚ","block.pyrite.red_mushroom_fence":"eɔueℲ ɯooɹɥsnM dǝᴚ","block.pyrite.red_mushroom_fence_gate":"eʇɐ⅁ eɔueℲ ɯooɹɥsnM dǝᴚ","block.pyrite.red_mushroom_planks":"sʞuɐןԀ ɯooɹɥsnM dǝᴚ","block.pyrite.red_mushroom_crafting_table":"eןba⟘ ᵷuᴉʇɟɐrƆ ɯooɹɥsnM dǝᴚ","block.pyrite.red_mushroom_ladder":"reddɐꞀ ɯooɹɥsnM dǝᴚ","block.pyrite.red_mushroom_door":"rooᗡ ɯooɹɥsnM dǝᴚ","block.pyrite.red_mushroom_sign":"uᵷᴉS ɯooɹɥsnM dǝᴚ","block.pyrite.red_mushroom_hanging_sign":"ngiS gnᴉᵷuɐH ɯooɹɥsnM dǝᴚ","block.pyrite.red_mushroom_trapdoor":"roodpɐr⟘ ɯooɹɥsnM dǝᴚ","block.pyrite.red_mushroom_stem":"meʇS ɯooɹɥsnM dǝᴚ","block.pyrite.brown_mushroom_button":"notʇuB ɯoorɥsuM nʍoɹᗺ","block.pyrite.brown_mushroom_stairs":"srᴉɐʇS ɯoorɥsuM nʍoɹᗺ","block.pyrite.brown_mushroom_slab":"bɐןS ɯoorɥsuM nʍoɹᗺ","block.pyrite.brown_mushroom_pressure_plate":"eʇɐןP erussǝrԀ ɯoorɥsuM nʍoɹᗺ","block.pyrite.brown_mushroom_fence":"eɔnǝℲ ɯoorɥsuM nʍoɹᗺ","block.pyrite.brown_mushroom_fence_gate":"eʇɐ⅁ eɔnǝℲ ɯoorɥsuM nʍoɹᗺ","block.pyrite.brown_mushroom_planks":"sʞnɐןԀ ɯoorɥsuM nʍoɹᗺ","block.pyrite.brown_mushroom_crafting_table":"ǝןba⟘ ᵷnᴉʇɟɐrƆ ɯoorɥsuM nʍoɹᗺ","block.pyrite.brown_mushroom_ladder":"rǝddɐꞀ ɯoorɥsuM nʍoɹᗺ","block.pyrite.brown_mushroom_door":"rooᗡ ɯoorɥsuM nʍoɹᗺ","block.pyrite.brown_mushroom_sign":"nᵷᴉS ɯoorɥsuM nʍoɹᗺ","block.pyrite.brown_mushroom_hanging_sign":"ngiS gnᴉᵷnɐH ɯoorɥsuM nʍoɹᗺ","block.pyrite.brown_mushroom_trapdoor":"roopdɐr⟘ ɯoorɥsuM nʍoɹᗺ","block.pyrite.brown_mushroom_stem":"mǝʇS ɯoorɥsuM nʍoɹᗺ","block.pyrite.cobblestone_bricks":"sʞɔᴉɹᗺ enoʇsǝןbboƆ","block.pyrite.cobblestone_brick_slab":"bɐlS ʞɔᴉɹᗺ enoʇsǝןbboƆ","block.pyrite.cobblestone_brick_stairs":"sriɐtS ʞɔᴉɹᗺ enoʇsǝןbboƆ","block.pyrite.cobblestone_brick_wall":"llɐM ʞɔᴉɹᗺ enoʇsǝןbboƆ","block.pyrite.cobblestone_brick_wall_gate":"eta⅁ llɐM ʞɔᴉɹᗺ enoʇsǝןbboƆ","block.pyrite.mossy_cobblestone_bricks":"sʞɔᴉɹᗺ enoʇsǝןbboƆ ʎssoM","block.pyrite.mossy_cobblestone_brick_slab":"bɐlS ʞɔᴉɹᗺ enoʇsǝןbboƆ ʎssoM","block.pyrite.mossy_cobblestone_brick_stairs":"sriɐtS ʞɔᴉɹᗺ enoʇsǝןbboƆ ʎssoM","block.pyrite.mossy_cobblestone_brick_wall":"llɐW ʞɔᴉɹᗺ enoʇsǝןbboƆ ʎssoM","block.pyrite.mossy_cobblestone_brick_wall_gate":"eta⅁ llɐW ʞɔᴉɹᗺ enoʇsǝןbboƆ ʎssoM","block.pyrite.smooth_stone_bricks":"sʞɔᴉɹᗺ ǝnotS ɥʇooɯS","block.pyrite.smooth_stone_brick_slab":"bɐןS ʞɔᴉɹᗺ ǝnotS ɥʇooɯS","block.pyrite.smooth_stone_brick_stairs":"sriɐtS ʞɔᴉɹᗺ ǝnotS ɥʇooɯS","block.pyrite.smooth_stone_brick_wall":"lןɐM ʞɔᴉɹᗺ ǝnotS ɥʇooɯS","block.pyrite.smooth_stone_brick_wall_gate":"eta⅁ lןɐM ʞɔᴉɹᗺ ǝnotS ɥʇooɯS","block.pyrite.nostalgia_cobblestone":"enotsǝlbboƆ aᴉᵷןɐʇsoN","block.pyrite.nostalgia_mossy_cobblestone":"enotsǝlbboƆ ʎssoM aᴉᵷןɐʇsoN","block.pyrite.nostalgia_netherrack":"ʞɔarɹeɥtǝN aᴉᵷןɐʇsoN","block.pyrite.nostalgia_gravel":"lǝʌaɹ⅁ aᴉᵷןɐʇsoN","block.pyrite.nostalgia_grass_block":"ʞɔolᗺ ssaɹ⅁ aᴉᵷןɐʇsoN","block.pyrite.framed_glass":"ssaן⅁ dǝɯɐɹℲ","block.pyrite.framed_glass_pane":"enaԀ ssaן⅁ dǝɯɐɹℲ","block.pyrite.nostalgia_grass_turf":"ɟrn⟘ ssaɹ⅁ aᴉᵷןɐʇsoN","block.pyrite.nostalgia_grass_slab":"balS ssaɹ⅁ aᴉᵷןɐʇsoN","block.pyrite.nostalgia_grass_stairs":"sriatS ssaɹ⅁ aᴉᵷןɐʇsoN","block.pyrite.nostalgia_grass_carpet":"tǝdraƆ ssaɹ⅁ aᴉᵷןɐʇsoN","block.pyrite.podzol_turf":"ɟɹn⟘ ןozdoԀ","block.pyrite.podzol_slab":"bɐlS ןozdoԀ","block.pyrite.podzol_stairs":"sɹᴉɐʇS ןozdoԀ","block.pyrite.podzol_carpet":"ʇǝpɹɐƆ ןozdoԀ","block.pyrite.grass_turf":"ɟrn⟘ ssɐɹ⅁","block.pyrite.grass_slab":"baןS ssɐɹ⅁","block.pyrite.grass_stairs":"srᴉaʇS ssɐɹ⅁","block.pyrite.grass_carpet":"ʇǝdraƆ ssɐɹ⅁","block.pyrite.mycelium_turf":"ɟɹu⟘ ɯnᴉןǝɔʎM","block.pyrite.mycelium_slab":"bɐlS ɯnᴉןǝɔʎM","block.pyrite.mycelium_stairs":"sɹiɐʇS ɯnᴉןǝɔʎM","block.pyrite.mycelium_carpet":"ʇedɹɐƆ ɯnᴉןǝɔʎM","block.pyrite.path_turf":"ɟɹn⟘ ɥʇɐԀ","block.pyrite.path_slab":"baןS ɥʇɐԀ","block.pyrite.path_stairs":"sɹᴉatS ɥʇɐԀ","block.pyrite.path_carpet":"tǝdɹaƆ ɥʇɐԀ","block.pyrite.white_concrete_slab":"bɐןS eteɹɔnoƆ ǝʇᴉɥM","block.pyrite.white_concrete_stairs":"sriɐtS eteɹɔnoƆ ǝʇᴉɥM","block.pyrite.orange_concrete_slab":"baןS eʇerɔnoƆ ǝᵷnɐɹO","block.pyrite.orange_concrete_stairs":"srᴉatS eʇerɔnoƆ ǝᵷnɐɹO","block.pyrite.magenta_concrete_slab":"baןS eteɹɔnoƆ aʇnǝᵷɐM","block.pyrite.magenta_concrete_stairs":"srᴉatS eteɹɔnoƆ aʇnǝᵷɐM","block.pyrite.light_blue_concrete_slab":"bɐlS eteɹɔuoƆ ǝnןᗺ ʇɥᵷᴉꞀ","block.pyrite.light_blue_concrete_stairs":"sriɐtS eteɹɔuoƆ ǝnןᗺ ʇɥᵷᴉꞀ","block.pyrite.yellow_concrete_slab":"bɐlS eʇeɹɔnoƆ ʍolןǝ⅄","block.pyrite.yellow_concrete_stairs":"srᴉɐtS eʇeɹɔnoƆ ʍolןǝ⅄","block.pyrite.lime_concrete_slab":"bɐןS eʇeɹɔnoƆ ǝɯᴉꞀ","block.pyrite.lime_concrete_stairs":"sriɐtS eʇeɹɔnoƆ ǝɯᴉꞀ","block.pyrite.pink_concrete_slab":"bɐןS eʇǝɹɔnoƆ ʞnᴉԀ","block.pyrite.pink_concrete_stairs":"sriɐtS eʇǝɹɔnoƆ ʞnᴉԀ","block.pyrite.gray_concrete_slab":"baןS eʇǝrɔnoƆ ʎɐɹ⅁","block.pyrite.gray_concrete_stairs":"srᴉatS eʇǝrɔnoƆ ʎɐɹ⅁","block.pyrite.light_gray_concrete_slab":"baןS etǝrɔnoƆ ʎɐɹ⅁ ʇɥᵷᴉꞀ","block.pyrite.light_gray_concrete_stairs":"sriatS etǝrɔnoƆ ʎɐɹ⅁ ʇɥᵷᴉꞀ","block.pyrite.cyan_concrete_slab":"baןS eʇǝɹɔnoC nɐʎƆ","block.pyrite.cyan_concrete_stairs":"srᴉatS eʇǝɹɔnoC nɐʎƆ","block.pyrite.purple_concrete_slab":"bɐlS eʇerɔuoƆ ǝןdɹnԀ","block.pyrite.purple_concrete_stairs":"srᴉɐtS eʇerɔuoƆ ǝןdɹnԀ","block.pyrite.blue_concrete_slab":"bɐlS eʇeɹɔuoƆ ǝnןᗺ","block.pyrite.blue_concrete_stairs":"srᴉɐtS eʇeɹɔuoƆ ǝnןᗺ","block.pyrite.brown_concrete_slab":"bɐןS eʇǝrɔnoƆ nʍoɹᗺ","block.pyrite.brown_concrete_stairs":"srᴉɐtS eʇǝrɔnoƆ nʍoɹᗺ","block.pyrite.green_concrete_slab":"bɐןS eʇerɔnoƆ neǝɹ⅁","block.pyrite.green_concrete_stairs":"srᴉɐtS eʇerɔnoƆ neǝɹ⅁","block.pyrite.red_concrete_slab":"bɐןS eʇeɹɔnoƆ dǝᴚ","block.pyrite.red_concrete_stairs":"srᴉɐtS eʇeɹɔnoƆ dǝᴚ","block.pyrite.black_concrete_slab":"balS eʇǝɹcnoƆ ʞɔɐןᗺ","block.pyrite.black_concrete_stairs":"srᴉatS eʇǝɹcnoƆ ʞɔɐןᗺ","item.pyrite.glow_dye":"ǝʎᗡ ʍoן⅁","block.pyrite.glow_wool":"looM ʍoן⅁","block.pyrite.glow_carpet":"ʇǝdɹɐƆ ʍoן⅁","block.pyrite.glow_terracotta":"atʇoɔɐrɹǝ⟘ ʍoן⅁","block.pyrite.glow_concrete":"eʇǝɹɔnoƆ ʍoן⅁","block.pyrite.glow_concrete_powder":"redwoԀ eʇǝɹɔnoƆ ʍoן⅁","block.pyrite.glow_concrete_slab":"bɐlS eʇǝɹɔnoƆ ʍoן⅁","block.pyrite.glow_concrete_stairs":"srᴉɐtS eʇǝɹɔnoƆ ʍoן⅁","item.pyrite.dragon_dye":"ǝʎD noᵷɐɹᗡ","block.pyrite.dragon_wool":"ןooM noᵷɐɹᗡ","block.pyrite.dragon_carpet":"ʇǝdraƆ noᵷɐɹᗡ","block.pyrite.dragon_terracotta":"atʇoɔarrǝ⟘ noᵷɐɹᗡ","block.pyrite.dragon_concrete":"eʇǝrɔnoƆ noᵷɐɹᗡ","block.pyrite.dragon_concrete_powder":"redʍoԀ eʇǝrɔnoƆ noᵷɐɹᗡ","block.pyrite.dragon_concrete_slab":"baןS eʇǝrɔnoƆ noᵷɐɹᗡ","block.pyrite.dragon_concrete_stairs":"srᴉatS eʇǝrɔnoƆ noᵷɐɹᗡ","item.pyrite.star_dye":"ǝʎᗡ ɹɐʇS","block.pyrite.star_wool":"ןooM ɹɐʇS","block.pyrite.star_carpet":"tǝdraƆ ɹɐʇS","block.pyrite.star_terracotta":"attoɔarrǝ⟘ ɹɐʇS","block.pyrite.star_concrete":"etǝrɔnoƆ ɹɐʇS","block.pyrite.star_concrete_powder":"redʍoԀ etǝrɔnoƆ ɹɐʇS","block.pyrite.star_concrete_slab":"baןS etǝrɔnoƆ ɹɐʇS","block.pyrite.star_concrete_stairs":"srᴉatS etǝrɔnoƆ ɹɐʇS","item.pyrite.honey_dye":"eyᗡ ʎǝnoH","block.pyrite.honey_wool":"ןooM ʎǝnoH","block.pyrite.honey_carpet":"ʇedɹɐƆ ʎǝnoH","block.pyrite.honey_terracotta":"atʇoɔɐrɹe⟘ ʎǝnoH","block.pyrite.honey_concrete":"eʇeɹɔnoƆ ʎǝnoH","block.pyrite.honey_concrete_powder":"redʍoԀ eʇeɹɔnoƆ ʎǝnoH","block.pyrite.honey_concrete_slab":"bɐןS eʇeɹɔnoƆ ʎǝnoH","block.pyrite.honey_concrete_stairs":"srᴉɐtS eʇeɹɔnoƆ ʎǝnoH","item.pyrite.nostalgia_dye":"ǝʎᗡ aᴉᵷןɐʇsoN","block.pyrite.nostalgia_wool":"looM aᴉᵷןɐʇsoN","block.pyrite.nostalgia_carpet":"tǝdɹaƆ aᴉᵷןɐʇsoN","block.pyrite.nostalgia_terracotta":"attoɔarɹǝ⟘ aᴉᵷןɐʇsoN","block.pyrite.nostalgia_concrete":"etǝɹɔnoƆ aᴉᵷןɐʇsoN","block.pyrite.nostalgia_concrete_powder":"redʍoԀ etǝɹɔnoƆ aᴉᵷןɐʇsoN","block.pyrite.nostalgia_concrete_slab":"balS etǝɹɔnoƆ aᴉᵷןɐʇsoN","block.pyrite.nostalgia_concrete_stairs":"sriatS etǝɹɔnoƆ aᴉᵷןɐʇsoN","item.pyrite.rose_dye":"eʎᗡ ǝsoᴚ","block.pyrite.rose_wool":"ןooM ǝsoᴚ","block.pyrite.rose_carpet":"ʇedɹɐƆ ǝsoᴚ","block.pyrite.rose_terracotta":"atʇoɔɐrɹe⟘ ǝsoᴚ","block.pyrite.rose_concrete":"eʇeɹɔnoƆ ǝsoᴚ","block.pyrite.rose_concrete_powder":"redʍoԀ eʇeɹɔnoƆ ǝsoᴚ","block.pyrite.rose_concrete_slab":"bɐןS eʇeɹɔnoƆ ǝsoᴚ","block.pyrite.rose_concrete_stairs":"srᴉɐtS eʇeɹɔnoƆ ǝsoᴚ","item.pyrite.poisonous_dye":"ǝʎᗡ suonosᴉoԀ","block.pyrite.poisonous_wool":"ןooM suonosᴉoԀ","block.pyrite.poisonous_carpet":"ʇǝdɹɐƆ suonosᴉoԀ","block.pyrite.poisonous_terracotta":"atʇoɔɐrɹǝ⟘ suonosᴉoԀ","block.pyrite.poisonous_concrete":"eʇǝɹɔnoƆ suonosᴉoԀ","block.pyrite.poisonous_concrete_powder":"redʍoP eʇǝɹɔnoƆ suonosᴉoԀ","block.pyrite.poisonous_concrete_slab":"bɐןS eʇǝɹɔnoƆ suonosᴉoԀ","block.pyrite.poisonous_concrete_stairs":"sriɐtS eʇǝɹɔnoƆ suonosᴉoԀ","block.pyrite.glowstone_lamp":"dɯɐꞀ ǝnoʇsʍoן⅁","block.pyrite.lit_redstone_lamp":"pɯɐL enotsdǝᴚ ʇᴉꞀ","block.pyrite.glowing_obsidian":"nɐidisbO ᵷnᴉʍoן⅁","block.pyrite.nostalgia_glowing_obsidian":"naidisbO gniʍol⅁ aᴉᵷןɐʇsoN","block.pyrite.locked_chest":"ʇseɥƆ dǝʞɔoꞀ","block.pyrite.charred_nether_bricks":"sʞɔᴉrᗺ rehʇeN dǝrɹɐɥƆ","block.pyrite.charred_nether_brick_slab":"baןS ʞɔᴉrᗺ rehʇeN dǝrɹɐɥƆ","block.pyrite.charred_nether_brick_stairs":"sriatS ʞɔᴉrᗺ rehʇeN dǝrɹɐɥƆ","block.pyrite.charred_nether_brick_wall":"lןaM ʞɔᴉrᗺ rehʇeN dǝrɹɐɥƆ","block.pyrite.charred_nether_brick_wall_gate":"eta⅁ lןaM ʞɔᴉrᗺ rehʇeN dǝrɹɐɥƆ","block.pyrite.blue_nether_bricks":"sʞɔᴉrB ɹeɥʇeN ǝnןᗺ","block.pyrite.blue_nether_brick_slab":"bɐlS ʞɔᴉrB ɹeɥʇeN ǝnןᗺ","block.pyrite.blue_nether_brick_stairs":"sriɐtS ʞɔᴉrB ɹeɥʇeN ǝnןᗺ","block.pyrite.blue_nether_brick_wall":"llɐM ʞɔᴉrB ɹeɥʇeN ǝnןᗺ","block.pyrite.blue_nether_brick_wall_gate":"eta⅁ llɐM ʞɔᴉrB ɹeɥʇeN ǝnןᗺ","block.pyrite.cobblestone_wall_gate":"eta⅁ llɐM enoʇsǝןbboƆ","block.pyrite.mossy_cobblestone_wall_gate":"eta⅁ llɐW enoʇsǝןbboƆ ʎssoM","block.pyrite.stone_brick_wall_gate":"eta⅁ lןɐM ʞɔᴉɹᗺ ǝnoʇS","block.pyrite.mossy_stone_brick_wall_gate":"eta⅁ lןɐW ʞɔᴉɹᗺ ǝnoʇS ʎssoM","block.pyrite.granite_wall_gate":"etaG lןaM ǝʇᴉnɐɹ⅁","block.pyrite.diorite_wall_gate":"eta⅁ lןɐM ǝʇiɹoᴉᗡ","block.pyrite.andesite_wall_gate":"eta⅁ lןɐM eʇᴉsǝdnⱯ","block.pyrite.cobbled_deepslate_wall_gate":"eta⅁ llaM eʇɐlspeeᗡ dǝןbboƆ","block.pyrite.polished_deepslate_wall_gate":"eta⅁ llaM eʇɐlspeeᗡ dǝɥsᴉןoԀ","block.pyrite.deepslate_brick_wall_gate":"eta⅁ llaM ʞɔᴉɹᗺ eʇɐןsdeǝᗡ","block.pyrite.deepslate_tile_wall_gate":"eta⅁ llaM elᴉ⟘ eʇɐןsdeǝᗡ","block.pyrite.brick_wall_gate":"ǝʇa⅁ lןɐM ʞɔᴉɹᗺ","block.pyrite.mud_brick_wall_gate":"ǝʇa⅁ lןɐW ʞɔᴉɹᗺ dnM","block.pyrite.sandstone_wall_gate":"eta⅁ lןaM ǝnoʇsdnɐS","block.pyrite.red_sandstone_wall_gate":"eta⅁ lןaM enoʇsdnɐS dǝᴚ","block.pyrite.prismarine_wall_gate":"eʇa⅁ lןaM ǝnirɐɯsᴉɹԀ","block.pyrite.nether_brick_wall_gate":"eta⅁ lןɐM ʞɔᴉrᗺ ɹeɥʇǝN","block.pyrite.red_nether_brick_wall_gate":"eta⅁ lןɐM ʞɔᴉrᗺ ɹeɥʇeN dǝᴚ","block.pyrite.blackstone_wall_gate":"eta⅁ llaM ǝnoʇsʞɔɐןᗺ","block.pyrite.polished_blackstone_wall_gate":"eta⅁ llaM enoʇsʞɔɐlᗺ dǝɥsᴉןoԀ","block.pyrite.polished_blackstone_brick_wall_gate":"eta⅁ llaM kciɹB enoʇsʞɔɐlᗺ dǝɥsᴉןoԀ","block.pyrite.end_stone_brick_wall_gate":"eta⅁ lןɐM ʞɔᴉɹᗺ ǝnoʇS dnƎ","block.pyrite.cut_iron":"uoɹI ʇnƆ","block.pyrite.cut_iron_slab":"bɐןS uoɹI ʇnƆ","block.pyrite.cut_iron_stairs":"srᴉɐtS uoɹI ʇnƆ","block.pyrite.cut_iron_wall":"lןɐM uoɹI ʇnƆ","block.pyrite.cut_iron_wall_gate":"ǝta⅁ lןɐM uoɹI ʇnƆ","block.pyrite.smooth_iron":"noɹI ɥʇooɯS","block.pyrite.smooth_iron_slab":"bɐןS noɹI ɥʇooɯS","block.pyrite.smooth_iron_stairs":"srᴉɐtS noɹI ɥʇooɯS","block.pyrite.smooth_iron_wall":"lןɐM noɹI ɥʇooɯS","block.pyrite.smooth_iron_wall_gate":"ǝta⅁ lןɐM noɹI ɥʇooɯS","block.pyrite.iron_bricks":"sʞɔᴉrᗺ noɹI","block.pyrite.iron_pillar":"rɐlןᴉԀ noɹI","block.pyrite.chiseled_iron_block":"ʞɔolᗺ noɹI deןǝsᴉɥƆ","block.pyrite.nostalgia_iron_block":"ʞɔolᗺ noɹI aᴉᵷןɐʇsoN","block.pyrite.iron_button":"notʇuᗺ noɹI","block.pyrite.cut_gold":"dןo⅁ ʇnƆ","block.pyrite.cut_gold_slab":"bɐlS dןo⅁ ʇnƆ","block.pyrite.cut_gold_stairs":"sɹᴉɐtS dןo⅁ ʇnƆ","block.pyrite.cut_gold_wall":"llɐM dןo⅁ ʇnƆ","block.pyrite.cut_gold_wall_gate":"ǝtaG llɐM dןo⅁ ʇnƆ","block.pyrite.smooth_gold":"dןo⅁ ɥʇooɯS","block.pyrite.smooth_gold_slab":"bɐlS dןo⅁ ɥʇooɯS","block.pyrite.smooth_gold_stairs":"sɹᴉɐtS dןo⅁ ɥʇooɯS","block.pyrite.smooth_gold_wall":"llɐM dןo⅁ ɥʇooɯS","block.pyrite.smooth_gold_wall_gate":"ǝtaG llɐM dןo⅁ ɥʇooɯS","block.pyrite.gold_bricks":"sʞɔᴉɹᗺ dןo⅁","block.pyrite.gold_pillar":"ɹɐllᴉԀ dןo⅁","block.pyrite.gold_bars":"sɹɐᗺ dןo⅁","block.pyrite.chiseled_gold_block":"ʞɔolᗺ dlo⅁ deןǝsᴉɥƆ","block.pyrite.gold_door":"ɹooᗡ dןo⅁","block.pyrite.gold_trapdoor":"roodpɐɹ⟘ dןo⅁","block.pyrite.nostalgia_gold_block":"ʞɔolᗺ dlo⅁ aᴉᵷןɐʇsoN","block.pyrite.gold_button":"uotʇnᗺ dןo⅁","block.pyrite.cut_emerald":"dןɐɹǝɯƎ ʇnƆ","block.pyrite.cut_emerald_slab":"balS dןɐɹǝɯƎ ʇnƆ","block.pyrite.cut_emerald_stairs":"srᴉatS dןɐɹǝɯƎ ʇnƆ","block.pyrite.cut_emerald_wall":"llaM dןɐɹǝɯƎ ʇnƆ","block.pyrite.cut_emerald_wall_gate":"eta⅁ llaM dןɐɹǝɯƎ ʇnƆ","block.pyrite.smooth_emerald":"dןɐɹǝmƎ ɥʇooɯS","block.pyrite.smooth_emerald_slab":"balS dןɐɹǝmƎ ɥʇooɯS","block.pyrite.smooth_emerald_stairs":"srᴉatS dןɐɹǝmƎ ɥʇooɯS","block.pyrite.smooth_emerald_wall":"llaM dןɐɹǝmƎ ɥʇooɯS","block.pyrite.smooth_emerald_wall_gate":"eta⅁ llaM dןɐɹǝmƎ ɥʇooɯS","block.pyrite.emerald_bricks":"sʞɔᴉrᗺ dןɐɹǝɯƎ","block.pyrite.emerald_pillar":"rallᴉԀ dןɐɹǝɯƎ","block.pyrite.emerald_bars":"sraᗺ dןɐɹǝɯƎ","block.pyrite.chiseled_emerald_block":"ʞɔolᗺ dlɐɹeɯƎ deןǝsᴉɥƆ","block.pyrite.emerald_door":"rooᗡ dןɐɹǝɯƎ","block.pyrite.emerald_trapdoor":"roodpar⟘ dןɐɹǝɯƎ","block.pyrite.nostalgia_emerald_block":"ʞɔolᗺ dlaɹǝɯƎ aᴉᵷןɐʇsoN","block.pyrite.emerald_button":"uotʇnᗺ dןɐɹǝɯƎ","block.pyrite.emerald_pressure_plate":"eʇalP ernsserԀ dןɐɹǝɯƎ","block.pyrite.cut_diamond":"duoɯɐᴉᗡ ʇnƆ","block.pyrite.cut_diamond_slab":"baןS duoɯɐᴉᗡ ʇnƆ","block.pyrite.cut_diamond_stairs":"sɹiatS duoɯɐᴉᗡ ʇnƆ","block.pyrite.cut_diamond_wall":"lןaM duoɯɐᴉᗡ ʇnƆ","block.pyrite.cut_diamond_wall_gate":"ǝta⅁ lןaM duoɯɐᴉᗡ ʇnƆ","block.pyrite.smooth_diamond":"dnomɐᴉᗡ ɥʇooɯS","block.pyrite.smooth_diamond_slab":"baןS dnomɐᴉᗡ ɥʇooɯS","block.pyrite.smooth_diamond_stairs":"sɹiatS dnomɐᴉᗡ ɥʇooɯS","block.pyrite.smooth_diamond_wall":"lןaM dnomɐᴉᗡ ɥʇooɯS","block.pyrite.smooth_diamond_wall_gate":"ǝta⅁ lןaM dnomɐᴉᗡ ɥʇooɯS","block.pyrite.diamond_bricks":"sʞɔiɹᗺ dnoɯɐᴉᗡ","block.pyrite.diamond_pillar":"ɹalןiԀ dnoɯɐᴉᗡ","block.pyrite.diamond_bars":"sɹaᗺ dnoɯɐᴉᗡ","block.pyrite.chiseled_diamond_block":"ʞɔolᗺ dnoɯɐiᗡ deןǝsᴉɥƆ","block.pyrite.diamond_door":"ɹooD dnoɯɐᴉᗡ","block.pyrite.diamond_trapdoor":"roodpaɹ⟘ dnoɯɐᴉᗡ","block.pyrite.nostalgia_diamond_block":"ʞɔolᗺ dnoɯaiᗡ aᴉᵷןɐʇsoN","block.pyrite.diamond_button":"notʇuᗺ dnoɯɐᴉᗡ","block.pyrite.diamond_pressure_plate":"eʇaןP erussǝɹԀ dnoɯɐᴉᗡ","block.pyrite.cut_netherite":"etᴉɹeɥtǝN ʇnƆ","block.pyrite.cut_netherite_slab":"bɐןS etᴉɹeɥtǝN ʇnƆ","block.pyrite.cut_netherite_stairs":"sriɐtS etᴉɹeɥtǝN ʇnƆ","block.pyrite.cut_netherite_wall":"lןɐM etᴉɹeɥtǝN ʇnƆ","block.pyrite.cut_netherite_wall_gate":"eta⅁ lןɐM etᴉɹeɥtǝN ʇnƆ","block.pyrite.smooth_netherite":"etᴉɹehtǝN ɥʇooɯS","block.pyrite.smooth_netherite_slab":"bɐןS etᴉɹehtǝN ɥʇooɯS","block.pyrite.smooth_netherite_stairs":"sriɐtS etᴉɹehtǝN ɥʇooɯS","block.pyrite.smooth_netherite_wall":"lןɐM etᴉɹehtǝN ɥʇooɯS","block.pyrite.smooth_netherite_wall_gate":"eta⅁ lןɐM etᴉɹehtǝN ɥʇooɯS","block.pyrite.netherite_bricks":"sʞɔirᗺ etᴉɹeɥʇǝN","block.pyrite.netherite_pillar":"rɐlןiԀ etᴉɹeɥʇǝN","block.pyrite.netherite_bars":"srɐᗺ etᴉɹeɥʇǝN","block.pyrite.chiseled_netherite_block":"ʞɔolᗺ etiɹehʇeN deןǝsᴉɥƆ","block.pyrite.netherite_door":"rooᗡ etᴉɹeɥʇǝN","block.pyrite.netherite_trapdoor":"roopdɐr⟘ etᴉɹeɥʇǝN","block.pyrite.nostalgia_netherite_block":"ʞɔolᗺ etiɹeɥtǝN aᴉᵷןɐʇsoN","block.pyrite.netherite_button":"uottnᗺ etᴉɹeɥʇǝN","block.pyrite.netherite_pressure_plate":"etɐןP ernsserԀ etᴉɹeɥʇǝN","block.pyrite.cut_quartz":"ztɹɐuꝹ ʇnƆ","block.pyrite.cut_quartz_slab":"baןS ztɹɐuꝹ ʇnƆ","block.pyrite.cut_quartz_stairs":"srᴉatS ztɹɐuꝹ ʇnƆ","block.pyrite.cut_quartz_wall":"lןaM ztɹɐuꝹ ʇnƆ","block.pyrite.cut_quartz_wall_gate":"ǝta⅁ lןaM ztɹɐuꝹ ʇnƆ","block.pyrite.smooth_quartz_wall":"lןaM ztɹɐnꝹ ɥʇooɯS","block.pyrite.smooth_quartz_wall_gate":"ǝta⅁ lןaM ztɹɐnꝹ ɥʇooɯS","block.pyrite.quartz_bars":"sraᗺ zʇɹɐnꝹ","block.pyrite.quartz_door":"rooᗡ zʇɹɐnꝹ","block.pyrite.quartz_trapdoor":"roopdar⟘ zʇɹɐnꝹ","block.pyrite.nostalgia_quartz_block":"ʞɔolᗺ ztɹanꝹ aᴉᵷןɐʇsoN","block.pyrite.quartz_button":"uottuᗺ zʇɹɐnꝹ","block.pyrite.quartz_pressure_plate":"etaןP erussǝrԀ zʇɹɐnꝹ","block.pyrite.cut_amethyst":"tsʎɥtǝɯⱯ ʇnƆ","block.pyrite.cut_amethyst_slab":"bɐןS tsʎɥtǝɯⱯ ʇnƆ","block.pyrite.cut_amethyst_stairs":"sɹᴉɐtS tsʎɥtǝɯⱯ ʇnƆ","block.pyrite.cut_amethyst_wall":"lןɐM tsʎɥtǝɯⱯ ʇnƆ","block.pyrite.cut_amethyst_wall_gate":"eta⅁ lןɐM tsʎɥtǝɯⱯ ʇnƆ","block.pyrite.smooth_amethyst":"tsʎhtǝmⱯ ɥʇooɯS","block.pyrite.smooth_amethyst_slab":"bɐןS tsʎhtǝmⱯ ɥʇooɯS","block.pyrite.smooth_amethyst_stairs":"sɹᴉɐtS tsʎhtǝmⱯ ɥʇooɯS","block.pyrite.smooth_amethyst_wall":"lןɐM tsʎhtǝmⱯ ɥʇooɯS","block.pyrite.smooth_amethyst_wall_gate":"eta⅁ lןɐM tsʎhtǝmⱯ ɥʇooɯS","block.pyrite.amethyst_bricks":"sʞɔᴉɹᗺ tsʎɥʇǝɯⱯ","block.pyrite.amethyst_pillar":"ɹɐlןᴉԀ tsʎɥʇǝɯⱯ","block.pyrite.amethyst_bars":"sɹɐᗺ tsʎɥʇǝɯⱯ","block.pyrite.chiseled_amethyst_block":"ʞɔolᗺ tsʎhʇeɯⱯ deןǝsᴉɥƆ","block.pyrite.amethyst_door":"ɹooᗡ tsʎɥʇǝɯⱯ","block.pyrite.amethyst_trapdoor":"roopdɐɹ⟘ tsʎɥʇǝɯⱯ","block.pyrite.nostalgia_amethyst_block":"ʞɔolᗺ tsʎɥtǝɯⱯ aᴉᵷןɐʇsoN","block.pyrite.amethyst_button":"uottnᗺ tsʎɥʇǝɯⱯ","block.pyrite.amethyst_pressure_plate":"etɐןP ernsseɹԀ tsʎɥʇǝɯⱯ","block.pyrite.cut_lapis":"sᴉdɐꞀ ʇnƆ","block.pyrite.cut_lapis_slab":"baןS sᴉdɐꞀ ʇnƆ","block.pyrite.cut_lapis_stairs":"sɹiatS sᴉdɐꞀ ʇnƆ","block.pyrite.cut_lapis_wall":"lןaM sᴉdɐꞀ ʇnƆ","block.pyrite.cut_lapis_wall_gate":"ǝta⅁ lןaM sᴉdɐꞀ ʇnƆ","block.pyrite.smooth_lapis":"sᴉdɐꞀ ɥʇooɯS","block.pyrite.smooth_lapis_slab":"baןS sᴉdɐꞀ ɥʇooɯS","block.pyrite.smooth_lapis_stairs":"sɹiatS sᴉdɐꞀ ɥʇooɯS","block.pyrite.smooth_lapis_wall":"lןaM sᴉdɐꞀ ɥʇooɯS","block.pyrite.smooth_lapis_wall_gate":"ǝta⅁ lןaM sᴉdɐꞀ ɥʇooɯS","block.pyrite.lapis_bricks":"sʞɔiɹᗺ sᴉdɐꞀ","block.pyrite.lapis_pillar":"ɹalןiԀ sᴉdɐꞀ","block.pyrite.lapis_bars":"sɹaᗺ sᴉdɐꞀ","block.pyrite.chiseled_lapis_block":"ʞɔolᗺ sipɐꞀ deןǝsᴉɥƆ","block.pyrite.lapis_door":"ɹooᗡ sᴉdɐꞀ","block.pyrite.lapis_trapdoor":"rooppaɹ⟘ sᴉdɐꞀ","block.pyrite.nostalgia_lapis_block":"ʞɔolᗺ sidaꞀ aᴉᵷןɐʇsoN","block.pyrite.lapis_button":"uotʇnᗺ sᴉdɐꞀ","block.pyrite.lapis_pressure_plate":"eʇaןP ernssǝɹԀ sᴉdɐꞀ","block.pyrite.cut_redstone":"euotsdǝᴚ ʇnƆ","block.pyrite.cut_redstone_slab":"bɐןS euotsdǝᴚ ʇnƆ","block.pyrite.cut_redstone_stairs":"sɹᴉɐtS euotsdǝᴚ ʇnƆ","block.pyrite.cut_redstone_wall":"lןɐM euotsdǝᴚ ʇnƆ","block.pyrite.cut_redstone_wall_gate":"eta⅁ lןɐM euotsdǝᴚ ʇnƆ","block.pyrite.smooth_redstone":"enotsdǝᴚ ɥʇooɯS","block.pyrite.smooth_redstone_slab":"bɐןS enotsdǝᴚ ɥʇooɯS","block.pyrite.smooth_redstone_stairs":"sɹᴉɐtS enotsdǝᴚ ɥʇooɯS","block.pyrite.smooth_redstone_wall":"lןɐM enotsdǝᴚ ɥʇooɯS","block.pyrite.smooth_redstone_wall_gate":"eta⅁ lןɐM enotsdǝᴚ ɥʇooɯS","block.pyrite.redstone_bricks":"sʞɔᴉɹᗺ enoʇsdǝᴚ","block.pyrite.redstone_pillar":"ɹɐlןᴉԀ enoʇsdǝᴚ","block.pyrite.redstone_bars":"sɹɐᗺ enoʇsdǝᴚ","block.pyrite.chiseled_redstone_block":"ʞɔolᗺ enoʇsdeᴚ deןǝsᴉɥƆ","block.pyrite.redstone_door":"ɹooᗡ enoʇsdǝᴚ","block.pyrite.redstone_trapdoor":"roodpɐɹ⟘ enoʇsdǝᴚ","block.pyrite.nostalgia_redstone_block":"ʞɔolᗺ enotsdǝᴚ aᴉᵷןɐʇsoN","block.pyrite.redstone_button":"nottuᗺ enoʇsdǝᴚ","block.pyrite.redstone_pressure_plate":"etɐןP erusseɹԀ enoʇsdǝᴚ","block.pyrite.cut_copper_wall":"lןɐM ɹǝpdoC ʇnƆ","block.pyrite.cut_copper_wall_gate":"eta⅁ lןɐM ɹǝpdoC ʇnƆ","block.pyrite.smooth_copper":"ɹǝpdoƆ ɥʇooɯS","block.pyrite.smooth_copper_slab":"bɐןS ɹǝpdoƆ ɥʇooɯS","block.pyrite.smooth_copper_stairs":"srᴉɐtS ɹǝpdoƆ ɥʇooɯS","block.pyrite.smooth_copper_wall":"lןɐM ɹǝpdoƆ ɥʇooɯS","block.pyrite.smooth_copper_wall_gate":"eta⅁ lןɐM ɹǝpdoƆ ɥʇooɯS","block.pyrite.copper_bricks":"sʞɔᴉrᗺ ɹǝpdoƆ","block.pyrite.copper_pillar":"rɐlןᴉԀ ɹǝpdoƆ","block.pyrite.copper_bars":"srɐᗺ ɹǝpdoƆ","block.pyrite.chiseled_copper_block":"ʞɔolᗺ ɹeppoC deןǝsᴉɥƆ","block.pyrite.copper_door":"rooᗡ ɹǝpdoƆ","block.pyrite.copper_trapdoor":"rooppɐr⟘ ɹǝpdoƆ","block.pyrite.nostalgia_copper_block":"ʞɔolᗺ ɹǝpdoƆ aᴉᵷןɐʇsoN","block.pyrite.copper_button":"uotʇnᗺ ɹǝpdoƆ","block.pyrite.copper_pressure_plate":"eʇɐןP ernsserԀ ɹǝpdoƆ","block.pyrite.cut_exposed_copper_wall":"lןɐM ɹeppoC pǝsodxƎ ʇnƆ","block.pyrite.cut_exposed_copper_wall_gate":"eta⅁ lןɐM ɹeppoC pǝsodxƎ ʇnƆ","block.pyrite.smooth_exposed_copper":"ɹeppoƆ pǝsodxƎ ɥʇooɯS","block.pyrite.smooth_exposed_copper_slab":"bɐןS ɹeppoƆ pǝsodxƎ ɥʇooɯS","block.pyrite.smooth_exposed_copper_stairs":"srᴉɐtS ɹeppoƆ pǝsodxƎ ɥʇooɯS","block.pyrite.smooth_exposed_copper_wall":"lןɐM ɹeppoƆ pǝsodxƎ ɥʇooɯS","block.pyrite.smooth_exposed_copper_wall_gate":"eta⅁ lןɐM ɹeppoƆ pǝsodxƎ ɥʇooɯS","block.pyrite.exposed_copper_bricks":"sʞɔᴉrᗺ ɹeppoƆ pǝsodxƎ","block.pyrite.exposed_copper_pillar":"rɐlןᴉԀ ɹeppoƆ pǝsodxƎ","block.pyrite.exposed_copper_bars":"srɐᗺ ɹeppoƆ pǝsodxƎ","block.pyrite.chiseled_exposed_copper_block":"ʞɔolᗺ ɹeppoC desopxƎ deןǝsᴉɥƆ","block.pyrite.exposed_copper_door":"rooᗡ ɹeppoƆ pǝsodxƎ","block.pyrite.exposed_copper_trapdoor":"roodpɐr⟘ ɹeppoƆ pǝsodxƎ","block.pyrite.nostalgia_exposed_copper_block":"ʞɔolᗺ ɹeppoƆ pǝsodxƎ aᴉᵷןɐʇsoN","block.pyrite.exposed_copper_button":"uotʇnᗺ ɹeppoƆ pǝsodxƎ","block.pyrite.exposed_copper_pressure_plate":"eʇɐןP ernsserԀ ɹeppoƆ pǝsodxƎ","block.pyrite.cut_weathered_copper_wall":"lןaW reppoC deɹeɥtɐǝM ʇnƆ","block.pyrite.cut_weathered_copper_wall_gate":"eta⅁ lןaW reppoC deɹeɥtɐǝM ʇnƆ","block.pyrite.smooth_weathered_copper":"reppoƆ deɹehtɐǝM ɥʇooɯS","block.pyrite.smooth_weathered_copper_slab":"baןS reppoƆ deɹehtɐǝM ɥʇooɯS","block.pyrite.smooth_weathered_copper_stairs":"srᴉatS reppoƆ deɹehtɐǝM ɥʇooɯS","block.pyrite.smooth_weathered_copper_wall":"lןaW reppoƆ deɹehtɐǝM ɥʇooɯS","block.pyrite.smooth_weathered_copper_wall_gate":"eta⅁ lןaW reppoƆ deɹehtɐǝM ɥʇooɯS","block.pyrite.weathered_copper_bricks":"sʞɔᴉrᗺ reppoƆ deɹeɥʇɐǝM","block.pyrite.weathered_copper_pillar":"ralןᴉԀ reppoƆ deɹeɥʇɐǝM","block.pyrite.weathered_copper_bars":"sraᗺ reppoƆ deɹeɥʇɐǝM","block.pyrite.chiseled_weathered_copper_block":"ʞɔolᗺ reppoC deɹehʇɐeM deןǝsᴉɥƆ","block.pyrite.weathered_copper_door":"rooᗡ reppoƆ deɹeɥʇɐǝM","block.pyrite.weathered_copper_trapdoor":"roodpar⟘ reppoƆ deɹeɥʇɐǝM","block.pyrite.nostalgia_weathered_copper_block":"ʞɔolᗺ reppoƆ deɹeɥtaǝM aᴉᵷןɐʇsoN","block.pyrite.weathered_copper_button":"uottnᗺ reppoƆ deɹeɥʇɐǝM","block.pyrite.weathered_copper_pressure_plate":"etaןP ernsserԀ reppoƆ deɹeɥʇɐǝM","block.pyrite.cut_oxidized_copper_wall":"lןɐM ɹeppoC dǝzidᴉxO ʇnƆ","block.pyrite.cut_oxidized_copper_wall_gate":"eta⅁ lןɐM ɹeppoC dǝzidᴉxO ʇnƆ","block.pyrite.smooth_oxidized_copper":"ɹeppoƆ dǝzidᴉxO ɥʇooɯS","block.pyrite.smooth_oxidized_copper_slab":"bɐןS ɹeppoƆ dǝzidᴉxO ɥʇooɯS","block.pyrite.smooth_oxidized_copper_stairs":"sriɐtS ɹeppoƆ dǝzidᴉxO ɥʇooɯS","block.pyrite.smooth_oxidized_copper_wall":"lןɐM ɹeppoƆ dǝzidᴉxO ɥʇooɯS","block.pyrite.smooth_oxidized_copper_wall_gate":"eta⅁ lןɐM ɹeppoƆ dǝzidᴉxO ɥʇooɯS","block.pyrite.oxidized_copper_bricks":"sʞɔirᗺ ɹeppoƆ dǝzidᴉxO","block.pyrite.oxidized_copper_pillar":"rɐlןiԀ ɹeppoƆ dǝzidᴉxO","block.pyrite.oxidized_copper_bars":"srɐᗺ ɹeppoƆ dǝzidᴉxO","block.pyrite.chiseled_oxidized_copper_block":"ʞɔolᗺ ɹeppoC dezidixO deןǝsᴉɥƆ","block.pyrite.oxidized_copper_door":"rooᗡ ɹeppoƆ dǝzidᴉxO","block.pyrite.oxidized_copper_trapdoor":"roodpɐr⟘ ɹeppoƆ dǝzidᴉxO","block.pyrite.nostalgia_oxidized_copper_block":"ʞɔolᗺ ɹeppoƆ dǝzidixO aᴉᵷןɐʇsoN","block.pyrite.oxidized_copper_button":"uotʇnᗺ ɹeppoƆ dǝzidᴉxO","block.pyrite.oxidized_copper_pressure_plate":"eʇɐןP ernsserԀ ɹeppoƆ dǝzidᴉxO","block.pyrite.rose":"ǝsoᴚ","block.pyrite.blue_rose":"esoᴚ ǝnןᗺ","block.pyrite.orange_rose":"esoᴚ ǝᵷnɐɹO","block.pyrite.white_rose":"esoᴚ ǝʇᴉɥM","block.pyrite.pink_rose":"ǝsoᴚ ʞnᴉԀ","block.pyrite.paeonia":"aᴉnoǝɐԀ","block.pyrite.pink_daisy":"ʎsiɐᗡ ʞnᴉԀ","block.pyrite.buttercup":"duɔɹǝtʇnᗺ","block.pyrite.nether_brick_fence_gate":"etɐ⅁ ecneℲ ʞɔᴉrᗺ ɹeɥʇǝN","block.pyrite.switchable_glass":"ssal⅁ ǝןbɐɥɔʇᴉʍS","tag.item.pyrite.wall_gates":"sǝʇa⅁ lןɐM","tag.item.pyrite.lamps":"sdɯɐꞀ","tag.item.pyrite.bricks":"sʞɔᴉɹᗺ","tag.item.pyrite.dyed_bricks":"sʞɔᴉɹᗺ dǝʎᗡ","tag.item.pyrite.stained_framed_glass":"ssaן⅁ deɯaɹℲ dǝnᴉɐʇS","tag.item.pyrite.fences":"seɔnǝℲ","tag.item.pyrite.wool":"ןooM","tag.item.pyrite.metal_bars":"sɹaᗺ ןɐʇǝM","tag.item.pyrite.planks":"sʞnɐןԀ","tag.item.pyrite.brick_stairs":"sriɐʇS ʞɔᴉɹᗺ","tag.item.pyrite.metal_trapdoors":"sroopdaɹ⟘ ןɐʇǝM","tag.item.pyrite.brick_walls":"slןɐM ʞɔᴉɹᗺ","tag.item.pyrite.metal_buttons":"suottnᗺ ןɐʇǝM","tag.item.pyrite.concrete_slabs":"sbɐןS eʇǝɹɔnoƆ","tag.item.pyrite.concrete_stairs":"srᴉɐtS eʇǝɹɔnoƆ","tag.item.c.dyed.honey":"yenoH dǝʎᗡ","tag.item.c.dyed.glow":"ʍoן⅁ dǝʎᗡ","tag.item.c.dyed.nostalgia":"aᴉᵷןɐʇsoN dǝʎᗡ","tag.item.c.dyed.poisonous":"suonosᴉoԀ dǝʎᗡ","tag.item.c.dyed.rose":"esoᴚ dǝʎᗡ","tag.item.c.dyed.star":"ɹɐʇS dǝʎᗡ","tag.item.c.dyed.dragon":"noᵷɐɹD dǝʎᗡ"} \ No newline at end of file +{ + "itemGroup.pyrite.pyrite_group": "sʞɔolB ᵷuidןinᗺ ǝʇᴉɹʎԀ", + "itemGroup.pyrite.wood_group": "sʞɔoןᗺ nedooM ǝʇᴉɹʎԀ", + "itemGroup.pyrite.resource_group": "sʞcoןᗺ eɔrnoseᴚ ǝʇᴉɹʎԀ", + "itemGroup.pyrite.brick_group": "skcoןB ʞɔirᗺ ǝʇᴉɹʎԀ", + "itemGroup.pyrite.redstone_group": "sʞɔoןᗺ enotsdeᴚ ǝʇᴉɹʎԀ", + "lore.pyrite.amethyst_bricks": "˙sʞcirᗺ otni devraɔ neeb sah taht tsʎɥtǝɯA ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.amethyst_door": "˙rooᗡ a otni devraɔ neeb sah taht tsʎɥtǝɯA ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.amethyst_pillar": "˙ralןiԀ a otni devraɔ neeb sah taht tsʎɥtǝɯA ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.amethyst_trapdoor": "˙roodpar⟘ a otni devraɔ neeb sah taht tsʎɥtǝɯA ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.black_bricks": "˙kcolb ᵷnidliub a sa desu eb nac dna ,kcalB deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘", + "lore.pyrite.black_framed_glass": "˙wodniʍ luɟruoloc a sa oʇ desu eb nac dna ,kcalᗺ deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.black_framed_glass_pane": "˙wodniʍ luɟruoloc a sa desu eb nac dna ,ʞɔalᗺ deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.black_lamp": "˙dlroʍ ɹuoy pu thᵷil oʇ desu eb nac dna ,kcalᗺ deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘", + "lore.pyrite.black_terracotta_bricks": "˙kcolb ᵷnidliub a sa desu eb nac dna ,kcalB deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘", + "lore.pyrite.black_torch": "˙dlroʍ ruoy pu thᵷil oʇ desu eb nac dna ,kcalᗺ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.black_torch_lever": "˙thᵷis nialp ni enotsdeᴚ edih oʇ desu eb nac dna ,kcalᗺ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.blue_bricks": "˙kcolb ᵷnidliub a sa desu eb nac dna ,eulB deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘", + "lore.pyrite.blue_framed_glass": "˙wodniʍ luɟruoloc a sa oʇ desu eb nac dna ,eulᗺ deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.blue_framed_glass_pane": "˙wodniʍ luɟruoloc a sa desu eb naɔ dna ,eulᗺ deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.blue_lamp": "˙dlroʍ ɹuoy pu thᵷil oʇ desu eb nac dna ,eulᗺ deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘", + "lore.pyrite.blue_nether_bricks": "˙skcirᗺ reɥteN ruoʎ ot eulb ɟo pop a ᵷnidda ʞcoןb eʌᴉʇɐɹoɔǝd Ɐ", + "lore.pyrite.blue_rose": "˙tsad eht fo kuihʇ uoʎ seʞɐɯ ɹeʍolɟ ǝnןb sᴉɥ⟘", + "lore.pyrite.blue_terracotta_bricks": "˙kcolb ᵷnidliub a sa desu eb nac dna ,eulB deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘", + "lore.pyrite.blue_torch": "˙dlroʍ ruoy pu thᵷil oʇ desu eb nac dna ,eulᗺ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.blue_torch_lever": "˙thᵷis nialp ni enotsdeᴚ edih oʇ desu eb nac dna ,eulᗺ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.brown_bricks": "˙kcolb ᵷnidliub a sa desu eb nac dna ,nʍorB deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘", + "lore.pyrite.brown_framed_glass": "˙wodniw luɟruoloc a sa oʇ desu eb nac dna ,nʍorᗺ deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.brown_framed_glass_pane": "˙wodniw luɟruoloc a sa desu eb naɔ dna ,nʍorᗺ deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.brown_lamp": "˙dlrow ruoy pu thᵷil oʇ desu eb nac dna ,nʍoɹᗺ deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘", + "lore.pyrite.brown_terracotta_bricks": "˙kcolb ᵷnidliub a sa desu eb nac dna ,nʍorB deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘", + "lore.pyrite.brown_torch": "˙dlrow ruoy pu thᵷil oʇ desu eb nac dna ,nʍorᗺ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.brown_torch_lever": "˙thᵷis nialp ni enotsdeᴚ edih oʇ desu eb nac dna ,nʍorᗺ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.buttercup": "˙tsad eht fo kuihʇ noy seʞɐɯ ɹewolɟ ʍolןǝʎ sᴉɥ⟘", + "lore.pyrite.charred_nether_bricks": "˙skcirᗺ rehteN ruoy ot tnecca ʎʍodaɥs a ᵷnidda ʞcoןb eʌᴉʇɐɹoɔǝd Ɐ", + "lore.pyrite.chiseled_amethyst_block": "˙deןesihƆ neeb sah taht tsʎɥtǝɯA ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.chiseled_diamond_block": "˙deןesihƆ neǝb sah taɥt dnoɯaiᗡ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.chiseled_emerald_block": "˙delesihƆ neeb sah taɥt dןarǝɯƎ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.chiseled_gold_block": "˙delesihƆ neǝb sah taɥt dןo⅁ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.chiseled_iron_block": "˙deןesihƆ neǝb sah taɥt norI ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.chiseled_lapis_block": "˙peןesihƆ neǝb sah taɥt sidaꞀ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.chiseled_netherite_block": "˙deןesihƆ neeb sah taht etireɥtǝN ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.chiseled_quartz_block": "˙deןesihƆ neǝb sah taɥt ztrauꝹ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.chiseled_redstone_block": "˙deןesihƆ neeb sah taɥt enotsdǝᴚ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.cobblestone_bricks": "˙sdliub eɯag etal dna ʎlrae htob roɟ ʇɐǝrᵷ si kcoןb ʞɔiɹb sᴉɥ⟘", + "lore.pyrite.copper_pillar": "˙ralןiԀ a otni pevraɔ neeb sah taɥt rǝpdoƆ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.cut_amethyst": "˙tuƆ neeb sah taht tsʎɥtǝɯA ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.cut_diamond": "˙tuƆ neǝb sah taɥt dnoɯaiᗡ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.cut_emerald": "˙tuƆ neeb sah taɥt dןarǝɯƎ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.cut_gold": "˙tuƆ neǝb sah taɥt dןo⅁ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.cut_iron": "˙tuƆ neǝb sah taɥt norI ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.cut_lapis": "˙tuƆ neǝb sah taɥt sidaꞀ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.cut_netherite": "˙tuƆ neeb sah taht etireɥtǝN ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.cut_quartz": "˙tuƆ neǝb sah taɥt ztrauꝹ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.cut_redstone": "˙tuƆ neeb sah taɥt enotsdǝᴚ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.cyan_bricks": "˙kcolb ᵷnidliub a sa desu eb nac dna ,nayƆ deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘", + "lore.pyrite.cyan_framed_glass": "˙wodniʍ luɟruoloc a sa oʇ desu eb nac dna ,nayƆ deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.cyan_framed_glass_pane": "˙wodniʍ luɟruoloc a sa desu eb naɔ dna ,nayƆ deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.cyan_lamp": "˙dlroʍ ɹuoy pu thᵷil oʇ desu eb nac dna ,nayƆ deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘", + "lore.pyrite.cyan_terracotta_bricks": "˙kcolb ᵷnidliub a sa desu eb nac dna ,nayƆ deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘", + "lore.pyrite.cyan_torch": "˙dlroʍ ruoy pu thᵷil oʇ desu eb nac dna ,nayƆ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.cyan_torch_lever": "˙thᵷis nialp ni enotsdeᴚ edih oʇ desu eb nac dna ,nayƆ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.diamond_bricks": "˙sʞcirᗺ otni devraɔ neǝb sah taɥt dnoɯaiᗡ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.diamond_door": "˙rooD a otni devraɔ neǝb sah taɥt dnoɯaiᗡ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.diamond_pillar": "˙ralןiԀ a otni devraɔ neǝb sah taɥt dnoɯaiᗡ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.diamond_trapdoor": "˙roodpar⟘ a otni devraɔ neǝb sah taɥt dnoɯaiᗡ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.dragon_bricks": "˙kcolb gnidliub a sa desu eb nac dna ,htaerB s'noᵷarᗡ hʇiʍ deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘", + "lore.pyrite.dragon_dye": "˙wolg eltbus a ti htiʍ detfarc sʞɔoןb seʌᴉg taht ,ɥʇaerᗺ s'nogarᗡ morɟ edɐɯ eʎd neǝɹᵷ Ɐ", + "lore.pyrite.dragon_framed_glass": "˙wodniw luɟruoloc a sa ot desu eb nac dna ,htaerᗺ s'noᵷarᗡ hʇiʍ deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.dragon_framed_glass_pane": "˙wodniw luɟruoloc a sa desu eb naɔ dna ,htaerᗺ s'noᵷarᗡ hʇiʍ deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.dragon_lamp": "˙dlrow ruoy pu thgil ot desu eb nac dna ,htaerᗺ s'noᵷaɹᗡ hʇiʍ deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘", + "lore.pyrite.dragon_terracotta_bricks": "˙kcolb gnidliub a sa desu eb nac dna ,htaerB s'noᵷarᗡ htiʍ deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘", + "lore.pyrite.dragon_torch": "˙dlrow ruoy pu thgil ot desu eb nac dna ,htaerᗺ s'noᵷarᗡ hʇiʍ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.dragon_torch_lever": "˙thgis nialp ni enotsdeᴚ edih ot desu eb nac dna ,htaerᗺ s'noᵷarᗡ hʇiʍ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.emerald_bricks": "˙sʞcirᗺ otni devraɔ neeb sah taɥt dןarǝɯƎ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.emerald_door": "˙rooᗡ a otni devraɔ neeb sah taɥt dןarǝɯƎ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.emerald_pillar": "˙ralliԀ a otni devraɔ neeb sah taɥt dןarǝɯƎ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.emerald_trapdoor": "˙roodpar⟘ a otni devraɔ neeb sah taɥt dןarǝɯƎ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.exposed_copper_pillar": "˙ralןiԀ a otni devraɔ neeb sah taɥt reppoƆ pǝsodxƎ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.framed_glass": ".ssal⅁ naht ɹehguot ʎlthᵷils s'ʇI ˙wodniʍ a sa desu ǝb nɐc ʞɔoןb sᴉɥ⟘", + "lore.pyrite.framed_glass_pane": ".ssal⅁ naht ɹehguot ʎlthᵷils s'ʇI ˙wodniʍ a sa desu ǝb nɐc ʞɔoןb sᴉɥ⟘", + "lore.pyrite.glow_bricks": "˙kcolb ᵷnidliub a sa desu eb nac dna ,knI wol⅁ hʇiʍ deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘", + "lore.pyrite.glow_dye": "˙wolg eltbus a ti htiw detfarc skɔolb seʌᴉg taɥʇ ,ʞnI ʍoן⅁ morɟ edɐɯ eʎd neǝɹᵷ Ɐ", + "lore.pyrite.glow_framed_glass": "˙wodniw luɟruoloc a sa ot desu eb nac dna ,knI wolG hʇiʍ deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.glow_framed_glass_pane": "˙wodniw luɟruoloc a sa desu eb naɔ dna ,ʞnI wolG hʇiʍ deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.glow_lamp": "˙dlrow ɹuoy pu thᵷil ot desu eb nac dna ,knI wol⅁ hʇiʍ deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘", + "lore.pyrite.glow_terracotta_bricks": "˙kcolb ᵷnidliub a sa desu eb nac dna ,knI wol⅁ htiʍ deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘", + "lore.pyrite.glow_torch": "˙dlrow ruoy pu thᵷil ot desu eb nac dna ,knI wol⅁ hʇiʍ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.glow_torch_lever": "˙thᵷis nialp ni enotsdeᴚ edih ot desu eb nac dna ,knI wol⅁ hʇiʍ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.glowing_obsidian": "˙ecruos thgil a sa sevres tsuɾ ʍon tub ,esopɹup a dah ecno ǝʌɐh ʇhᵷiɯ ʞɔoןb sᴉɥ⟘", + "lore.pyrite.gold_bricks": "˙sʞcirᗺ otni devraɔ neǝb sah taɥt dןo⅁ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.gold_door": "˙rooᗡ a otni devraɔ neǝb sah taɥt dןo⅁ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.gold_pillar": "˙ralliԀ a otni devraɔ neǝb sah taɥt dןo⅁ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.gold_trapdoor": "˙roodpar⟘ a otni devraɔ neǝb sah taɥt dןo⅁ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.grass_turf": "˙edis hcae uo erntxet ssarG eht hʇiʍ ,kcolᗺ ssar⅁ ɐ selbɯesǝɹ ʞɔoןb sᴉɥ⟘", + "lore.pyrite.gray_bricks": "˙kcolb ᵷnidliub a sa desu eb nac dna ,yar⅁ deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘", + "lore.pyrite.gray_framed_glass": "˙wodniʍ luɟruoloc a sa oʇ desu eb nac dna ,yarG deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.gray_framed_glass_pane": "˙wodniʍ luɟruoloc a sa desu eb naɔ dna ,yarG deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.gray_lamp": "˙dlroʍ ruoy pu thᵷil oʇ desu eb nac dna ,yaɹ⅁ deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘", + "lore.pyrite.gray_terracotta_bricks": "˙kcolb ᵷnidliub a sa desu eb nac dna ,yar⅁ deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘", + "lore.pyrite.gray_torch": "˙dlroʍ ruoy pu thᵷil oʇ desu eb nac dna ,yar⅁ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.gray_torch_lever": "˙thᵷis nialp ni enotsdeᴚ edih oʇ desu eb nac dna ,yar⅁ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.green_bricks": "˙kcolb ᵷnidliub a sa desu eb nac dna ,neer⅁ deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘", + "lore.pyrite.green_framed_glass": "˙wodniʍ luɟruoloc a sa oʇ desu eb nac dna ,neerG deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.green_framed_glass_pane": "˙wodniʍ luɟruoloc a sa desu eb naɔ dna ,neerG deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.green_lamp": "˙dlroʍ ruoy pu thᵷil oʇ desu eb nac dna ,neeɹ⅁ deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘", + "lore.pyrite.green_terracotta_bricks": "˙kcolb ᵷnidliub a sa desu eb nac dna ,neer⅁ deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘", + "lore.pyrite.green_torch": "˙dlroʍ ruoy pu thᵷil oʇ desu eb nac dna ,neer⅁ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.green_torch_lever": "˙thᵷis nialp ni enotsdeᴚ edih oʇ desu eb nac dna ,neer⅁ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.honey_bricks": "˙kcolb ᵷnidliub a sa desu eb nac dna ,deruoloc yenoH deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘", + "lore.pyrite.honey_dye": "˙bmoɔyenoH morɟ edaɯ eʎd ǝᵷnɐɹo Ɐ", + "lore.pyrite.honey_framed_glass": "˙wodniʍ luɟruoloc a sa oʇ desu eb nac dna ,deruoloc yenoH deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.honey_framed_glass_pane": "˙wodniʍ luɟruoloc a sa desu eb nac dna ,deruoloɔ yenoH deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.honey_lamp": "˙dlroʍ ruoy pu thᵷil oʇ desu eb nac dna ,deɹuoloc yenoH deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘", + "lore.pyrite.honey_terracotta_bricks": "˙kcolb ᵷnidliub a sa desu eb nac dna ,deruoloc yenoH deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘", + "lore.pyrite.honey_torch": "˙dlroʍ ruoy pu thᵷil oʇ desu eb nac dna ,deruoloc yenoH deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.honey_torch_lever": "˙thᵷis nialp ni enotsdeᴚ edih oʇ desu eb nac dna ,deruoloc yenoH deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.iron_bricks": "˙sʞcirᗺ otni devraɔ neǝb sah taɥt norI ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.iron_door": "˙rooᗡ a otni devraɔ neǝb sah taɥt norI ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.iron_pillar": "˙ralןiԀ a otni devraɔ neǝb sah taɥt norI ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.iron_trapdoor": "˙roodpar⟘ a otni devraɔ neǝb sah taɥt norI ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.lapis_bricks": "˙sʞcirᗺ otni pevraɔ neǝb sah taɥt sidaꞀ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.lapis_door": "˙rooᗡ a otni pevraɔ neǝb sah taɥt sidaꞀ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.lapis_pillar": "˙ralןiԀ a otni pevraɔ neǝb sah taɥt sidaꞀ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.lapis_trapdoor": "˙roodpar⟘ a otni pevraɔ neǝb sah taɥt sidaꞀ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.light_blue_bricks": "˙kcolb gnidliub a sa desu eb nac dna ,eulB ʇhᵷiꞀ deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘", + "lore.pyrite.light_blue_framed_glass": "˙wodniʍ luɟruoloc a sa ot desu eb nac dna ,eulᗺ ʇhᵷiꞀ deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.light_blue_framed_glass_pane": "˙wodniʍ luɟruoloc a sa desu eb naɔ dna ,eulᗺ ʇhᵷiꞀ deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.light_blue_lamp": "˙dlroʍ ɹuoy pu thgil ot desu eb nac dna ,eulᗺ ʇhᵷiL deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘", + "lore.pyrite.light_blue_terracotta_bricks": "˙kcolb gnidliub a sa desu eb nac dna ,eulB thᵷiꞀ deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘", + "lore.pyrite.light_blue_torch": "˙dlroʍ ruoy pu thgil ot desu eb nac dna ,eulᗺ ʇhᵷiꞀ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.light_blue_torch_lever": "˙thgis nialp ni enotsdeᴚ edih ot desu eb nac dna ,eulᗺ ʇhᵷiꞀ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.light_gray_bricks": "˙kcolb gnidliub a sa desu eb nac dna ,yar⅁ ʇhᵷiꞀ deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘", + "lore.pyrite.light_gray_framed_glass": "˙wodniʍ luɟruoloc a sa ot desu eb nac dna ,yarG ʇhᵷiꞀ deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.light_gray_framed_glass_pane": "˙wodniʍ luɟruoloc a sa desu eb naɔ dna ,yarG ʇhᵷiꞀ deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.light_gray_lamp": "˙dlroʍ ruoy pu thgil ot desu eb nac dna ,yaɹ⅁ ʇhᵷiL deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘", + "lore.pyrite.light_gray_terracotta_bricks": "˙kcolb gnidliub a sa desu eb nac dna ,yar⅁ thᵷiꞀ deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘", + "lore.pyrite.light_gray_torch": "˙dlroʍ ruoy pu thgil ot desu eb nac dna ,yar⅁ ʇhᵷiꞀ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.light_gray_torch_lever": "˙thgis nialp ni enotsdeᴚ edih ot desu eb nac dna ,yar⅁ ʇhᵷiꞀ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.lime_bricks": "˙kcolb ᵷnidliub a sa desu eb nac dna ,eɯiꞀ deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘", + "lore.pyrite.lime_framed_glass": "˙wodniʍ luɟruoloc a sa oʇ desu eb nac dna ,emiꞀ deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.lime_framed_glass_pane": "˙wodniʍ luɟruoloc a sa desu eb naɔ dna ,emiꞀ deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.lime_lamp": "˙dlroʍ ɹuoy pu thᵷil oʇ desu eb nac dna ,emiL deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘", + "lore.pyrite.lime_terracotta_bricks": "˙kcolb ᵷnidliub a sa desu eb nac dna ,eɯiꞀ deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘", + "lore.pyrite.lime_torch": "˙dlroʍ ruoy pu thᵷil oʇ desu eb nac dna ,eɯiꞀ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.lime_torch_lever": "˙thᵷis nialp ni enotsdeᴚ edih oʇ desu eb nac dna ,eɯiꞀ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.lit_redstone_lamp": "˙edisni hcroT enotsdeR eht ot sknaht dereʍop ʎltnenamrep si tub ,pmaꞀ enoʇsdeᴚ ɐ selbɯesǝɹ ʞɔoןb sᴉɥ⟘", + "lore.pyrite.locked_chest": "˙ecruos thgil a sa sevres tsuɾ ʍon tub ,esopɹup a dah ecno ǝʌɐh ʇhᵷiɯ ʞɔoןb sᴉɥ⟘", + "lore.pyrite.magenta_bricks": "˙kcolb gnidliub a sa desu eb nac dna ,aʇneᵷaM deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘", + "lore.pyrite.magenta_framed_glass": "˙wodniʍ luɟruoloc a sa ot desu eb nac dna ,aʇneᵷaM deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.magenta_framed_glass_pane": "˙wodniʍ luɟruoloc a sa desu eb naɔ dna ,aʇneᵷaM deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.magenta_lamp": "˙dlroʍ ɹuoy pu thgil ot desu eb nac dna ,aʇneᵷaM deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘", + "lore.pyrite.magenta_terracotta_bricks": "˙kcolb gnidliub a sa desu eb nac dna ,atneᵷaM deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘", + "lore.pyrite.magenta_torch": "˙dlroʍ ruoy pu thgil ot desu eb nac dna ,aʇneᵷaM deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.magenta_torch_lever": "˙thgis nialp ni enotsdeᴚ edih ot desu eb nac dna ,aʇneᵷaM deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.mossy_cobblestone_bricks": "˙sdliub emag etal dna ylrae htob roɟ ʇɐǝrᵷ si kcoןb ʞɔiɹb ʎssoɯ sᴉɥ⟘", + "lore.pyrite.mycelium_turf": "˙epis hcɐe uo erutxet dot eht hʇiʍ ,mnilecʎM selbɯesǝɹ ʞɔoןb sᴉɥ⟘", + "lore.pyrite.nether_brick_fence_gate": "!rood a ekil penedo eb nac tub ,ecneℲ kcirᗺ rehʇeN ɐ selbɯesǝɹ ʞɔoןb sᴉɥ⟘", + "lore.pyrite.netherite_bricks": "˙sʞcirᗺ otni devraɔ neeb sah taht etireɥtǝN ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.netherite_door": "˙rooᗡ a otni devraɔ neeb sah taht etireɥtǝN ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.netherite_pillar": "˙ralןiԀ a otni devraɔ neeb sah taht etireɥtǝN ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.netherite_trapdoor": "˙roodpar⟘ a otni devraɔ neeb sah taht etireɥtǝN ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.nostalgia_amethyst_block": "˙neeb eʌah thgim tahw rednoʍ uoy sekaɯ eɹutxǝt ʎnihs s'kɔolb siɥt tɐ ᵷuᴉʞooן ʇsnՐ", + "lore.pyrite.nostalgia_bricks": "˙seiromeɯ kcab sgnirb erutxǝt thgiɹb s'kɔolb siɥt tɐ ᵷuᴉʞooן ʇsnՐ", + "lore.pyrite.nostalgia_cobblestone": "˙seiromǝm kcab sgnirb skcarc citaɯaɹd s'kɔolb siɥt tɐ ᵷuᴉʞooן ʇsnՐ", + "lore.pyrite.nostalgia_copper_block": "˙neeb eʌah thgim tahw rednoʍ uoy sekaɯ eɹutxǝt ʎnihs s'kɔolb siɥt tɐ ᵷuᴉʞooן ʇsnՐ", + "lore.pyrite.nostalgia_diamond_block": "˙seiromeɯ kcab sgnirb eɹutxǝt ʎnihs s'kɔolb siɥt tɐ ᵷuᴉʞooן ʇsnՐ", + "lore.pyrite.nostalgia_dye": "˙seiromem dnof tuo sgnᴉrb taɥʇ eןppA na morɟ edɐɯ eʎd neǝɹᵷ Ɐ", + "lore.pyrite.nostalgia_emerald_block": "˙seiromeɯ kcab sgnirb eɹutxet delǝsihc s'kɔolb siɥt tɐ ᵷuᴉʞooן ʇsnՐ", + "lore.pyrite.nostalgia_exposed_copper_block": "˙neeb eʌah thgim tahw rednoʍ uoy sekaɯ eɹutxǝt ʎnihs s'kɔolb siɥt tɐ ᵷuᴉʞooן ʇsnՐ", + "lore.pyrite.nostalgia_framed_glass": "˙wodniʍ lufruoloc a sa oʇ desu eb nac dna ,railimaɟ skool ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.nostalgia_framed_glass_pane": "˙wodniʍ lufruoloc a sa desu eb naɔ dna ,railimaɟ sʞool enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.nostalgia_glowing_obsidian": "˙ecruos thgil a sa sevres tsuɾ ʍon tub ,esopɹup a dah ecno ǝʌɐh ʇhᵷiɯ ʞɔoןb sᴉɥ⟘", + "lore.pyrite.nostalgia_gold_block": "˙seiromeɯ kcab sgnirb eɹutxǝt ʎnihs s'kɔolb siɥt tɐ ᵷuᴉʞooן ʇsnՐ", + "lore.pyrite.nostalgia_grass_block": "˙seiromeɯ kcab sgnirb erutxǝt tnaɹbiʌ s'kɔolb siɥt tɐ ᵷuᴉʞooן ʇsnՐ", + "lore.pyrite.nostalgia_gravel": "˙seiromem kcab sgnirb eɹutxet ʎssǝɯ s'kɔolb siɥt tɐ ᵷuᴉʞooן ʇsnՐ", + "lore.pyrite.nostalgia_iron_block": "˙seiromeɯ kcab sgnirb eɹutxǝt ʎnihs s'kɔolb siɥt tɐ ᵷuᴉʞooן ʇsnՐ", + "lore.pyrite.nostalgia_lamp": "˙dlroʍ ruoʎ pu thᵷil oʇ desu ǝb nac pna ,ɹailimaɟ skool ʞɔoןb dɯɐꞀ sᴉɥ⟘", + "lore.pyrite.nostalgia_lapis_block": "˙seiromem kcab sgnirb eɹutxǝt htooɯs s'kɔolb siɥt tɐ ᵷuᴉʞooן ʇsnՐ", + "lore.pyrite.nostalgia_mossy_cobblestone": "˙seiromǝm kcab sgnirb skcarc citaɯaɹd s'kɔolb siɥt tɐ ᵷuᴉʞooן ʇsnՐ", + "lore.pyrite.nostalgia_netherite_block": "˙neeb eʌah thgim tahw rednoʍ uoy sekaɯ eɹutxǝt ʎnihs s'kɔolb siɥt tɐ ᵷuᴉʞooן ʇsnՐ", + "lore.pyrite.nostalgia_netherrack": "˙seiromeɯ kcab sgnirb erutxet ǝgnaɹts s'kɔolb siɥt tɐ ᵷuᴉʞooן ʇsnՐ", + "lore.pyrite.nostalgia_oxidized_copper_block": "˙neeb eʌah thgim tahw rednoʍ uoy sekaɯ eɹutxǝt ʎnihs s'kɔolb siɥt tɐ ᵷuᴉʞooן ʇsnՐ", + "lore.pyrite.nostalgia_redstone_block": "˙seiromeɯ kcab sgnirb erutxet rǝkɹad s'kɔolb siɥt tɐ ᵷuᴉʞooן ʇsnՐ", + "lore.pyrite.nostalgia_terracotta_bricks": "˙kcolb ᵷnidliub a sa desu eb nac dna ,railiɯaɟ skool kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘", + "lore.pyrite.nostalgia_torch": "˙dlroʍ ruoʎ pu thᵷil oʇ desu ǝb nac dna ,railiɯɐɟ skool ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.nostalgia_torch_lever": "˙thᵷis nialp ni enotsdeᴚ edih oʇ desu ǝb nac dna ,railiɯɐɟ skool ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.nostalgia_weathered_copper_block": "˙neeb eʌah thgim tahw rednoʍ uoy sekaɯ eɹutxǝt ʎnihs s'kɔolb siɥt tɐ ᵷuᴉʞooן ʇsnՐ", + "lore.pyrite.orange_bricks": "˙kcolb gnidliub a sa desu eb nac dna ,eᵷnarO deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘", + "lore.pyrite.orange_framed_glass": "˙wodniʍ luɟruoloc a sa oʇ desu eb nac dna ,eᵷnarO deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.orange_framed_glass_pane": "˙wodniʍ luɟruoloc a sa desu eb naɔ dna ,eᵷnarO deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.orange_lamp": "˙dlroʍ ruoy pu thgil oʇ desu eb nac dna ,eᵷnaɹO deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘", + "lore.pyrite.orange_rose": "˙tsad eht fo knihʇ uoʎ seʞaɯ reʍoןɟ ǝᵷnɐɹo sᴉɥ⟘", + "lore.pyrite.orange_terracotta_bricks": "˙kcolb gnidliub a sa desu eb nac dna ,eᵷnarO deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘", + "lore.pyrite.orange_torch": "˙dlroʍ ruoy pu thgil oʇ desu eb nac dna ,eᵷnarO deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.orange_torch_lever": "˙thgis nialp ni enotsdeᴚ edih oʇ desu eb nac dna ,eᵷnarO deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.oxidized_copper_pillar": "˙ralןiԀ a otni devraɔ neeb sah taɥt reppoƆ dǝzidixO ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.paenoia_rose": "˙neeb eʌ'thgim tahw fo kniht uoʎ seʞam ɹeʍoןɟ aʇnǝᵷɐɯ sᴉɥ⟘", + "lore.pyrite.path_turf": "˙epis hcae uo erntxet dot eht htiʍ ,kcolᗺ htaԀ ʇriᗡ ɐ selbɯesǝɹ ʞɔoןb sᴉɥ⟘", + "lore.pyrite.pink_bricks": "˙kcolb ᵷnidliub a sa desu eb nac dna ,kniԀ deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘", + "lore.pyrite.pink_daisy": "˙tsap eht fo knihʇ uoʎ sekɐɯ ɹǝʍoןɟ ʞnid sᴉɥ⟘", + "lore.pyrite.pink_framed_glass": "˙wodniʍ luɟruoloc a sa oʇ desu eb nac dna ,kniԀ deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.pink_framed_glass_pane": "˙wodniʍ luɟruoloc a sa desu eb naɔ dna ,ʞniP deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.pink_lamp": "˙dlroʍ ɹuoy pu thᵷil oʇ desu eb nac dna ,kniԀ deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘", + "lore.pyrite.pink_rose": "˙tsap eht fo knihʇ uoʎ sekɐɯ ɹǝʍoןɟ ʞnid sᴉɥ⟘", + "lore.pyrite.pink_terracotta_bricks": "˙kcolb ᵷnidliub a sa desu eb nac dna ,kniԀ deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘", + "lore.pyrite.pink_torch": "˙dlroʍ ruoy pu thᵷil oʇ desu eb nac dna ,kniԀ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.pink_torch_lever": "˙thᵷis nialp ni enotsdeᴚ edih oʇ desu eb nac dna ,kniԀ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.podzol_turf": "˙edis hcɐe uo erntxet pot eht hʇiʍ ,lozdoԀ selbɯesǝɹ ʞɔoןb sᴉɥ⟘", + "lore.pyrite.poisonous_bricks": "˙kcolb ᵷnidliub a sa desu eb nac dna ,neer⅁ suonosioԀ deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘", + "lore.pyrite.poisonous_dye": "˙otaʇoP suonosioԀ na moɹɟ edɐm eʎd ǝɯᴉן Ɐ", + "lore.pyrite.poisonous_framed_glass": "˙wodniʍ luɟruoloc a sa oʇ desu eb nac dna ,neerG suonosioԀ deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.poisonous_framed_glass_pane": "˙wodniʍ luɟruoloc a sa desu eb naɔ dna ,neerG suonosioP deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.poisonous_lamp": "˙dlroʍ ruoy pu thᵷil oʇ desu eb nac dna ,neeɹ⅁ suonosioԀ deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘", + "lore.pyrite.poisonous_terracotta_bricks": "˙kcolb ᵷnidliub a sa desu eb nac dna ,neer⅁ suonosioԀ deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘", + "lore.pyrite.poisonous_torch": "˙dlroʍ ruoy pu thᵷil oʇ desu eb nac dna ,neer⅁ suonosioԀ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.poisonous_torch_lever": "˙thᵷis nialp ni enotsdeᴚ edih oʇ desu eb nac dna ,neer⅁ suonosioԀ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.purple_bricks": "˙kcolb ᵷnidliub a sa desu eb nac dna ,elpruԀ deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘", + "lore.pyrite.purple_framed_glass": "˙wodniʍ luɟruoloc a sa oʇ desu eb nac dna ,elpruԀ deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.purple_framed_glass_pane": "˙wodniʍ luɟruoloc a sa desu eb naɔ dna ,elpruP deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.purple_lamp": "˙dlroʍ ruoy pu thᵷil oʇ desu eb nac dna ,elpɹuԀ deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘", + "lore.pyrite.purple_terracotta_bricks": "˙kcolb ᵷnidliub a sa desu eb nac dna ,elpruԀ deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘", + "lore.pyrite.purple_torch": "˙dlroʍ ruoy pu thᵷil oʇ desu eb nac dna ,elpruԀ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.purple_torch_lever": "˙thᵷis nialp ni enotsdeᴚ edih oʇ desu eb nac dna ,elpruԀ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.quartz_bricks": "˙sʞcirᗺ otni devraɔ neǝb sah taɥt ztrauꝹ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.quartz_door": "˙rooᗡ a otni devraɔ neǝb sah taɥt ztrauꝹ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.quartz_pillar": "˙ralןiԀ a otni devraɔ neǝb sah taɥt ztrauꝹ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.quartz_trapdoor": "˙roodpar⟘ a otni devraɔ neǝb sah taɥt ztrauꝹ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.red_bricks": "˙kcolb ᵷnidliub a sa desu eb nac dna ,deᴚ deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘", + "lore.pyrite.red_framed_glass": "˙wodniʍ luɟruoloc a sa oʇ desu eb nac dna ,deᴚ deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.red_framed_glass_pane": "˙wodniʍ luɟruoloc a sa desu eb naɔ dna ,deᴚ deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.red_lamp": "˙dlroʍ ɹuoy pu thᵷil oʇ desu eb nac dna ,deᴚ deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘", + "lore.pyrite.red_terracotta_bricks": "˙kcolb ᵷnidliub a sa desu eb nac dna ,deᴚ deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘", + "lore.pyrite.red_torch": "˙dlroʍ ruoy pu thᵷil oʇ desu eb nac dna ,deᴚ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.red_torch_lever": "˙thᵷis nialp ni enotsdeR edih oʇ desu eb nac dna ,deᴚ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.redstone_bricks": "˙sʞcirᗺ otni devraɔ neeb sah taɥt enotsdǝᴚ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.redstone_door": "˙rooᗡ a otni devraɔ neeb sah taɥt enotsdǝᴚ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.redstone_pillar": "˙ralןiԀ a otni devraɔ neeb sah taɥt enotsdǝᴚ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.redstone_torch_lever": "˙thᵷis niaןp ni enotsdeR edih ot desu eb nɐc hɔɹoT enoʇsdǝᴚ sᴉɥ⟘", + "lore.pyrite.redstone_trapdoor": "˙roodpar⟘ a otni devraɔ neeb sah taɥt enotsdǝᴚ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.rose": "˙tsap eht fo kuihʇ noʎ seʞɐɯ reʍoןɟ dǝɹ sᴉɥ⟘", + "lore.pyrite.rose_bricks": "˙kcolb ᵷnidliub a sa desu eb nac dna ,esoᴚ deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘", + "lore.pyrite.rose_dye": "˙eyᗡ ʞniԀ dna deᴚ ᵷnixᴉm morɟ edɐɯ eʎd dǝɹ Ɐ", + "lore.pyrite.rose_framed_glass": "˙wodniʍ luɟruoloc a sa oʇ desu eb nac dna ,esoᴚ deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.rose_framed_glass_pane": "˙wodniʍ luɟruoloc a sa desu eb naɔ dna ,esoᴚ deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.rose_lamp": "˙dlroʍ ɹuoy pu thᵷil oʇ desu eb nac dna ,esoᴚ deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘", + "lore.pyrite.rose_terracotta_bricks": "˙kcolb ᵷnidliub a sa desu eb nac dna ,esoᴚ deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘", + "lore.pyrite.rose_torch": "˙dlroʍ ruoy pu thᵷil oʇ desu eb nac dna ,esoᴚ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.rose_torch_lever": "˙thᵷis nialp ni enotsdeR edih oʇ desu eb nac dna ,esoᴚ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.smooth_amethyst": "˙htooms yןtcefrep eb ot devraɔ neeb sah taht tsʎɥtǝɯA ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.smooth_copper": "˙htooɯs ʎןtcefrep eb ot pevraɔ neeb sah taɥt rǝpdoƆ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.smooth_diamond": "˙htooms ʎןtcefrep eb ot devraɔ neǝb sah taɥt dnoɯaiᗡ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.smooth_emerald": "˙htooms ʎltcefrep eb ot devraɔ neeb sah taɥt dןarǝɯƎ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.smooth_exposed_copper": "˙htooɯs ʎןtcefrep eb ot devraɔ neeb sah taɥt reppoƆ pǝsodxƎ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.smooth_gold": "˙htooɯs ʎltcefrep eb ot devraɔ neǝb sah taɥt dןo⅁ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.smooth_iron": "˙htooɯs ʎןtcefrep eb ot devraɔ neǝb sah taɥt norI ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.smooth_lapis": "˙htooɯs ʎןtcefrep eb ot pevraɔ neǝb sah taɥt sidaꞀ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.smooth_netherite": "˙htooɯs ʎןtcefrep eb ot devraɔ neeb sah taht etireɥtǝN ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.smooth_oxidized_copper": "˙htooɯs ʎןtcefrep eb ot devraɔ neeb sah taɥt reppoƆ dǝzidixO ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.smooth_quartz": "˙htooɯs ʎןtcefrep eb ot devraɔ neǝb sah taɥt ztrauꝹ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.smooth_redstone": "˙htooɯs ʎןtcefrep eb ot devraɔ neeb sah taɥt enotsdǝᴚ ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.smooth_stone_bricks": " ˙sʞcirb otni devraɔ neeb sah taht ǝnotS ɥtooɯS ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.smooth_weathered_copper": "˙htooɯs ʎןtcefrep eb ot devraɔ neeb sah taht reppoƆ dereɥtaǝM ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.soul_torch_lever": "˙thᵷis nialp ni enotsdeᴚ edih oʇ desu ǝb uɐc hɔɹoT ןnoS sᴉɥ⟘", + "lore.pyrite.star_bricks": "˙kcolb ᵷnidliub a sa desu eb nac dna ,ratS rehteN a hʇiʍ deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘", + "lore.pyrite.star_dye": "˙wolg thgirb a ti htiʍ detfarc skɔoןb seʌᴉᵷ taht ,ratS reɥʇeN a morɟ edaɯ ǝʎd ʞɹɐd Ɐ", + "lore.pyrite.star_framed_glass": "˙wodniw luɟruoloc a sa ot desu eb nac dna ,ratS rehteN a hʇiʍ deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.star_framed_glass_pane": "˙wodniw luɟruoloc a sa desu eb naɔ dna ,ratS rehteN a hʇiʍ deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.star_lamp": "˙dlrow ruoy pu thᵷil ot desu eb nac dna ,ratS ɹehteN a hʇiʍ deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘", + "lore.pyrite.star_terracotta_bricks": "˙kcolb ᵷnidliub a sa desu eb nac dna ,ratS rehteN a htiʍ deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘", + "lore.pyrite.star_torch": "˙dlrow ruoy pu thᵷil ot desu eb nac dna ,ratS rehteN a hʇiʍ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.star_torch_lever": "˙thᵷis nialp ni enotsdeᴚ edih ot desu eb nac dna ,ratS rehteN a hʇiʍ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.torch_lever": "˙thᵷis niaןp ni enotsdeᴚ edih oʇ desu ǝb nɐc hɔɹoT sᴉɥ⟘", + "lore.pyrite.weathered_copper_pillar": "˙ralןiԀ a otni devraɔ neeb sah taht reppoƆ dereɥtaǝM ɟo ʇnaᴉɹɐʌ Ɐ", + "lore.pyrite.white_bricks": "˙kcolb ᵷnidliub a sa desu eb nac dna ,eʇihM deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘", + "lore.pyrite.white_framed_glass": "˙wodniʍ luɟruoloc a sa ot desu eb nac dna ,eʇihM deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.white_framed_glass_pane": "˙wodniʍ luɟruoloc a sa desu eb naɔ dna ,eʇihM deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.white_lamp": "˙dlroʍ ɹuoy pu thᵷil ot desu eb nac dna ,eʇihM deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘", + "lore.pyrite.white_rose": "˙tsad eht fo kuiht noʎ seʞɐɯ ɹewoןɟ ǝʇihʍ sᴉɥ⟘", + "lore.pyrite.white_terracotta_bricks": "˙kcolb ᵷnidliub a sa desu eb nac dna ,etihM deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘", + "lore.pyrite.white_torch": "˙dlroʍ ruoy pu thᵷil ot desu eb nac dna ,eʇihM deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.white_torch_lever": "˙thᵷis nialp ni enotsdeᴚ edih ot desu eb nac dna ,eʇihM deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.yellow_bricks": "˙kcolb ᵷnidliub a sa desu eb nac dna ,ʍolle⅄ deʎd neǝb sɐh kcoןb ʞɔiɹᗺ sᴉɥ⟘", + "lore.pyrite.yellow_framed_glass": "˙wodniw luɟruoloc a sa oʇ desu eb nac dna ,ʍolle⅄ deʎd neeb sah ʞɔolb ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.yellow_framed_glass_pane": "˙wodniw luɟruoloc a sa desu eb naɔ dna ,ʍolle⅄ deʎd neeb sah enaԀ ssaן⅁ dǝɯɐɹℲ sᴉɥ⟘", + "lore.pyrite.yellow_lamp": "˙dlrow ɹuoy pu thᵷil oʇ desu eb nac dna ,ʍolle⅄ deʎp neǝb sah ʞɔoןb dɯɐꞀ sᴉɥ⟘", + "lore.pyrite.yellow_terracotta_bricks": "˙kcolb ᵷnidliub a sa desu eb nac dna ,ʍolle⅄ deʎd neeb sah kcoןb ʞcirᗺ atʇoɔɐrɹǝT sᴉɥ⟘", + "lore.pyrite.yellow_torch": "˙dlrow ruoy pu thᵷil oʇ desu eb nac dna ,ʍolle⅄ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "lore.pyrite.yellow_torch_lever": "˙thᵷis nialp ni enotsdeᴚ edih oʇ desu eb nac dna ,ʍolle⅄ deʎd neǝb sɐh ʞcoןb hɔɹoT sᴉɥ⟘", + "tag.item.pyrite.copper_doors": "srooᗡ ɹǝpdoƆ", + "tag.item.pyrite.crafting_tables": "sǝןba⟘ ᵷnᴉʇɟɐɹƆ", + "tag.item.pyrite.metal_doors": "sɹooᗡ ןɐʇǝM", + "tag.item.pyrite.mushroom_stem": "smǝʇS ɯooɹɥsnM", + "tag.pyrite.brick_wall_gates.description": "˙rood a ekil penedo eb uac ti ʇnb ,llaM ɐ selbɯesǝɹ ʞɔoןb sᴉɥ⟘", + "tag.pyrite.crafting_tables.description": "˙ᵷnitfarc lamron eht naht smeti fo uoitceles deiraʌ ǝroɯ a tɟaɹc oʇ noʎ sʍollɐ ʞɔoןb sᴉɥ⟘", + "tag.pyrite.ladders.description": "˙ʎllacitɹeʌ bɯilc oʇ desu ǝb nɐc ʞɔoןb sᴉɥ⟘", + "tag.pyrite.metal_bars.description": "˙reʌo depɯuɾ eb nac ʇub ,reirɹab a sa desu ǝb nɐc ʞɔoןb sᴉɥ⟘", + "tag.pyrite.turf_carpets.description": "˙sthᵷil edih ot decalp eb nac dua ,ɟrnT ekil kool sʞcoןb eʌᴉʇɐɹoɔed esǝɥ⟘", + "tag.pyrite.wall_gates.description": "˙rood a ekil penedo eb uac ti ʇnb ,llaM ɐ selbɯesǝɹ ʞɔoןb sᴉɥ⟘", + "block.pyrite.torch_lever": "reʌǝꞀ ɥɔɹo⟘", + "block.pyrite.redstone_torch_lever": "reʌeꞀ ɥɔɹo⟘ enoʇsdǝᴚ", + "block.pyrite.soul_torch_lever": "reʌǝꞀ ɥɔɹo⟘ ןnoS", + "block.pyrite.white_stained_button": "nottuᗺ deniɐtS ǝʇᴉɥM", + "block.pyrite.white_stained_stairs": "sɹiatS deniɐtS ǝʇᴉɥM", + "block.pyrite.white_stained_slab": "baןS deniɐtS ǝʇᴉɥM", + "block.pyrite.white_stained_pressure_plate": "etaןP erusseɹԀ deniɐtS ǝʇᴉɥM", + "block.pyrite.white_stained_fence": "eɔneℲ deniɐtS ǝʇᴉɥM", + "block.pyrite.white_stained_fence_gate": "eta⅁ eɔneℲ deniɐtS ǝʇᴉɥM", + "block.pyrite.white_stained_planks": "sʞnaןԀ deniɐtS ǝʇᴉɥM", + "block.pyrite.white_stained_crafting_table": "eןba⟘ ᵷnitɟaɹƆ deniɐtS ǝʇᴉɥM", + "block.pyrite.white_stained_ladder": "ɹeddaꞀ deniɐtS ǝʇᴉɥM", + "block.pyrite.white_stained_door": "ɹooᗡ deniɐtS ǝʇᴉɥM", + "block.pyrite.white_stained_sign": "nᵷiS deniɐtS ǝʇᴉɥM", + "block.pyrite.white_stained_hanging_sign": "ngiS gniᵷnaH deniɐtS ǝʇᴉɥM", + "block.pyrite.white_stained_trapdoor": "roodpaɹ⟘ deniɐtS ǝʇᴉɥM", + "block.pyrite.white_bricks": "sʞɔiɹᗺ ǝʇᴉɥM", + "block.pyrite.white_brick_slab": "bɐןS ʞɔiɹᗺ ǝʇᴉɥM", + "block.pyrite.white_brick_stairs": "sriɐtS ʞɔiɹᗺ ǝʇᴉɥM", + "block.pyrite.white_brick_wall": "lןɐW ʞɔiɹᗺ ǝʇᴉɥM", + "block.pyrite.white_brick_wall_gate": "eta⅁ lןɐW ʞɔiɹᗺ ǝʇᴉɥM", + "block.pyrite.white_terracotta_bricks": "sʞcirᗺ attoɔɐrɹe⟘ ǝʇᴉɥM", + "block.pyrite.white_terracotta_brick_slab": "baןS ʞcirᗺ attoɔɐrɹe⟘ ǝʇᴉɥM", + "block.pyrite.white_terracotta_brick_stairs": "sriatS ʞcirᗺ attoɔɐrɹe⟘ ǝʇᴉɥM", + "block.pyrite.white_terracotta_brick_wall": "lןaW ʞcirᗺ attoɔɐrɹe⟘ ǝʇᴉɥM", + "block.pyrite.white_terracotta_brick_wall_gate": "eta⅁ lןaW ʞcirᗺ attoɔɐrɹe⟘ ǝʇᴉɥM", + "block.pyrite.white_lamp": "dɯɐꞀ ǝʇᴉɥM", + "block.pyrite.white_torch": "hɔɹo⟘ ǝʇᴉɥM", + "block.pyrite.white_torch_lever": "reʌeꞀ hɔɹo⟘ ǝʇᴉɥM", + "block.pyrite.white_framed_glass": "ssaן⅁ deɯɐɹℲ ǝʇᴉɥM", + "block.pyrite.white_framed_glass_pane": "enaԀ ssaן⅁ deɯɐɹℲ ǝʇᴉɥM", + "block.pyrite.orange_stained_button": "nottuᗺ denᴉaʇS ǝᵷnɐɹO", + "block.pyrite.orange_stained_stairs": "sriatS denᴉaʇS ǝᵷnɐɹO", + "block.pyrite.orange_stained_slab": "baןS denᴉaʇS ǝᵷnɐɹO", + "block.pyrite.orange_stained_pressure_plate": "etaןP erusserԀ denᴉaʇS ǝᵷnɐɹO", + "block.pyrite.orange_stained_fence": "eɔneℲ denᴉaʇS ǝᵷnɐɹO", + "block.pyrite.orange_stained_fence_gate": "eta⅁ eɔneℲ denᴉaʇS ǝᵷnɐɹO", + "block.pyrite.orange_stained_planks": "sʞnaןԀ denᴉaʇS ǝᵷnɐɹO", + "block.pyrite.orange_stained_crafting_table": "eןba⟘ gnitɟarƆ denᴉaʇS ǝᵷnɐɹO", + "block.pyrite.orange_stained_ladder": "reddaꞀ denᴉaʇS ǝᵷnɐɹO", + "block.pyrite.orange_stained_door": "rooᗡ denᴉaʇS ǝᵷnɐɹO", + "block.pyrite.orange_stained_sign": "ngiS denᴉaʇS ǝᵷnɐɹO", + "block.pyrite.orange_stained_hanging_sign": "ngiS gnignaH denᴉaʇS ǝᵷnɐɹO", + "block.pyrite.orange_stained_trapdoor": "roodpar⟘ denᴉaʇS ǝᵷnɐɹO", + "block.pyrite.orange_bricks": "sʞɔᴉrᗺ ǝᵷnɐɹO", + "block.pyrite.orange_brick_slab": "baןS ʞɔᴉrᗺ ǝᵷnɐɹO", + "block.pyrite.orange_brick_stairs": "sriaʇS ʞɔᴉrᗺ ǝᵷnɐɹO", + "block.pyrite.orange_brick_wall": "lןaM ʞɔᴉrᗺ ǝᵷnɐɹO", + "block.pyrite.orange_brick_wall_gate": "eʇa⅁ lןaM ʞɔᴉrᗺ ǝᵷnɐɹO", + "block.pyrite.orange_terracotta_bricks": "sʞcᴉrᗺ atʇoɔarre⟘ ǝᵷnɐɹO", + "block.pyrite.orange_terracotta_brick_slab": "baןS ʞcᴉrᗺ atʇoɔarre⟘ ǝᵷnɐɹO", + "block.pyrite.orange_terracotta_brick_stairs": "sriatS ʞcᴉrᗺ atʇoɔarre⟘ ǝᵷnɐɹO", + "block.pyrite.orange_terracotta_brick_wall": "lןaM ʞcᴉrᗺ atʇoɔarre⟘ ǝᵷnɐɹO", + "block.pyrite.orange_terracotta_brick_wall_gate": "eta⅁ lןaM ʞcᴉrᗺ atʇoɔarre⟘ ǝᵷnɐɹO", + "block.pyrite.orange_lamp": "dɯaꞀ ǝᵷnɐɹO", + "block.pyrite.orange_torch": "ɥɔro⟘ ǝᵷnɐɹO", + "block.pyrite.orange_torch_lever": "reʌeꞀ ɥɔro⟘ ǝᵷnɐɹO", + "block.pyrite.orange_framed_glass": "ssaן⅁ deɯarℲ ǝᵷnɐɹO", + "block.pyrite.orange_framed_glass_pane": "enaԀ ssaן⅁ deɯarℲ ǝᵷnɐɹO", + "block.pyrite.magenta_stained_button": "nottuᗺ denᴉatS aʇnǝᵷɐM", + "block.pyrite.magenta_stained_stairs": "sɹiatS denᴉatS aʇnǝᵷɐM", + "block.pyrite.magenta_stained_slab": "baןS denᴉatS aʇnǝᵷɐM", + "block.pyrite.magenta_stained_pressure_plate": "etaןP erusseɹԀ denᴉatS aʇnǝᵷɐM", + "block.pyrite.magenta_stained_fence": "eɔneℲ denᴉatS aʇnǝᵷɐM", + "block.pyrite.magenta_stained_fence_gate": "eta⅁ eɔneℲ denᴉatS aʇnǝᵷɐM", + "block.pyrite.magenta_stained_planks": "sʞnaןԀ denᴉatS aʇnǝᵷɐM", + "block.pyrite.magenta_stained_crafting_table": "eןba⟘ gnitɟaɹƆ denᴉatS aʇnǝᵷɐM", + "block.pyrite.magenta_stained_ladder": "ɹeddaꞀ denᴉatS aʇnǝᵷɐM", + "block.pyrite.magenta_stained_door": "ɹooᗡ denᴉatS aʇnǝᵷɐM", + "block.pyrite.magenta_stained_sign": "ngiS denᴉatS aʇnǝᵷɐM", + "block.pyrite.magenta_stained_hanging_sign": "ngiS gnignaH denᴉatS aʇnǝᵷɐM", + "block.pyrite.magenta_stained_trapdoor": "roodpaɹ⟘ denᴉatS aʇnǝᵷɐM", + "block.pyrite.magenta_bricks": "sʞɔᴉɹᗺ aʇnǝᵷɐM", + "block.pyrite.magenta_brick_slab": "baןS ʞɔᴉɹᗺ aʇnǝᵷɐM", + "block.pyrite.magenta_brick_stairs": "sriatS ʞɔᴉɹᗺ aʇnǝᵷɐM", + "block.pyrite.magenta_brick_wall": "lןaW ʞɔᴉɹᗺ aʇnǝᵷɐM", + "block.pyrite.magenta_brick_wall_gate": "eta⅁ lןaW ʞɔᴉɹᗺ aʇnǝᵷɐM", + "block.pyrite.magenta_terracotta_bricks": "sʞcᴉrᗺ attoɔarɹe⟘ aʇnǝᵷɐM", + "block.pyrite.magenta_terracotta_brick_slab": "baןS ʞcᴉrᗺ attoɔarɹe⟘ aʇnǝᵷɐM", + "block.pyrite.magenta_terracotta_brick_stairs": "sriatS ʞcᴉrᗺ attoɔarɹe⟘ aʇnǝᵷɐM", + "block.pyrite.magenta_terracotta_brick_wall": "lןaW ʞcᴉrᗺ attoɔarɹe⟘ aʇnǝᵷɐM", + "block.pyrite.magenta_terracotta_brick_wall_gate": "eta⅁ lןaW ʞcᴉrᗺ attoɔarɹe⟘ aʇnǝᵷɐM", + "block.pyrite.magenta_lamp": "dɯaꞀ aʇnǝᵷɐM", + "block.pyrite.magenta_torch": "ɥɔɹo⟘ aʇnǝᵷɐM", + "block.pyrite.magenta_torch_lever": "reʌeꞀ ɥɔɹo⟘ aʇnǝᵷɐM", + "block.pyrite.magenta_framed_glass": "ssaן⅁ deɯaɹℲ aʇnǝᵷɐM", + "block.pyrite.magenta_framed_glass_pane": "enaԀ ssaן⅁ deɯaɹℲ aʇnǝᵷɐM", + "block.pyrite.light_blue_stained_button": "nottuB deuiɐtS ǝnןᗺ ʇɥᵷᴉꞀ", + "block.pyrite.light_blue_stained_stairs": "sɹiatS deuiɐtS ǝnןᗺ ʇɥᵷᴉꞀ", + "block.pyrite.light_blue_stained_slab": "balS deuiɐtS ǝnןᗺ ʇɥᵷᴉꞀ", + "block.pyrite.light_blue_stained_pressure_plate": "etalP erusseɹԀ deuiɐtS ǝnןᗺ ʇɥᵷᴉꞀ", + "block.pyrite.light_blue_stained_fence": "eɔneℲ deuiɐtS ǝnןᗺ ʇɥᵷᴉꞀ", + "block.pyrite.light_blue_stained_fence_gate": "eta⅁ eɔneℲ deuiɐtS ǝnןᗺ ʇɥᵷᴉꞀ", + "block.pyrite.light_blue_stained_planks": "sʞnalԀ deuiɐtS ǝnןᗺ ʇɥᵷᴉꞀ", + "block.pyrite.light_blue_stained_crafting_table": "elba⟘ gnitɟaɹƆ deuiɐtS ǝnןᗺ ʇɥᵷᴉꞀ", + "block.pyrite.light_blue_stained_ladder": "ɹeddaL deuiɐtS ǝnןᗺ ʇɥᵷᴉꞀ", + "block.pyrite.light_blue_stained_door": "ɹooᗡ deuiɐtS ǝnןᗺ ʇɥᵷᴉꞀ", + "block.pyrite.light_blue_stained_sign": "ngiS deuiɐtS ǝnןᗺ ʇɥᵷᴉꞀ", + "block.pyrite.light_blue_stained_hanging_sign": "ngiS gnignaH deuiɐtS ǝnןᗺ ʇɥᵷᴉꞀ", + "block.pyrite.light_blue_stained_trapdoor": "roodpaɹ⟘ deuiɐtS ǝnןᗺ ʇɥᵷᴉꞀ", + "block.pyrite.light_blue_bricks": "sʞɔiɹB ǝnןᗺ ʇɥᵷᴉꞀ", + "block.pyrite.light_blue_brick_slab": "bɐlS ʞɔiɹB ǝnןᗺ ʇɥᵷᴉꞀ", + "block.pyrite.light_blue_brick_stairs": "sriɐtS ʞɔiɹB ǝnןᗺ ʇɥᵷᴉꞀ", + "block.pyrite.light_blue_brick_wall": "llɐM ʞɔiɹB ǝnןᗺ ʇɥᵷᴉꞀ", + "block.pyrite.light_blue_brick_wall_gate": "eta⅁ llɐM ʞɔiɹB ǝnןᗺ ʇɥᵷᴉꞀ", + "block.pyrite.light_blue_terracotta_bricks": "sʞcirB attoɔɐrɹe⟘ ǝnןᗺ ʇɥᵷᴉꞀ", + "block.pyrite.light_blue_terracotta_brick_slab": "balS ʞcirB attoɔɐrɹe⟘ ǝnןᗺ ʇɥᵷᴉꞀ", + "block.pyrite.light_blue_terracotta_brick_stairs": "sriatS ʞcirB attoɔɐrɹe⟘ ǝnןᗺ ʇɥᵷᴉꞀ", + "block.pyrite.light_blue_terracotta_brick_wall": "llaM ʞcirB attoɔɐrɹe⟘ ǝnןᗺ ʇɥᵷᴉꞀ", + "block.pyrite.light_blue_terracotta_brick_wall_gate": "eta⅁ llaM ʞcirB attoɔɐrɹe⟘ ǝnןᗺ ʇɥᵷᴉꞀ", + "block.pyrite.light_blue_lamp": "dɯɐL ǝnןᗺ ʇɥᵷᴉꞀ", + "block.pyrite.light_blue_torch": "hɔɹo⟘ ǝnןᗺ ʇɥᵷᴉꞀ", + "block.pyrite.light_blue_torch_lever": "reʌeL hɔɹo⟘ ǝnןᗺ ʇɥᵷᴉꞀ", + "block.pyrite.light_blue_framed_glass": "ssal⅁ deɯɐɹℲ ǝnןᗺ ʇɥᵷᴉꞀ", + "block.pyrite.light_blue_framed_glass_pane": "euaԀ ssal⅁ deɯɐɹℲ ǝnןᗺ ʇɥᵷᴉꞀ", + "block.pyrite.yellow_stained_button": "nottuᗺ denᴉɐʇS ʍolןǝ⅄", + "block.pyrite.yellow_stained_stairs": "sɹiatS denᴉɐʇS ʍolןǝ⅄", + "block.pyrite.yellow_stained_slab": "balS denᴉɐʇS ʍolןǝ⅄", + "block.pyrite.yellow_stained_pressure_plate": "etalP erusseɹԀ denᴉɐʇS ʍolןǝ⅄", + "block.pyrite.yellow_stained_fence": "eɔneℲ denᴉɐʇS ʍolןǝ⅄", + "block.pyrite.yellow_stained_fence_gate": "eta⅁ eɔneℲ denᴉɐʇS ʍolןǝ⅄", + "block.pyrite.yellow_stained_planks": "sʞnalԀ denᴉɐʇS ʍolןǝ⅄", + "block.pyrite.yellow_stained_crafting_table": "elba⟘ ᵷnitɟaɹƆ denᴉɐʇS ʍolןǝ⅄", + "block.pyrite.yellow_stained_ladder": "ɹeddaꞀ denᴉɐʇS ʍolןǝ⅄", + "block.pyrite.yellow_stained_door": "ɹooᗡ denᴉɐʇS ʍolןǝ⅄", + "block.pyrite.yellow_stained_sign": "nᵷiS denᴉɐʇS ʍolןǝ⅄", + "block.pyrite.yellow_stained_hanging_sign": "ngiS gniᵷnaH denᴉɐʇS ʍolןǝ⅄", + "block.pyrite.yellow_stained_trapdoor": "roodpaɹ⟘ denᴉɐʇS ʍolןǝ⅄", + "block.pyrite.yellow_bricks": "sʞɔᴉɹᗺ ʍolןǝ⅄", + "block.pyrite.yellow_brick_slab": "bɐlS ʞɔᴉɹᗺ ʍolןǝ⅄", + "block.pyrite.yellow_brick_stairs": "sriɐʇS ʞɔᴉɹᗺ ʍolןǝ⅄", + "block.pyrite.yellow_brick_wall": "llɐM ʞɔᴉɹᗺ ʍolןǝ⅄", + "block.pyrite.yellow_brick_wall_gate": "eʇa⅁ llɐM ʞɔᴉɹᗺ ʍolןǝ⅄", + "block.pyrite.yellow_terracotta_bricks": "sʞcᴉrᗺ atʇoɔɐrɹe⟘ ʍolןǝ⅄", + "block.pyrite.yellow_terracotta_brick_slab": "balS ʞcᴉrᗺ atʇoɔɐrɹe⟘ ʍolןǝ⅄", + "block.pyrite.yellow_terracotta_brick_stairs": "sriatS ʞcᴉrᗺ atʇoɔɐrɹe⟘ ʍolןǝ⅄", + "block.pyrite.yellow_terracotta_brick_wall": "llaM ʞcᴉrᗺ atʇoɔɐrɹe⟘ ʍolןǝ⅄", + "block.pyrite.yellow_terracotta_brick_wall_gate": "eta⅁ llaM ʞcᴉrᗺ atʇoɔɐrɹe⟘ ʍolןǝ⅄", + "block.pyrite.yellow_lamp": "dɯɐꞀ ʍolןǝ⅄", + "block.pyrite.yellow_torch": "ɥɔɹo⟘ ʍolןǝ⅄", + "block.pyrite.yellow_torch_lever": "reʌeꞀ ɥɔɹo⟘ ʍolןǝ⅄", + "block.pyrite.yellow_framed_glass": "ssal⅁ deɯɐɹℲ ʍolןǝ⅄", + "block.pyrite.yellow_framed_glass_pane": "enaԀ ssal⅁ deɯɐɹℲ ʍolןǝ⅄", + "block.pyrite.lime_stained_button": "nottuᗺ deniɐʇS ǝɯᴉꞀ", + "block.pyrite.lime_stained_stairs": "sɹiatS deniɐʇS ǝɯᴉꞀ", + "block.pyrite.lime_stained_slab": "baןS deniɐʇS ǝɯᴉꞀ", + "block.pyrite.lime_stained_pressure_plate": "etaןP erusseɹԀ deniɐʇS ǝɯᴉꞀ", + "block.pyrite.lime_stained_fence": "eɔneℲ deniɐʇS ǝɯᴉꞀ", + "block.pyrite.lime_stained_fence_gate": "eta⅁ eɔneℲ deniɐʇS ǝɯᴉꞀ", + "block.pyrite.lime_stained_planks": "sʞnaןԀ deniɐʇS ǝɯᴉꞀ", + "block.pyrite.lime_stained_crafting_table": "eןba⟘ ᵷnitɟaɹƆ deniɐʇS ǝɯᴉꞀ", + "block.pyrite.lime_stained_ladder": "ɹeddaL deniɐʇS ǝɯᴉꞀ", + "block.pyrite.lime_stained_door": "ɹooᗡ deniɐʇS ǝɯᴉꞀ", + "block.pyrite.lime_stained_sign": "nᵷiS deniɐʇS ǝɯᴉꞀ", + "block.pyrite.lime_stained_hanging_sign": "ngiS gniᵷnaH deniɐʇS ǝɯᴉꞀ", + "block.pyrite.lime_stained_trapdoor": "roodpaɹ⟘ deniɐʇS ǝɯᴉꞀ", + "block.pyrite.lime_bricks": "sʞɔiɹᗺ ǝɯᴉꞀ", + "block.pyrite.lime_brick_slab": "bɐןS ʞɔiɹᗺ ǝɯᴉꞀ", + "block.pyrite.lime_brick_stairs": "sriɐʇS ʞɔiɹᗺ ǝɯᴉꞀ", + "block.pyrite.lime_brick_wall": "lןɐM ʞɔiɹᗺ ǝɯᴉꞀ", + "block.pyrite.lime_brick_wall_gate": "eʇa⅁ lןɐM ʞɔiɹᗺ ǝɯᴉꞀ", + "block.pyrite.lime_terracotta_bricks": "sʞcirᗺ atʇoɔɐrɹe⟘ ǝɯᴉꞀ", + "block.pyrite.lime_terracotta_brick_slab": "baןS ʞcirᗺ atʇoɔɐrɹe⟘ ǝɯᴉꞀ", + "block.pyrite.lime_terracotta_brick_stairs": "sriatS ʞcirᗺ atʇoɔɐrɹe⟘ ǝɯᴉꞀ", + "block.pyrite.lime_terracotta_brick_wall": "lןaM ʞcirᗺ atʇoɔɐrɹe⟘ ǝɯᴉꞀ", + "block.pyrite.lime_terracotta_brick_wall_gate": "eta⅁ lןaM ʞcirᗺ atʇoɔɐrɹe⟘ ǝɯᴉꞀ", + "block.pyrite.lime_lamp": "dmɐL ǝɯᴉꞀ", + "block.pyrite.lime_torch": "ɥɔɹo⟘ ǝɯᴉꞀ", + "block.pyrite.lime_torch_lever": "reʌeL ɥɔɹo⟘ ǝɯᴉꞀ", + "block.pyrite.lime_framed_glass": "ssaן⅁ demɐɹℲ ǝɯᴉꞀ", + "block.pyrite.lime_framed_glass_pane": "enaԀ ssaן⅁ demɐɹℲ ǝɯᴉꞀ", + "block.pyrite.pink_stained_button": "nottuᗺ dǝniɐʇS ʞnᴉԀ", + "block.pyrite.pink_stained_stairs": "sɹiatS dǝniɐʇS ʞnᴉԀ", + "block.pyrite.pink_stained_slab": "baןS dǝniɐʇS ʞnᴉԀ", + "block.pyrite.pink_stained_pressure_plate": "etaןP erusseɹP dǝniɐʇS ʞnᴉԀ", + "block.pyrite.pink_stained_fence": "eɔneℲ dǝniɐʇS ʞnᴉԀ", + "block.pyrite.pink_stained_fence_gate": "eta⅁ eɔneℲ dǝniɐʇS ʞnᴉԀ", + "block.pyrite.pink_stained_planks": "sknaןP dǝniɐʇS ʞnᴉԀ", + "block.pyrite.pink_stained_crafting_table": "eןba⟘ ᵷnitɟaɹƆ dǝniɐʇS ʞnᴉԀ", + "block.pyrite.pink_stained_ladder": "ɹeddaꞀ dǝniɐʇS ʞnᴉԀ", + "block.pyrite.pink_stained_door": "ɹooᗡ dǝniɐʇS ʞnᴉԀ", + "block.pyrite.pink_stained_sign": "nᵷiS dǝniɐʇS ʞnᴉԀ", + "block.pyrite.pink_stained_hanging_sign": "ngiS gniᵷnaH dǝniɐʇS ʞnᴉԀ", + "block.pyrite.pink_stained_trapdoor": "roodpaɹ⟘ dǝniɐʇS ʞnᴉԀ", + "block.pyrite.pink_bricks": "skɔiɹᗺ ʞnᴉԀ", + "block.pyrite.pink_brick_slab": "bɐןS kɔiɹᗺ ʞnᴉԀ", + "block.pyrite.pink_brick_stairs": "sriɐʇS kɔiɹᗺ ʞnᴉԀ", + "block.pyrite.pink_brick_wall": "lןɐM kɔiɹᗺ ʞnᴉԀ", + "block.pyrite.pink_brick_wall_gate": "ǝʇa⅁ lןɐM kɔiɹᗺ ʞnᴉԀ", + "block.pyrite.pink_terracotta_bricks": "skcirᗺ atʇoɔɐrɹǝ⟘ ʞnᴉԀ", + "block.pyrite.pink_terracotta_brick_slab": "baןS kcirᗺ atʇoɔɐrɹǝ⟘ ʞnᴉԀ", + "block.pyrite.pink_terracotta_brick_stairs": "sriatS kcirᗺ atʇoɔɐrɹǝ⟘ ʞnᴉԀ", + "block.pyrite.pink_terracotta_brick_wall": "lןaM kcirᗺ atʇoɔɐrɹǝ⟘ ʞnᴉԀ", + "block.pyrite.pink_terracotta_brick_wall_gate": "eta⅁ lןaM kcirᗺ atʇoɔɐrɹǝ⟘ ʞnᴉԀ", + "block.pyrite.pink_lamp": "dɯɐꞀ ʞnᴉԀ", + "block.pyrite.pink_torch": "ɥɔɹo⟘ ʞnᴉԀ", + "block.pyrite.pink_torch_lever": "reʌǝꞀ ɥɔɹo⟘ ʞnᴉԀ", + "block.pyrite.pink_framed_glass": "ssaן⅁ dǝɯɐɹℲ ʞnᴉԀ", + "block.pyrite.pink_framed_glass_pane": "enaP ssaן⅁ dǝɯɐɹℲ ʞnᴉԀ", + "block.pyrite.gray_stained_button": "nottuᗺ dǝnᴉaʇS ʎɐɹ⅁", + "block.pyrite.gray_stained_stairs": "sriatS dǝnᴉaʇS ʎɐɹ⅁", + "block.pyrite.gray_stained_slab": "baןS dǝnᴉaʇS ʎɐɹ⅁", + "block.pyrite.gray_stained_pressure_plate": "etaןP erusserԀ dǝnᴉaʇS ʎɐɹ⅁", + "block.pyrite.gray_stained_fence": "eɔneℲ dǝnᴉaʇS ʎɐɹ⅁", + "block.pyrite.gray_stained_fence_gate": "etaG eɔneℲ dǝnᴉaʇS ʎɐɹ⅁", + "block.pyrite.gray_stained_planks": "sʞnaןԀ dǝnᴉaʇS ʎɐɹ⅁", + "block.pyrite.gray_stained_crafting_table": "eןba⟘ ᵷnitɟarƆ dǝnᴉaʇS ʎɐɹ⅁", + "block.pyrite.gray_stained_ladder": "reddaꞀ dǝnᴉaʇS ʎɐɹ⅁", + "block.pyrite.gray_stained_door": "rooᗡ dǝnᴉaʇS ʎɐɹ⅁", + "block.pyrite.gray_stained_sign": "nᵷiS dǝnᴉaʇS ʎɐɹ⅁", + "block.pyrite.gray_stained_hanging_sign": "ngiS gniᵷnaH dǝnᴉaʇS ʎɐɹ⅁", + "block.pyrite.gray_stained_trapdoor": "roodpar⟘ dǝnᴉaʇS ʎɐɹ⅁", + "block.pyrite.gray_bricks": "sʞɔᴉrᗺ ʎɐɹ⅁", + "block.pyrite.gray_brick_slab": "baןS ʞɔᴉrᗺ ʎɐɹ⅁", + "block.pyrite.gray_brick_stairs": "sriaʇS ʞɔᴉrᗺ ʎɐɹ⅁", + "block.pyrite.gray_brick_wall": "lןaM ʞɔᴉrᗺ ʎɐɹ⅁", + "block.pyrite.gray_brick_wall_gate": "ǝʇaG lןaM ʞɔᴉrᗺ ʎɐɹ⅁", + "block.pyrite.gray_terracotta_bricks": "sʞcᴉrᗺ atʇoɔarrǝ⟘ ʎɐɹ⅁", + "block.pyrite.gray_terracotta_brick_slab": "baןS ʞcᴉrᗺ atʇoɔarrǝ⟘ ʎɐɹ⅁", + "block.pyrite.gray_terracotta_brick_stairs": "sriatS ʞcᴉrᗺ atʇoɔarrǝ⟘ ʎɐɹ⅁", + "block.pyrite.gray_terracotta_brick_wall": "lןaM ʞcᴉrᗺ atʇoɔarrǝ⟘ ʎɐɹ⅁", + "block.pyrite.gray_terracotta_brick_wall_gate": "etaG lןaM ʞcᴉrᗺ atʇoɔarrǝ⟘ ʎɐɹ⅁", + "block.pyrite.gray_lamp": "dɯaꞀ ʎɐɹ⅁", + "block.pyrite.gray_torch": "ɥɔro⟘ ʎɐɹ⅁", + "block.pyrite.gray_torch_lever": "reʌǝꞀ ɥɔro⟘ ʎɐɹ⅁", + "block.pyrite.gray_framed_glass": "ssaןG dǝɯarℲ ʎɐɹ⅁", + "block.pyrite.gray_framed_glass_pane": "enaԀ ssaןG dǝɯarℲ ʎɐɹ⅁", + "block.pyrite.light_gray_stained_button": "nottuᗺ dǝniatS ʎɐɹ⅁ ʇɥᵷᴉꞀ", + "block.pyrite.light_gray_stained_stairs": "sriatS dǝniatS ʎɐɹ⅁ ʇɥᵷᴉꞀ", + "block.pyrite.light_gray_stained_slab": "baןS dǝniatS ʎɐɹ⅁ ʇɥᵷᴉꞀ", + "block.pyrite.light_gray_stained_pressure_plate": "etaןP erusserԀ dǝniatS ʎɐɹ⅁ ʇɥᵷᴉꞀ", + "block.pyrite.light_gray_stained_fence": "eɔneℲ dǝniatS ʎɐɹ⅁ ʇɥᵷᴉꞀ", + "block.pyrite.light_gray_stained_fence_gate": "etaG eɔneℲ dǝniatS ʎɐɹ⅁ ʇɥᵷᴉꞀ", + "block.pyrite.light_gray_stained_planks": "sʞnaןԀ dǝniatS ʎɐɹ⅁ ʇɥᵷᴉꞀ", + "block.pyrite.light_gray_stained_crafting_table": "eןba⟘ gnitɟarƆ dǝniatS ʎɐɹ⅁ ʇɥᵷᴉꞀ", + "block.pyrite.light_gray_stained_ladder": "reddaL dǝniatS ʎɐɹ⅁ ʇɥᵷᴉꞀ", + "block.pyrite.light_gray_stained_door": "rooᗡ dǝniatS ʎɐɹ⅁ ʇɥᵷᴉꞀ", + "block.pyrite.light_gray_stained_sign": "ngiS dǝniatS ʎɐɹ⅁ ʇɥᵷᴉꞀ", + "block.pyrite.light_gray_stained_hanging_sign": "ngiS gnignaH dǝniatS ʎɐɹ⅁ ʇɥᵷᴉꞀ", + "block.pyrite.light_gray_stained_trapdoor": "roodpar⟘ dǝniatS ʎɐɹ⅁ ʇɥᵷᴉꞀ", + "block.pyrite.light_gray_bricks": "sʞɔirᗺ ʎɐɹ⅁ ʇɥᵷᴉꞀ", + "block.pyrite.light_gray_brick_slab": "baןS ʞɔirᗺ ʎɐɹ⅁ ʇɥᵷᴉꞀ", + "block.pyrite.light_gray_brick_stairs": "sriatS ʞɔirᗺ ʎɐɹ⅁ ʇɥᵷᴉꞀ", + "block.pyrite.light_gray_brick_wall": "lןaM ʞɔirᗺ ʎɐɹ⅁ ʇɥᵷᴉꞀ", + "block.pyrite.light_gray_brick_wall_gate": "ǝtaG lןaM ʞɔirᗺ ʎɐɹ⅁ ʇɥᵷᴉꞀ", + "block.pyrite.light_gray_terracotta_bricks": "sʞcirᗺ attoɔarrǝ⟘ ʎɐɹ⅁ ʇɥᵷᴉꞀ", + "block.pyrite.light_gray_terracotta_brick_slab": "baןS ʞcirᗺ attoɔarrǝ⟘ ʎɐɹ⅁ ʇɥᵷᴉꞀ", + "block.pyrite.light_gray_terracotta_brick_stairs": "sriatS ʞcirᗺ attoɔarrǝ⟘ ʎɐɹ⅁ ʇɥᵷᴉꞀ", + "block.pyrite.light_gray_terracotta_brick_wall": "lןaM ʞcirᗺ attoɔarrǝ⟘ ʎɐɹ⅁ ʇɥᵷᴉꞀ", + "block.pyrite.light_gray_terracotta_brick_wall_gate": "etaG lןaM ʞcirᗺ attoɔarrǝ⟘ ʎɐɹ⅁ ʇɥᵷᴉꞀ", + "block.pyrite.light_gray_lamp": "dɯaL ʎɐɹ⅁ ʇɥᵷᴉꞀ", + "block.pyrite.light_gray_torch": "hɔro⟘ ʎɐɹ⅁ ʇɥᵷᴉꞀ", + "block.pyrite.light_gray_torch_lever": "reʌǝL hɔro⟘ ʎɐɹ⅁ ʇɥᵷᴉꞀ", + "block.pyrite.light_gray_framed_glass": "ssaןG dǝɯarℲ ʎɐɹ⅁ ʇɥᵷᴉꞀ", + "block.pyrite.light_gray_framed_glass_pane": "enaԀ ssaןG dǝɯarℲ ʎɐɹ⅁ ʇɥᵷᴉꞀ", + "block.pyrite.cyan_stained_button": "nottuᗺ dǝnᴉaʇS nɐʎƆ", + "block.pyrite.cyan_stained_stairs": "sɹiatS dǝnᴉaʇS nɐʎƆ", + "block.pyrite.cyan_stained_slab": "baןS dǝnᴉaʇS nɐʎƆ", + "block.pyrite.cyan_stained_pressure_plate": "etaןP erusseɹԀ dǝnᴉaʇS nɐʎƆ", + "block.pyrite.cyan_stained_fence": "eɔneℲ dǝnᴉaʇS nɐʎƆ", + "block.pyrite.cyan_stained_fence_gate": "eta⅁ eɔneℲ dǝnᴉaʇS nɐʎƆ", + "block.pyrite.cyan_stained_planks": "sʞnaןԀ dǝnᴉaʇS nɐʎƆ", + "block.pyrite.cyan_stained_crafting_table": "eןba⟘ ᵷnitɟaɹC dǝnᴉaʇS nɐʎƆ", + "block.pyrite.cyan_stained_ladder": "ɹeddaꞀ dǝnᴉaʇS nɐʎƆ", + "block.pyrite.cyan_stained_door": "ɹooᗡ dǝnᴉaʇS nɐʎƆ", + "block.pyrite.cyan_stained_sign": "nᵷiS dǝnᴉaʇS nɐʎƆ", + "block.pyrite.cyan_stained_hanging_sign": "ngiS gniᵷnaH dǝnᴉaʇS nɐʎƆ", + "block.pyrite.cyan_stained_trapdoor": "roodpaɹ⟘ dǝnᴉaʇS nɐʎƆ", + "block.pyrite.cyan_bricks": "sʞɔᴉɹᗺ nɐʎƆ", + "block.pyrite.cyan_brick_slab": "baןS ʞɔᴉɹᗺ nɐʎƆ", + "block.pyrite.cyan_brick_stairs": "sriaʇS ʞɔᴉɹᗺ nɐʎƆ", + "block.pyrite.cyan_brick_wall": "lןaM ʞɔᴉɹᗺ nɐʎƆ", + "block.pyrite.cyan_brick_wall_gate": "ǝʇa⅁ lןaM ʞɔᴉɹᗺ nɐʎƆ", + "block.pyrite.cyan_terracotta_bricks": "sʞcᴉrᗺ atʇoɔarɹǝ⟘ nɐʎƆ", + "block.pyrite.cyan_terracotta_brick_slab": "baןS ʞcᴉrᗺ atʇoɔarɹǝ⟘ nɐʎƆ", + "block.pyrite.cyan_terracotta_brick_stairs": "sriatS ʞcᴉrᗺ atʇoɔarɹǝ⟘ nɐʎƆ", + "block.pyrite.cyan_terracotta_brick_wall": "lןaM ʞcᴉrᗺ atʇoɔarɹǝ⟘ nɐʎƆ", + "block.pyrite.cyan_terracotta_brick_wall_gate": "eta⅁ lןaM ʞcᴉrᗺ atʇoɔarɹǝ⟘ nɐʎƆ", + "block.pyrite.cyan_lamp": "dɯaꞀ nɐʎƆ", + "block.pyrite.cyan_torch": "ɥɔɹo⟘ nɐʎƆ", + "block.pyrite.cyan_torch_lever": "reʌǝꞀ ɥɔɹo⟘ nɐʎƆ", + "block.pyrite.cyan_framed_glass": "ssaן⅁ dǝɯaɹℲ nɐʎƆ", + "block.pyrite.cyan_framed_glass_pane": "enaԀ ssaן⅁ dǝɯaɹℲ nɐʎƆ", + "block.pyrite.purple_stained_button": "nottuᗺ peuᴉɐʇS ǝןdɹnԀ", + "block.pyrite.purple_stained_stairs": "sriatS peuᴉɐʇS ǝןdɹnԀ", + "block.pyrite.purple_stained_slab": "balS peuᴉɐʇS ǝןdɹnԀ", + "block.pyrite.purple_stained_pressure_plate": "etalP erusserP peuᴉɐʇS ǝןdɹnԀ", + "block.pyrite.purple_stained_fence": "eɔneℲ peuᴉɐʇS ǝןdɹnԀ", + "block.pyrite.purple_stained_fence_gate": "eta⅁ eɔneℲ peuᴉɐʇS ǝןdɹnԀ", + "block.pyrite.purple_stained_planks": "sʞnalP peuᴉɐʇS ǝןdɹnԀ", + "block.pyrite.purple_stained_crafting_table": "elba⟘ ᵷnitɟarƆ peuᴉɐʇS ǝןdɹnԀ", + "block.pyrite.purple_stained_ladder": "reddaꞀ peuᴉɐʇS ǝןdɹnԀ", + "block.pyrite.purple_stained_door": "rooᗡ peuᴉɐʇS ǝןdɹnԀ", + "block.pyrite.purple_stained_sign": "nᵷiS peuᴉɐʇS ǝןdɹnԀ", + "block.pyrite.purple_stained_hanging_sign": "ngiS gniᵷnaH peuᴉɐʇS ǝןdɹnԀ", + "block.pyrite.purple_stained_trapdoor": "roodpar⟘ peuᴉɐʇS ǝןdɹnԀ", + "block.pyrite.purple_bricks": "sʞɔᴉrᗺ ǝןdɹnԀ", + "block.pyrite.purple_brick_slab": "bɐlS ʞɔᴉrᗺ ǝןdɹnԀ", + "block.pyrite.purple_brick_stairs": "sriɐʇS ʞɔᴉrᗺ ǝןdɹnԀ", + "block.pyrite.purple_brick_wall": "llɐM ʞɔᴉrᗺ ǝןdɹnԀ", + "block.pyrite.purple_brick_wall_gate": "eʇa⅁ llɐM ʞɔᴉrᗺ ǝןdɹnԀ", + "block.pyrite.purple_terracotta_bricks": "sʞcᴉrᗺ atʇoɔɐrre⟘ ǝןdɹnԀ", + "block.pyrite.purple_terracotta_brick_slab": "balS ʞcᴉrᗺ atʇoɔɐrre⟘ ǝןdɹnԀ", + "block.pyrite.purple_terracotta_brick_stairs": "sriatS ʞcᴉrᗺ atʇoɔɐrre⟘ ǝןdɹnԀ", + "block.pyrite.purple_terracotta_brick_wall": "llaM ʞcᴉrᗺ atʇoɔɐrre⟘ ǝןdɹnԀ", + "block.pyrite.purple_terracotta_brick_wall_gate": "eta⅁ llaM ʞcᴉrᗺ atʇoɔɐrre⟘ ǝןdɹnԀ", + "block.pyrite.purple_lamp": "pɯɐꞀ ǝןdɹnԀ", + "block.pyrite.purple_torch": "ɥɔro⟘ ǝןdɹnԀ", + "block.pyrite.purple_torch_lever": "reʌeꞀ ɥɔro⟘ ǝןdɹnԀ", + "block.pyrite.purple_framed_glass": "ssal⅁ peɯɐrℲ ǝןdɹnԀ", + "block.pyrite.purple_framed_glass_pane": "euaP ssal⅁ peɯɐrℲ ǝןdɹnԀ", + "block.pyrite.blue_stained_button": "nottuB deuᴉɐʇS ǝnןᗺ", + "block.pyrite.blue_stained_stairs": "sɹiatS deuᴉɐʇS ǝnןᗺ", + "block.pyrite.blue_stained_slab": "balS deuᴉɐʇS ǝnןᗺ", + "block.pyrite.blue_stained_pressure_plate": "etalP erusseɹԀ deuᴉɐʇS ǝnןᗺ", + "block.pyrite.blue_stained_fence": "eɔneℲ deuᴉɐʇS ǝnןᗺ", + "block.pyrite.blue_stained_fence_gate": "eta⅁ eɔneℲ deuᴉɐʇS ǝnןᗺ", + "block.pyrite.blue_stained_planks": "sʞnalԀ deuᴉɐʇS ǝnןᗺ", + "block.pyrite.blue_stained_crafting_table": "elba⟘ ᵷnitɟaɹƆ deuᴉɐʇS ǝnןᗺ", + "block.pyrite.blue_stained_ladder": "ɹeddaꞀ deuᴉɐʇS ǝnןᗺ", + "block.pyrite.blue_stained_door": "ɹooᗡ deuᴉɐʇS ǝnןᗺ", + "block.pyrite.blue_stained_sign": "nᵷiS deuᴉɐʇS ǝnןᗺ", + "block.pyrite.blue_stained_hanging_sign": "ngiS gniᵷnaH deuᴉɐʇS ǝnןᗺ", + "block.pyrite.blue_stained_trapdoor": "roodpaɹ⟘ deuᴉɐʇS ǝnןᗺ", + "block.pyrite.blue_bricks": "sʞɔᴉɹB ǝnןᗺ", + "block.pyrite.blue_brick_slab": "bɐlS ʞɔᴉɹB ǝnןᗺ", + "block.pyrite.blue_brick_stairs": "sriɐʇS ʞɔᴉɹB ǝnןᗺ", + "block.pyrite.blue_brick_wall": "llɐM ʞɔᴉɹB ǝnןᗺ", + "block.pyrite.blue_brick_wall_gate": "eʇa⅁ llɐM ʞɔᴉɹB ǝnןᗺ", + "block.pyrite.blue_terracotta_bricks": "sʞcᴉrB atʇoɔɐrɹe⟘ ǝnןᗺ", + "block.pyrite.blue_terracotta_brick_slab": "balS ʞcᴉrB atʇoɔɐrɹe⟘ ǝnןᗺ", + "block.pyrite.blue_terracotta_brick_stairs": "sriatS ʞcᴉrB atʇoɔɐrɹe⟘ ǝnןᗺ", + "block.pyrite.blue_terracotta_brick_wall": "llaM ʞcᴉrB atʇoɔɐrɹe⟘ ǝnןᗺ", + "block.pyrite.blue_terracotta_brick_wall_gate": "eta⅁ llaM ʞcᴉrB atʇoɔɐrɹe⟘ ǝnןᗺ", + "block.pyrite.blue_lamp": "dɯɐꞀ ǝnןᗺ", + "block.pyrite.blue_torch": "ɥɔɹo⟘ ǝnןᗺ", + "block.pyrite.blue_torch_lever": "reʌeꞀ ɥɔɹo⟘ ǝnןᗺ", + "block.pyrite.blue_framed_glass": "ssal⅁ deɯɐɹℲ ǝnןᗺ", + "block.pyrite.blue_framed_glass_pane": "euaԀ ssal⅁ deɯɐɹℲ ǝnןᗺ", + "block.pyrite.brown_stained_button": "nottuB dǝnᴉɐʇS nʍoɹᗺ", + "block.pyrite.brown_stained_stairs": "sriatS dǝnᴉɐʇS nʍoɹᗺ", + "block.pyrite.brown_stained_slab": "baןS dǝnᴉɐʇS nʍoɹᗺ", + "block.pyrite.brown_stained_pressure_plate": "etaןP erusserԀ dǝnᴉɐʇS nʍoɹᗺ", + "block.pyrite.brown_stained_fence": "eɔneℲ dǝnᴉɐʇS nʍoɹᗺ", + "block.pyrite.brown_stained_fence_gate": "eta⅁ eɔneℲ dǝnᴉɐʇS nʍoɹᗺ", + "block.pyrite.brown_stained_planks": "sʞnaןԀ dǝnᴉɐʇS nʍoɹᗺ", + "block.pyrite.brown_stained_crafting_table": "eןba⟘ ᵷnitɟarƆ dǝnᴉɐʇS nʍoɹᗺ", + "block.pyrite.brown_stained_ladder": "reddaꞀ dǝnᴉɐʇS nʍoɹᗺ", + "block.pyrite.brown_stained_door": "rooᗡ dǝnᴉɐʇS nʍoɹᗺ", + "block.pyrite.brown_stained_sign": "nᵷiS dǝnᴉɐʇS nʍoɹᗺ", + "block.pyrite.brown_stained_hanging_sign": "ngiS gniᵷnaH dǝnᴉɐʇS nʍoɹᗺ", + "block.pyrite.brown_stained_trapdoor": "roodpar⟘ dǝnᴉɐʇS nʍoɹᗺ", + "block.pyrite.brown_bricks": "sʞɔᴉrB nʍoɹᗺ", + "block.pyrite.brown_brick_slab": "bɐןS ʞɔᴉrB nʍoɹᗺ", + "block.pyrite.brown_brick_stairs": "sriɐʇS ʞɔᴉrB nʍoɹᗺ", + "block.pyrite.brown_brick_wall": "lןɐM ʞɔᴉrB nʍoɹᗺ", + "block.pyrite.brown_brick_wall_gate": "ǝʇa⅁ lןɐM ʞɔᴉrB nʍoɹᗺ", + "block.pyrite.brown_terracotta_bricks": "sʞcᴉrB atʇoɔɐrrǝ⟘ nʍoɹᗺ", + "block.pyrite.brown_terracotta_brick_slab": "baןS ʞcᴉrB atʇoɔɐrrǝ⟘ nʍoɹᗺ", + "block.pyrite.brown_terracotta_brick_stairs": "sriatS ʞcᴉrB atʇoɔɐrrǝ⟘ nʍoɹᗺ", + "block.pyrite.brown_terracotta_brick_wall": "lןaM ʞcᴉrB atʇoɔɐrrǝ⟘ nʍoɹᗺ", + "block.pyrite.brown_terracotta_brick_wall_gate": "eta⅁ lןaM ʞcᴉrB atʇoɔɐrrǝ⟘ nʍoɹᗺ", + "block.pyrite.brown_lamp": "dɯɐꞀ nʍoɹᗺ", + "block.pyrite.brown_torch": "ɥɔro⟘ nʍoɹᗺ", + "block.pyrite.brown_torch_lever": "reʌǝꞀ ɥɔro⟘ nʍoɹᗺ", + "block.pyrite.brown_framed_glass": "ssaן⅁ dǝɯɐrℲ nʍoɹᗺ", + "block.pyrite.brown_framed_glass_pane": "enaԀ ssaן⅁ dǝɯɐrℲ nʍoɹᗺ", + "block.pyrite.green_stained_button": "nottuᗺ denᴉɐʇS neǝɹ⅁", + "block.pyrite.green_stained_stairs": "sriatS denᴉɐʇS neǝɹ⅁", + "block.pyrite.green_stained_slab": "baןS denᴉɐʇS neǝɹ⅁", + "block.pyrite.green_stained_pressure_plate": "etaןP erusserԀ denᴉɐʇS neǝɹ⅁", + "block.pyrite.green_stained_fence": "eɔneℲ denᴉɐʇS neǝɹ⅁", + "block.pyrite.green_stained_fence_gate": "etaG eɔneℲ denᴉɐʇS neǝɹ⅁", + "block.pyrite.green_stained_planks": "sʞnaןԀ denᴉɐʇS neǝɹ⅁", + "block.pyrite.green_stained_crafting_table": "eןba⟘ ᵷnitɟarƆ denᴉɐʇS neǝɹ⅁", + "block.pyrite.green_stained_ladder": "reddaꞀ denᴉɐʇS neǝɹ⅁", + "block.pyrite.green_stained_door": "rooᗡ denᴉɐʇS neǝɹ⅁", + "block.pyrite.green_stained_sign": "nᵷiS denᴉɐʇS neǝɹ⅁", + "block.pyrite.green_stained_hanging_sign": "ngiS gniᵷnaH denᴉɐʇS neǝɹ⅁", + "block.pyrite.green_stained_trapdoor": "roodpar⟘ denᴉɐʇS neǝɹ⅁", + "block.pyrite.green_bricks": "sʞɔᴉrᗺ neǝɹ⅁", + "block.pyrite.green_brick_slab": "bɐןS ʞɔᴉrᗺ neǝɹ⅁", + "block.pyrite.green_brick_stairs": "sriɐʇS ʞɔᴉrᗺ neǝɹ⅁", + "block.pyrite.green_brick_wall": "lןɐM ʞɔᴉrᗺ neǝɹ⅁", + "block.pyrite.green_brick_wall_gate": "eʇaG lןɐM ʞɔᴉrᗺ neǝɹ⅁", + "block.pyrite.green_terracotta_bricks": "sʞcᴉrᗺ atʇoɔɐrre⟘ neǝɹ⅁", + "block.pyrite.green_terracotta_brick_slab": "baןS ʞcᴉrᗺ atʇoɔɐrre⟘ neǝɹ⅁", + "block.pyrite.green_terracotta_brick_stairs": "sriatS ʞcᴉrᗺ atʇoɔɐrre⟘ neǝɹ⅁", + "block.pyrite.green_terracotta_brick_wall": "lןaM ʞcᴉrᗺ atʇoɔɐrre⟘ neǝɹ⅁", + "block.pyrite.green_terracotta_brick_wall_gate": "etaG lןaM ʞcᴉrᗺ atʇoɔɐrre⟘ neǝɹ⅁", + "block.pyrite.green_lamp": "dɯɐꞀ neǝɹ⅁", + "block.pyrite.green_torch": "ɥɔro⟘ neǝɹ⅁", + "block.pyrite.green_torch_lever": "reʌeꞀ ɥɔro⟘ neǝɹ⅁", + "block.pyrite.green_framed_glass": "ssaןG deɯɐrℲ neǝɹ⅁", + "block.pyrite.green_framed_glass_pane": "enaԀ ssaןG deɯɐrℲ neǝɹ⅁", + "block.pyrite.red_stained_button": "nottuᗺ denᴉɐʇS dǝᴚ", + "block.pyrite.red_stained_stairs": "sɹiatS denᴉɐʇS dǝᴚ", + "block.pyrite.red_stained_slab": "baןS denᴉɐʇS dǝᴚ", + "block.pyrite.red_stained_pressure_plate": "etaןP erusseɹԀ denᴉɐʇS dǝᴚ", + "block.pyrite.red_stained_fence": "eɔneℲ denᴉɐʇS dǝᴚ", + "block.pyrite.red_stained_fence_gate": "eta⅁ eɔneℲ denᴉɐʇS dǝᴚ", + "block.pyrite.red_stained_planks": "sʞnaןԀ denᴉɐʇS dǝᴚ", + "block.pyrite.red_stained_crafting_table": "eןba⟘ ᵷnitɟaɹƆ denᴉɐʇS dǝᴚ", + "block.pyrite.red_stained_ladder": "ɹeddaꞀ denᴉɐʇS dǝᴚ", + "block.pyrite.red_stained_door": "ɹooᗡ denᴉɐʇS dǝᴚ", + "block.pyrite.red_stained_sign": "nᵷiS denᴉɐʇS dǝᴚ", + "block.pyrite.red_stained_hanging_sign": "ngiS gniᵷnaH denᴉɐʇS dǝᴚ", + "block.pyrite.red_stained_trapdoor": "roodpaɹ⟘ denᴉɐʇS dǝᴚ", + "block.pyrite.red_bricks": "sʞɔᴉɹᗺ dǝᴚ", + "block.pyrite.red_brick_slab": "bɐןS ʞɔᴉɹᗺ dǝᴚ", + "block.pyrite.red_brick_stairs": "sriɐʇS ʞɔᴉɹᗺ dǝᴚ", + "block.pyrite.red_brick_wall": "lןɐM ʞɔᴉɹᗺ dǝᴚ", + "block.pyrite.red_brick_wall_gate": "eʇa⅁ lןɐM ʞɔᴉɹᗺ dǝᴚ", + "block.pyrite.red_terracotta_bricks": "sʞcᴉrᗺ atʇoɔɐrɹe⟘ dǝᴚ", + "block.pyrite.red_terracotta_brick_slab": "baןS ʞcᴉrᗺ atʇoɔɐrɹe⟘ dǝᴚ", + "block.pyrite.red_terracotta_brick_stairs": "sriatS ʞcᴉrᗺ atʇoɔɐrɹe⟘ dǝᴚ", + "block.pyrite.red_terracotta_brick_wall": "lןaM ʞcᴉrᗺ atʇoɔɐrɹe⟘ dǝᴚ", + "block.pyrite.red_terracotta_brick_wall_gate": "eta⅁ lןaM ʞcᴉrᗺ atʇoɔɐrɹe⟘ dǝᴚ", + "block.pyrite.red_lamp": "pɯɐꞀ dǝᴚ", + "block.pyrite.red_torch": "ɥɔɹo⟘ dǝᴚ", + "block.pyrite.red_torch_lever": "reʌeꞀ ɥɔɹo⟘ dǝᴚ", + "block.pyrite.red_framed_glass": "ssaן⅁ deɯɐɹℲ dǝᴚ", + "block.pyrite.red_framed_glass_pane": "enaԀ ssaן⅁ deɯɐɹℲ dǝᴚ", + "block.pyrite.black_stained_button": "nottuB dǝnᴉaʇS ʞɔɐןᗺ", + "block.pyrite.black_stained_stairs": "sɹiatS dǝnᴉaʇS ʞɔɐןᗺ", + "block.pyrite.black_stained_slab": "balS dǝnᴉaʇS ʞɔɐןᗺ", + "block.pyrite.black_stained_pressure_plate": "etalP erusseɹԀ dǝnᴉaʇS ʞɔɐןᗺ", + "block.pyrite.black_stained_fence": "ecneℲ dǝnᴉaʇS ʞɔɐןᗺ", + "block.pyrite.black_stained_fence_gate": "eta⅁ ecneℲ dǝnᴉaʇS ʞɔɐןᗺ", + "block.pyrite.black_stained_planks": "sknalԀ dǝnᴉaʇS ʞɔɐןᗺ", + "block.pyrite.black_stained_crafting_table": "elba⟘ ᵷnitɟaɹƆ dǝnᴉaʇS ʞɔɐןᗺ", + "block.pyrite.black_stained_ladder": "ɹeddaꞀ dǝnᴉaʇS ʞɔɐןᗺ", + "block.pyrite.black_stained_door": "ɹooᗡ dǝnᴉaʇS ʞɔɐןᗺ", + "block.pyrite.black_stained_sign": "nᵷiS dǝnᴉaʇS ʞɔɐןᗺ", + "block.pyrite.black_stained_hanging_sign": "ngiS gniᵷnaH dǝnᴉaʇS ʞɔɐןᗺ", + "block.pyrite.black_stained_trapdoor": "roodpaɹ⟘ dǝnᴉaʇS ʞɔɐןᗺ", + "block.pyrite.black_bricks": "skcᴉɹB ʞɔɐןᗺ", + "block.pyrite.black_brick_slab": "balS kcᴉɹB ʞɔɐןᗺ", + "block.pyrite.black_brick_stairs": "sriaʇS kcᴉɹB ʞɔɐןᗺ", + "block.pyrite.black_brick_wall": "llaM kcᴉɹB ʞɔɐןᗺ", + "block.pyrite.black_brick_wall_gate": "ǝʇa⅁ llaM kcᴉɹB ʞɔɐןᗺ", + "block.pyrite.black_terracotta_bricks": "skcᴉrB atʇocarɹǝ⟘ ʞɔɐןᗺ", + "block.pyrite.black_terracotta_brick_slab": "balS kcᴉrB atʇocarɹǝ⟘ ʞɔɐןᗺ", + "block.pyrite.black_terracotta_brick_stairs": "sriatS kcᴉrB atʇocarɹǝ⟘ ʞɔɐןᗺ", + "block.pyrite.black_terracotta_brick_wall": "llaM kcᴉrB atʇocarɹǝ⟘ ʞɔɐןᗺ", + "block.pyrite.black_terracotta_brick_wall_gate": "eta⅁ llaM kcᴉrB atʇocarɹǝ⟘ ʞɔɐןᗺ", + "block.pyrite.black_lamp": "dɯaꞀ ʞɔɐןᗺ", + "block.pyrite.black_torch": "ɥcɹo⟘ ʞɔɐןᗺ", + "block.pyrite.black_torch_lever": "reʌǝꞀ ɥcɹo⟘ ʞɔɐןᗺ", + "block.pyrite.black_framed_glass": "ssal⅁ dǝɯaɹℲ ʞɔɐןᗺ", + "block.pyrite.black_framed_glass_pane": "enaԀ ssal⅁ dǝɯaɹℲ ʞɔɐןᗺ", + "block.pyrite.glow_stained_button": "nottuᗺ dǝnᴉɐʇS ʍoן⅁", + "block.pyrite.glow_stained_stairs": "sɹiatS dǝnᴉɐʇS ʍoן⅁", + "block.pyrite.glow_stained_slab": "balS dǝnᴉɐʇS ʍoן⅁", + "block.pyrite.glow_stained_pressure_plate": "etalP erusseɹԀ dǝnᴉɐʇS ʍoן⅁", + "block.pyrite.glow_stained_fence": "eɔneℲ dǝnᴉɐʇS ʍoן⅁", + "block.pyrite.glow_stained_fence_gate": "etaG eɔneℲ dǝnᴉɐʇS ʍoן⅁", + "block.pyrite.glow_stained_planks": "sʞnalԀ dǝnᴉɐʇS ʍoן⅁", + "block.pyrite.glow_stained_crafting_table": "elba⟘ ᵷnitɟaɹƆ dǝnᴉɐʇS ʍoן⅁", + "block.pyrite.glow_stained_ladder": "ɹeddaꞀ dǝnᴉɐʇS ʍoן⅁", + "block.pyrite.glow_stained_door": "ɹooᗡ dǝnᴉɐʇS ʍoן⅁", + "block.pyrite.glow_stained_sign": "nᵷiS dǝnᴉɐʇS ʍoן⅁", + "block.pyrite.glow_stained_hanging_sign": "ngiS gniᵷnaH dǝnᴉɐʇS ʍoן⅁", + "block.pyrite.glow_stained_trapdoor": "roodpaɹ⟘ dǝnᴉɐʇS ʍoן⅁", + "block.pyrite.glow_bricks": "sʞɔᴉɹᗺ ʍoן⅁", + "block.pyrite.glow_brick_slab": "bɐlS ʞɔᴉɹᗺ ʍoן⅁", + "block.pyrite.glow_brick_stairs": "sriɐʇS ʞɔᴉɹᗺ ʍoן⅁", + "block.pyrite.glow_brick_wall": "llɐM ʞɔᴉɹᗺ ʍoן⅁", + "block.pyrite.glow_brick_wall_gate": "ǝʇaG llɐM ʞɔᴉɹᗺ ʍoן⅁", + "block.pyrite.glow_terracotta_bricks": "sʞcᴉrᗺ atʇoɔɐrɹǝ⟘ ʍoן⅁", + "block.pyrite.glow_terracotta_brick_slab": "balS ʞcᴉrᗺ atʇoɔɐrɹǝ⟘ ʍoן⅁", + "block.pyrite.glow_terracotta_brick_stairs": "sriatS ʞcᴉrᗺ atʇoɔɐrɹǝ⟘ ʍoן⅁", + "block.pyrite.glow_terracotta_brick_wall": "llaM ʞcᴉrᗺ atʇoɔɐrɹǝ⟘ ʍoן⅁", + "block.pyrite.glow_terracotta_brick_wall_gate": "etaG llaM ʞcᴉrᗺ atʇoɔɐrɹǝ⟘ ʍoן⅁", + "block.pyrite.glow_lamp": "dɯɐꞀ ʍoן⅁", + "block.pyrite.glow_torch": "ɥɔɹo⟘ ʍoן⅁", + "block.pyrite.glow_torch_lever": "reʌǝꞀ ɥɔɹo⟘ ʍoן⅁", + "block.pyrite.glow_framed_glass": "ssalG dǝɯɐɹℲ ʍoן⅁", + "block.pyrite.glow_framed_glass_pane": "enaԀ ssalG dǝɯɐɹℲ ʍoן⅁", + "block.pyrite.dragon_stained_button": "nottuᗺ dǝnᴉaʇS noᵷɐɹᗡ", + "block.pyrite.dragon_stained_stairs": "sriatS dǝnᴉaʇS noᵷɐɹᗡ", + "block.pyrite.dragon_stained_slab": "baןS dǝnᴉaʇS noᵷɐɹᗡ", + "block.pyrite.dragon_stained_pressure_plate": "etaןP erusserԀ dǝnᴉaʇS noᵷɐɹᗡ", + "block.pyrite.dragon_stained_fence": "eɔneℲ dǝnᴉaʇS noᵷɐɹᗡ", + "block.pyrite.dragon_stained_fence_gate": "eta⅁ eɔneℲ dǝnᴉaʇS noᵷɐɹᗡ", + "block.pyrite.dragon_stained_planks": "sʞnaןԀ dǝnᴉaʇS noᵷɐɹᗡ", + "block.pyrite.dragon_stained_crafting_table": "eןba⟘ gnitɟarƆ dǝnᴉaʇS noᵷɐɹᗡ", + "block.pyrite.dragon_stained_ladder": "reddaꞀ dǝnᴉaʇS noᵷɐɹᗡ", + "block.pyrite.dragon_stained_door": "rooD dǝnᴉaʇS noᵷɐɹᗡ", + "block.pyrite.dragon_stained_sign": "ngiS dǝnᴉaʇS noᵷɐɹᗡ", + "block.pyrite.dragon_stained_hanging_sign": "ngiS gnignaH dǝnᴉaʇS noᵷɐɹᗡ", + "block.pyrite.dragon_stained_trapdoor": "roodpar⟘ dǝnᴉaʇS noᵷɐɹᗡ", + "block.pyrite.dragon_bricks": "sʞɔᴉrᗺ noᵷɐɹᗡ", + "block.pyrite.dragon_brick_slab": "baןS ʞɔᴉrᗺ noᵷɐɹᗡ", + "block.pyrite.dragon_brick_stairs": "sriaʇS ʞɔᴉrᗺ noᵷɐɹᗡ", + "block.pyrite.dragon_brick_wall": "lןaM ʞɔᴉrᗺ noᵷɐɹᗡ", + "block.pyrite.dragon_brick_wall_gate": "ǝʇa⅁ lןaM ʞɔᴉrᗺ noᵷɐɹᗡ", + "block.pyrite.dragon_terracotta_bricks": "sʞcᴉrᗺ atʇoɔarrǝ⟘ noᵷɐɹᗡ", + "block.pyrite.dragon_terracotta_brick_slab": "baןS ʞcᴉrᗺ atʇoɔarrǝ⟘ noᵷɐɹᗡ", + "block.pyrite.dragon_terracotta_brick_stairs": "sriatS ʞcᴉrᗺ atʇoɔarrǝ⟘ noᵷɐɹᗡ", + "block.pyrite.dragon_terracotta_brick_wall": "lןaM ʞcᴉrᗺ atʇoɔarrǝ⟘ noᵷɐɹᗡ", + "block.pyrite.dragon_terracotta_brick_wall_gate": "eta⅁ lןaM ʞcᴉrᗺ atʇoɔarrǝ⟘ noᵷɐɹᗡ", + "block.pyrite.dragon_lamp": "dɯaꞀ noᵷɐɹᗡ", + "block.pyrite.dragon_torch": "ɥɔro⟘ noᵷɐɹᗡ", + "block.pyrite.dragon_torch_lever": "reʌǝꞀ ɥɔro⟘ noᵷɐɹᗡ", + "block.pyrite.dragon_framed_glass": "ssaן⅁ dǝɯarℲ noᵷɐɹᗡ", + "block.pyrite.dragon_framed_glass_pane": "enaԀ ssaן⅁ dǝɯarℲ noᵷɐɹᗡ", + "block.pyrite.star_stained_button": "nottuᗺ dǝnᴉatS ɹɐʇS", + "block.pyrite.star_stained_stairs": "sriatS dǝnᴉatS ɹɐʇS", + "block.pyrite.star_stained_slab": "baןS dǝnᴉatS ɹɐʇS", + "block.pyrite.star_stained_pressure_plate": "etaןP erusserԀ dǝnᴉatS ɹɐʇS", + "block.pyrite.star_stained_fence": "eɔneℲ dǝnᴉatS ɹɐʇS", + "block.pyrite.star_stained_fence_gate": "eta⅁ eɔneℲ dǝnᴉatS ɹɐʇS", + "block.pyrite.star_stained_planks": "sʞnaןԀ dǝnᴉatS ɹɐʇS", + "block.pyrite.star_stained_crafting_table": "eןba⟘ ᵷnitɟarƆ dǝnᴉatS ɹɐʇS", + "block.pyrite.star_stained_ladder": "reddaꞀ dǝnᴉatS ɹɐʇS", + "block.pyrite.star_stained_door": "rooᗡ dǝnᴉatS ɹɐʇS", + "block.pyrite.star_stained_sign": "nᵷiS dǝnᴉatS ɹɐʇS", + "block.pyrite.star_stained_hanging_sign": "ngiS gniᵷnaH dǝnᴉatS ɹɐʇS", + "block.pyrite.star_stained_trapdoor": "roodpar⟘ dǝnᴉatS ɹɐʇS", + "block.pyrite.star_bricks": "sʞɔᴉrᗺ ɹɐʇS", + "block.pyrite.star_brick_slab": "baןS ʞɔᴉrᗺ ɹɐʇS", + "block.pyrite.star_brick_stairs": "sriatS ʞɔᴉrᗺ ɹɐʇS", + "block.pyrite.star_brick_wall": "lןaM ʞɔᴉrᗺ ɹɐʇS", + "block.pyrite.star_brick_wall_gate": "ǝta⅁ lןaM ʞɔᴉrᗺ ɹɐʇS", + "block.pyrite.star_terracotta_bricks": "sʞcᴉrᗺ attoɔarrǝ⟘ ɹɐʇS", + "block.pyrite.star_terracotta_brick_slab": "baןS ʞcᴉrᗺ attoɔarrǝ⟘ ɹɐʇS", + "block.pyrite.star_terracotta_brick_stairs": "sriatS ʞcᴉrᗺ attoɔarrǝ⟘ ɹɐʇS", + "block.pyrite.star_terracotta_brick_wall": "lןaM ʞcᴉrᗺ attoɔarrǝ⟘ ɹɐʇS", + "block.pyrite.star_terracotta_brick_wall_gate": "eta⅁ lןaM ʞcᴉrᗺ attoɔarrǝ⟘ ɹɐʇS", + "block.pyrite.star_lamp": "dɯaꞀ ɹɐʇS", + "block.pyrite.star_torch": "ɥɔro⟘ ɹɐʇS", + "block.pyrite.star_torch_lever": "reʌǝꞀ ɥɔro⟘ ɹɐʇS", + "block.pyrite.star_framed_glass": "ssaן⅁ dǝɯarℲ ɹɐʇS", + "block.pyrite.star_framed_glass_pane": "enaԀ ssaן⅁ dǝɯarℲ ɹɐʇS", + "block.pyrite.honey_stained_button": "nottuᗺ denᴉɐʇS ʎǝnoH", + "block.pyrite.honey_stained_stairs": "sɹiatS denᴉɐʇS ʎǝnoH", + "block.pyrite.honey_stained_slab": "baןS denᴉɐʇS ʎǝnoH", + "block.pyrite.honey_stained_pressure_plate": "etaןP erusseɹԀ denᴉɐʇS ʎǝnoH", + "block.pyrite.honey_stained_fence": "eɔneℲ denᴉɐʇS ʎǝnoH", + "block.pyrite.honey_stained_fence_gate": "eta⅁ eɔneℲ denᴉɐʇS ʎǝnoH", + "block.pyrite.honey_stained_planks": "sʞnaןԀ denᴉɐʇS ʎǝnoH", + "block.pyrite.honey_stained_crafting_table": "eןba⟘ ᵷnitɟaɹƆ denᴉɐʇS ʎǝnoH", + "block.pyrite.honey_stained_ladder": "ɹeddaꞀ denᴉɐʇS ʎǝnoH", + "block.pyrite.honey_stained_door": "ɹooᗡ denᴉɐʇS ʎǝnoH", + "block.pyrite.honey_stained_sign": "nᵷiS denᴉɐʇS ʎǝnoH", + "block.pyrite.honey_stained_hanging_sign": "ngiS gniᵷnaH denᴉɐʇS ʎǝnoH", + "block.pyrite.honey_stained_trapdoor": "roodpaɹ⟘ denᴉɐʇS ʎǝnoH", + "block.pyrite.honey_bricks": "sʞɔᴉɹᗺ ʎǝnoH", + "block.pyrite.honey_brick_slab": "bɐןS ʞɔᴉɹᗺ ʎǝnoH", + "block.pyrite.honey_brick_stairs": "sriɐʇS ʞɔᴉɹᗺ ʎǝnoH", + "block.pyrite.honey_brick_wall": "lןɐM ʞɔᴉɹᗺ ʎǝnoH", + "block.pyrite.honey_brick_wall_gate": "eʇa⅁ lןɐM ʞɔᴉɹᗺ ʎǝnoH", + "block.pyrite.honey_terracotta_bricks": "sʞcᴉrᗺ atʇoɔɐrɹe⟘ ʎǝnoH", + "block.pyrite.honey_terracotta_brick_slab": "baןS ʞcᴉrᗺ atʇoɔɐrɹe⟘ ʎǝnoH", + "block.pyrite.honey_terracotta_brick_stairs": "sriatS ʞcᴉrᗺ atʇoɔɐrɹe⟘ ʎǝnoH", + "block.pyrite.honey_terracotta_brick_wall": "lןaM ʞcᴉrᗺ atʇoɔɐrɹe⟘ ʎǝnoH", + "block.pyrite.honey_terracotta_brick_wall_gate": "eta⅁ lןaM ʞcᴉrᗺ atʇoɔɐrɹe⟘ ʎǝnoH", + "block.pyrite.honey_lamp": "dɯɐꞀ ʎǝnoH", + "block.pyrite.honey_torch": "ɥɔɹo⟘ ʎǝnoH", + "block.pyrite.honey_torch_lever": "reʌeꞀ ɥɔɹo⟘ ʎǝnoH", + "block.pyrite.honey_framed_glass": "ssaן⅁ deɯɐɹℲ ʎǝnoH", + "block.pyrite.honey_framed_glass_pane": "enaԀ ssaן⅁ deɯɐɹℲ ʎǝnoH", + "block.pyrite.nostalgia_stained_button": "nottuᗺ dǝniatS aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_stained_stairs": "sɹiatS dǝniatS aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_stained_slab": "balS dǝniatS aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_stained_pressure_plate": "etalP erusseɹԀ dǝniatS aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_stained_fence": "eɔneℲ dǝniatS aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_stained_fence_gate": "eta⅁ eɔneℲ dǝniatS aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_stained_planks": "sʞnalԀ dǝniatS aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_stained_crafting_table": "elba⟘ gnitɟaɹƆ dǝniatS aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_stained_ladder": "ɹeddaꞀ dǝniatS aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_stained_door": "ɹooᗡ dǝniatS aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_stained_sign": "ngiS dǝniatS aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_stained_hanging_sign": "ngiS gnignaH dǝniatS aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_stained_trapdoor": "roodpaɹ⟘ dǝniatS aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_bricks": "sʞɔiɹᗺ aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_brick_slab": "balS ʞɔiɹᗺ aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_brick_stairs": "sriatS ʞɔiɹᗺ aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_brick_wall": "llaM ʞɔiɹᗺ aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_brick_wall_gate": "ǝta⅁ llaM ʞɔiɹᗺ aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_terracotta_bricks": "sʞcirᗺ attoɔarɹǝ⟘ aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_terracotta_brick_slab": "balS ʞcirᗺ attoɔarɹǝ⟘ aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_terracotta_brick_stairs": "sriatS ʞcirᗺ attoɔarɹǝ⟘ aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_terracotta_brick_wall": "llaM ʞcirᗺ attoɔarɹǝ⟘ aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_terracotta_brick_wall_gate": "eta⅁ llaM ʞcirᗺ attoɔarɹǝ⟘ aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_lamp": "dɯaꞀ aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_torch": "ɥɔɹo⟘ aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_torch_lever": "reʌǝꞀ ɥɔɹo⟘ aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_framed_glass": "ssal⅁ dǝɯaɹℲ aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_framed_glass_pane": "enaԀ ssal⅁ dǝɯaɹℲ aᴉᵷןɐʇsoN", + "block.pyrite.rose_stained_button": "nottuᗺ denᴉɐʇS ǝsoᴚ", + "block.pyrite.rose_stained_stairs": "sɹiatS denᴉɐʇS ǝsoᴚ", + "block.pyrite.rose_stained_slab": "baןS denᴉɐʇS ǝsoᴚ", + "block.pyrite.rose_stained_pressure_plate": "etaןP erusseɹԀ denᴉɐʇS ǝsoᴚ", + "block.pyrite.rose_stained_fence": "eɔneℲ denᴉɐʇS ǝsoᴚ", + "block.pyrite.rose_stained_fence_gate": "eta⅁ eɔneℲ denᴉɐʇS ǝsoᴚ", + "block.pyrite.rose_stained_planks": "sʞnaןԀ denᴉɐʇS ǝsoᴚ", + "block.pyrite.rose_stained_crafting_table": "eןba⟘ ᵷnitɟaɹƆ denᴉɐʇS ǝsoᴚ", + "block.pyrite.rose_stained_ladder": "ɹeddaꞀ denᴉɐʇS ǝsoᴚ", + "block.pyrite.rose_stained_door": "ɹooᗡ denᴉɐʇS ǝsoᴚ", + "block.pyrite.rose_stained_sign": "nᵷiS denᴉɐʇS ǝsoᴚ", + "block.pyrite.rose_stained_hanging_sign": "ngiS gniᵷnaH denᴉɐʇS ǝsoᴚ", + "block.pyrite.rose_stained_trapdoor": "roodpaɹ⟘ denᴉɐʇS ǝsoᴚ", + "block.pyrite.rose_bricks": "sʞɔᴉɹᗺ ǝsoᴚ", + "block.pyrite.rose_brick_slab": "bɐןS ʞɔᴉɹᗺ ǝsoᴚ", + "block.pyrite.rose_brick_stairs": "sriɐʇS ʞɔᴉɹᗺ ǝsoᴚ", + "block.pyrite.rose_brick_wall": "lןɐM ʞɔᴉɹᗺ ǝsoᴚ", + "block.pyrite.rose_brick_wall_gate": "eʇa⅁ lןɐM ʞɔᴉɹᗺ ǝsoᴚ", + "block.pyrite.rose_terracotta_bricks": "sʞcᴉrᗺ atʇoɔɐrɹe⟘ ǝsoᴚ", + "block.pyrite.rose_terracotta_brick_slab": "baןS ʞcᴉrᗺ atʇoɔɐrɹe⟘ ǝsoᴚ", + "block.pyrite.rose_terracotta_brick_stairs": "sriatS ʞcᴉrᗺ atʇoɔɐrɹe⟘ ǝsoᴚ", + "block.pyrite.rose_terracotta_brick_wall": "lןaM ʞcᴉrᗺ atʇoɔɐrɹe⟘ ǝsoᴚ", + "block.pyrite.rose_terracotta_brick_wall_gate": "eta⅁ lןaM ʞcᴉrᗺ atʇoɔɐrɹe⟘ ǝsoᴚ", + "block.pyrite.rose_lamp": "dɯɐꞀ ǝsoᴚ", + "block.pyrite.rose_torch": "ɥɔɹo⟘ ǝsoᴚ", + "block.pyrite.rose_torch_lever": "reʌeꞀ ɥɔɹo⟘ ǝsoᴚ", + "block.pyrite.rose_framed_glass": "ssaן⅁ deɯɐɹℲ ǝsoᴚ", + "block.pyrite.rose_framed_glass_pane": "enaԀ ssaן⅁ deɯɐɹℲ ǝsoᴚ", + "block.pyrite.poisonous_stained_button": "nottuᗺ dǝniɐʇS suonosᴉoԀ", + "block.pyrite.poisonous_stained_stairs": "sɹiatS dǝniɐʇS suonosᴉoԀ", + "block.pyrite.poisonous_stained_slab": "baןS dǝniɐʇS suonosᴉoԀ", + "block.pyrite.poisonous_stained_pressure_plate": "etaןP erusseɹP dǝniɐʇS suonosᴉoԀ", + "block.pyrite.poisonous_stained_fence": "eɔneℲ dǝniɐʇS suonosᴉoԀ", + "block.pyrite.poisonous_stained_fence_gate": "eta⅁ eɔneℲ dǝniɐʇS suonosᴉoԀ", + "block.pyrite.poisonous_stained_planks": "sʞnaןP dǝniɐʇS suonosᴉoԀ", + "block.pyrite.poisonous_stained_crafting_table": "eןba⟘ ᵷnitɟaɹƆ dǝniɐʇS suonosᴉoԀ", + "block.pyrite.poisonous_stained_ladder": "ɹeddaꞀ dǝniɐʇS suonosᴉoԀ", + "block.pyrite.poisonous_stained_door": "ɹooᗡ dǝniɐʇS suonosᴉoԀ", + "block.pyrite.poisonous_stained_sign": "nᵷiS dǝniɐʇS suonosᴉoԀ", + "block.pyrite.poisonous_stained_hanging_sign": "ngiS gniᵷnaH dǝniɐʇS suonosᴉoԀ", + "block.pyrite.poisonous_stained_trapdoor": "roodpaɹ⟘ dǝniɐʇS suonosᴉoԀ", + "block.pyrite.poisonous_bricks": "sʞɔiɹᗺ suonosᴉoԀ", + "block.pyrite.poisonous_brick_slab": "bɐןS ʞɔiɹᗺ suonosᴉoԀ", + "block.pyrite.poisonous_brick_stairs": "sriɐʇS ʞɔiɹᗺ suonosᴉoԀ", + "block.pyrite.poisonous_brick_wall": "lןɐM ʞɔiɹᗺ suonosᴉoԀ", + "block.pyrite.poisonous_brick_wall_gate": "ǝʇa⅁ lןɐM ʞɔiɹᗺ suonosᴉoԀ", + "block.pyrite.poisonous_terracotta_bricks": "sʞcirᗺ atʇoɔɐrɹǝ⟘ suonosᴉoԀ", + "block.pyrite.poisonous_terracotta_brick_slab": "baןS ʞcirᗺ atʇoɔɐrɹǝ⟘ suonosᴉoԀ", + "block.pyrite.poisonous_terracotta_brick_stairs": "sriatS ʞcirᗺ atʇoɔɐrɹǝ⟘ suonosᴉoԀ", + "block.pyrite.poisonous_terracotta_brick_wall": "lןaM ʞcirᗺ atʇoɔɐrɹǝ⟘ suonosᴉoԀ", + "block.pyrite.poisonous_terracotta_brick_wall_gate": "eta⅁ lןaM ʞcirᗺ atʇoɔɐrɹǝ⟘ suonosᴉoԀ", + "block.pyrite.poisonous_lamp": "dɯɐꞀ suonosᴉoԀ", + "block.pyrite.poisonous_torch": "ɥɔɹo⟘ suonosᴉoԀ", + "block.pyrite.poisonous_torch_lever": "reʌǝꞀ ɥɔɹo⟘ suonosᴉoԀ", + "block.pyrite.poisonous_framed_glass": "ssaן⅁ dǝɯɐɹℲ suonosᴉoԀ", + "block.pyrite.poisonous_framed_glass_pane": "enaP ssaן⅁ dǝɯɐɹℲ suonosᴉoԀ", + "block.pyrite.spruce_crafting_table": "eןba⟘ ᵷuᴉʇɟɐrƆ ǝɔnɹdS", + "block.pyrite.birch_crafting_table": "ǝןba⟘ ᵷniʇɟɐrƆ ɥɔɹᴉᗺ", + "block.pyrite.jungle_crafting_table": "elba⟘ gnᴉʇɟɐɹƆ ǝןᵷunՐ", + "block.pyrite.acacia_crafting_table": "ǝןba⟘ ᵷniʇɟaɹƆ aᴉcɐɔⱯ", + "block.pyrite.dark_oak_crafting_table": "ǝןba⟘ ᵷnᴉʇɟarƆ kaO ʞɹɐᗡ", + "block.pyrite.mangrove_crafting_table": "eןba⟘ gnᴉʇɟarƆ ǝʌoɹᵷnɐM", + "block.pyrite.cherry_crafting_table": "eןba⟘ ᵷnᴉʇɟɐrC ʎrɹǝɥƆ", + "block.pyrite.bamboo_crafting_table": "ǝןba⟘ ᵷnᴉʇɟaɹƆ oobɯɐᗺ", + "block.pyrite.crimson_crafting_table": "ǝןba⟘ ᵷniʇɟɐrC nosɯᴉɹƆ", + "block.pyrite.warped_crafting_table": "eןba⟘ ᵷnᴉʇɟarƆ pǝdɹɐM", + "block.pyrite.skyroot_crafting_table": "ǝןba⟘ ᵷnᴉtɟɐrƆ ʇooɹʎʞS", + "block.pyrite.holystone_wall_gate": "eta⅁ llɐM ǝnoʇsʎןoH", + "block.pyrite.mossy_holystone_wall_gate": "eta⅁ llɐW ǝnoʇsyןoH ʎssoM", + "block.pyrite.holystone_brick_wall_gate": "eta⅁ llɐM ʞɔᴉɹᗺ ǝnoʇsʎןoH", + "block.pyrite.icestone_wall_gate": "eta⅁ lןɐM enoʇsǝɔI", + "block.pyrite.aerogel_wall_gate": "eʇa⅁ llɐM ןeᵷoɹǝⱯ", + "block.pyrite.carved_wall_gate": "eʇa⅁ lןaM dǝʌɹɐƆ", + "block.pyrite.angelic_wall_gate": "eʇa⅁ llɐM ɔᴉןǝᵷnⱯ", + "block.pyrite.hellfire_wall_gate": "eʇa⅁ llɐM eɹᴉɟlןǝH", + "block.pyrite.red_mushroom_button": "uotʇuᗺ ɯooɹɥsnM dǝᴚ", + "block.pyrite.red_mushroom_stairs": "srᴉɐʇS ɯooɹɥsnM dǝᴚ", + "block.pyrite.red_mushroom_slab": "bɐןS ɯooɹɥsnM dǝᴚ", + "block.pyrite.red_mushroom_pressure_plate": "eʇɐןP erusserԀ ɯooɹɥsnM dǝᴚ", + "block.pyrite.red_mushroom_fence": "eɔueℲ ɯooɹɥsnM dǝᴚ", + "block.pyrite.red_mushroom_fence_gate": "eʇɐ⅁ eɔueℲ ɯooɹɥsnM dǝᴚ", + "block.pyrite.red_mushroom_planks": "sʞuɐןԀ ɯooɹɥsnM dǝᴚ", + "block.pyrite.red_mushroom_crafting_table": "eןba⟘ ᵷuᴉʇɟɐrƆ ɯooɹɥsnM dǝᴚ", + "block.pyrite.red_mushroom_ladder": "reddɐꞀ ɯooɹɥsnM dǝᴚ", + "block.pyrite.red_mushroom_door": "rooᗡ ɯooɹɥsnM dǝᴚ", + "block.pyrite.red_mushroom_sign": "uᵷᴉS ɯooɹɥsnM dǝᴚ", + "block.pyrite.red_mushroom_hanging_sign": "ngiS gnᴉᵷuɐH ɯooɹɥsnM dǝᴚ", + "block.pyrite.red_mushroom_trapdoor": "roodpɐr⟘ ɯooɹɥsnM dǝᴚ", + "block.pyrite.red_mushroom_stem": "meʇS ɯooɹɥsnM dǝᴚ", + "block.pyrite.brown_mushroom_button": "notʇuB ɯoorɥsuM nʍoɹᗺ", + "block.pyrite.brown_mushroom_stairs": "srᴉɐʇS ɯoorɥsuM nʍoɹᗺ", + "block.pyrite.brown_mushroom_slab": "bɐןS ɯoorɥsuM nʍoɹᗺ", + "block.pyrite.brown_mushroom_pressure_plate": "eʇɐןP erussǝrԀ ɯoorɥsuM nʍoɹᗺ", + "block.pyrite.brown_mushroom_fence": "eɔnǝℲ ɯoorɥsuM nʍoɹᗺ", + "block.pyrite.brown_mushroom_fence_gate": "eʇɐ⅁ eɔnǝℲ ɯoorɥsuM nʍoɹᗺ", + "block.pyrite.brown_mushroom_planks": "sʞnɐןԀ ɯoorɥsuM nʍoɹᗺ", + "block.pyrite.brown_mushroom_crafting_table": "ǝןba⟘ ᵷnᴉʇɟɐrƆ ɯoorɥsuM nʍoɹᗺ", + "block.pyrite.brown_mushroom_ladder": "rǝddɐꞀ ɯoorɥsuM nʍoɹᗺ", + "block.pyrite.brown_mushroom_door": "rooᗡ ɯoorɥsuM nʍoɹᗺ", + "block.pyrite.brown_mushroom_sign": "nᵷᴉS ɯoorɥsuM nʍoɹᗺ", + "block.pyrite.brown_mushroom_hanging_sign": "ngiS gnᴉᵷnɐH ɯoorɥsuM nʍoɹᗺ", + "block.pyrite.brown_mushroom_trapdoor": "roopdɐr⟘ ɯoorɥsuM nʍoɹᗺ", + "block.pyrite.brown_mushroom_stem": "mǝʇS ɯoorɥsuM nʍoɹᗺ", + "block.pyrite.cobblestone_bricks": "sʞɔᴉɹᗺ enoʇsǝןbboƆ", + "block.pyrite.cobblestone_brick_slab": "bɐlS ʞɔᴉɹᗺ enoʇsǝןbboƆ", + "block.pyrite.cobblestone_brick_stairs": "sriɐtS ʞɔᴉɹᗺ enoʇsǝןbboƆ", + "block.pyrite.cobblestone_brick_wall": "llɐM ʞɔᴉɹᗺ enoʇsǝןbboƆ", + "block.pyrite.cobblestone_brick_wall_gate": "eta⅁ llɐM ʞɔᴉɹᗺ enoʇsǝןbboƆ", + "block.pyrite.mossy_cobblestone_bricks": "sʞɔᴉɹᗺ enoʇsǝןbboƆ ʎssoM", + "block.pyrite.mossy_cobblestone_brick_slab": "bɐlS ʞɔᴉɹᗺ enoʇsǝןbboƆ ʎssoM", + "block.pyrite.mossy_cobblestone_brick_stairs": "sriɐtS ʞɔᴉɹᗺ enoʇsǝןbboƆ ʎssoM", + "block.pyrite.mossy_cobblestone_brick_wall": "llɐW ʞɔᴉɹᗺ enoʇsǝןbboƆ ʎssoM", + "block.pyrite.mossy_cobblestone_brick_wall_gate": "eta⅁ llɐW ʞɔᴉɹᗺ enoʇsǝןbboƆ ʎssoM", + "block.pyrite.smooth_stone_bricks": "sʞɔᴉɹᗺ ǝnotS ɥʇooɯS", + "block.pyrite.smooth_stone_brick_slab": "bɐןS ʞɔᴉɹᗺ ǝnotS ɥʇooɯS", + "block.pyrite.smooth_stone_brick_stairs": "sriɐtS ʞɔᴉɹᗺ ǝnotS ɥʇooɯS", + "block.pyrite.smooth_stone_brick_wall": "lןɐM ʞɔᴉɹᗺ ǝnotS ɥʇooɯS", + "block.pyrite.smooth_stone_brick_wall_gate": "eta⅁ lןɐM ʞɔᴉɹᗺ ǝnotS ɥʇooɯS", + "block.pyrite.mossy_smooth_stone_bricks": "sʞɔᴉɹᗺ ǝnotS ɥʇooɯS ʎssoM", + "block.pyrite.mossy_smooth_stone_brick_slab": "bɐןS ʞɔᴉɹᗺ ǝnotS ɥʇooɯS ʎssoM", + "block.pyrite.mossy_smooth_stone_brick_stairs": "sriɐtS ʞɔᴉɹᗺ ǝnotS ɥʇooɯS ʎssoM", + "block.pyrite.mossy_smooth_stone_brick_wall": "lןɐW ʞɔᴉɹᗺ ǝnotS ɥʇooɯS ʎssoM", + "block.pyrite.mossy_smooth_stone_brick_wall_gate": "eta⅁ lןɐW ʞɔᴉɹᗺ ǝnotS ɥʇooɯS ʎssoM", + "block.pyrite.granite_bricks": "sʞɔirᗺ ǝʇᴉnɐɹ⅁", + "block.pyrite.granite_brick_slab": "baןS ʞɔirᗺ ǝʇᴉnɐɹ⅁", + "block.pyrite.granite_brick_stairs": "sriatS ʞɔirᗺ ǝʇᴉnɐɹ⅁", + "block.pyrite.granite_brick_wall": "lןaM ʞɔirᗺ ǝʇᴉnɐɹ⅁", + "block.pyrite.granite_brick_wall_gate": "etaG lןaM ʞɔirᗺ ǝʇᴉnɐɹ⅁", + "block.pyrite.mossy_granite_bricks": "sʞɔirᗺ ǝʇᴉnɐɹ⅁ ʎssoM", + "block.pyrite.mossy_granite_brick_slab": "baןS ʞɔirᗺ ǝʇᴉnɐɹ⅁ ʎssoM", + "block.pyrite.mossy_granite_brick_stairs": "sriatS ʞɔirᗺ ǝʇᴉnɐɹ⅁ ʎssoM", + "block.pyrite.mossy_granite_brick_wall": "lןaW ʞɔirᗺ ǝʇᴉnɐɹ⅁ ʎssoM", + "block.pyrite.mossy_granite_brick_wall_gate": "etaG lןaW ʞɔirᗺ ǝʇᴉnɐɹ⅁ ʎssoM", + "block.pyrite.andesite_bricks": "sʞɔiɹᗺ eʇᴉsǝdnⱯ", + "block.pyrite.andesite_brick_slab": "bɐןS ʞɔiɹᗺ eʇᴉsǝdnⱯ", + "block.pyrite.andesite_brick_stairs": "sriɐtS ʞɔiɹᗺ eʇᴉsǝdnⱯ", + "block.pyrite.andesite_brick_wall": "lןɐM ʞɔiɹᗺ eʇᴉsǝdnⱯ", + "block.pyrite.andesite_brick_wall_gate": "eta⅁ lןɐM ʞɔiɹᗺ eʇᴉsǝdnⱯ", + "block.pyrite.mossy_andesite_bricks": "sʞɔiɹᗺ eʇᴉsǝdnⱯ ʎssoM", + "block.pyrite.mossy_andesite_brick_slab": "bɐןS ʞɔiɹᗺ eʇᴉsǝdnⱯ ʎssoM", + "block.pyrite.mossy_andesite_brick_stairs": "sriɐtS ʞɔiɹᗺ eʇᴉsǝdnⱯ ʎssoM", + "block.pyrite.mossy_andesite_brick_wall": "lןɐW ʞɔiɹᗺ eʇᴉsǝdnⱯ ʎssoM", + "block.pyrite.mossy_andesite_brick_wall_gate": "eta⅁ lןɐW ʞɔiɹᗺ eʇᴉsǝdnⱯ ʎssoM", + "block.pyrite.diorite_bricks": "sʞɔirᗺ ǝʇiɹoᴉᗡ", + "block.pyrite.diorite_brick_slab": "bɐןS ʞɔirᗺ ǝʇiɹoᴉᗡ", + "block.pyrite.diorite_brick_stairs": "sriɐtS ʞɔirᗺ ǝʇiɹoᴉᗡ", + "block.pyrite.diorite_brick_wall": "lןɐM ʞɔirᗺ ǝʇiɹoᴉᗡ", + "block.pyrite.diorite_brick_wall_gate": "eta⅁ lןɐM ʞɔirᗺ ǝʇiɹoᴉᗡ", + "block.pyrite.mossy_diorite_bricks": "sʞɔirᗺ ǝʇiɹoᴉᗡ ʎssoM", + "block.pyrite.mossy_diorite_brick_slab": "bɐןS ʞɔirᗺ ǝʇiɹoᴉᗡ ʎssoM", + "block.pyrite.mossy_diorite_brick_stairs": "sriɐtS ʞɔirᗺ ǝʇiɹoᴉᗡ ʎssoM", + "block.pyrite.mossy_diorite_brick_wall": "lןɐW ʞɔirᗺ ǝʇiɹoᴉᗡ ʎssoM", + "block.pyrite.mossy_diorite_brick_wall_gate": "eta⅁ lןɐW ʞɔirᗺ ǝʇiɹoᴉᗡ ʎssoM", + "block.pyrite.calcite_bricks": "sʞciɹᗺ ǝʇᴉɔןɐƆ", + "block.pyrite.calcite_brick_slab": "balS ʞciɹᗺ ǝʇᴉɔןɐƆ", + "block.pyrite.calcite_brick_stairs": "sriatS ʞciɹᗺ ǝʇᴉɔןɐƆ", + "block.pyrite.calcite_brick_wall": "llaM ʞciɹᗺ ǝʇᴉɔןɐƆ", + "block.pyrite.calcite_brick_wall_gate": "eta⅁ llaM ʞciɹᗺ ǝʇᴉɔןɐƆ", + "block.pyrite.mossy_calcite_bricks": "sʞciɹᗺ ǝʇᴉɔןɐƆ ʎssoM", + "block.pyrite.mossy_calcite_brick_slab": "balS ʞciɹᗺ ǝʇᴉɔןɐƆ ʎssoM", + "block.pyrite.mossy_calcite_brick_stairs": "sriatS ʞciɹᗺ ǝʇᴉɔןɐƆ ʎssoM", + "block.pyrite.mossy_calcite_brick_wall": "llaW ʞciɹᗺ ǝʇᴉɔןɐƆ ʎssoM", + "block.pyrite.mossy_calcite_brick_wall_gate": "eta⅁ llaW ʞciɹᗺ ǝʇᴉɔןɐƆ ʎssoM", + "block.pyrite.mossy_deepslate_bricks": "sʞɔᴉɹᗺ eʇɐןsdeǝᗡ ʎssoM", + "block.pyrite.mossy_deepslate_brick_slab": "balS ʞɔᴉɹᗺ eʇɐןsdeǝᗡ ʎssoM", + "block.pyrite.mossy_deepslate_brick_stairs": "sriatS ʞɔᴉɹᗺ eʇɐןsdeǝᗡ ʎssoM", + "block.pyrite.mossy_deepslate_brick_wall": "llaW ʞɔᴉɹᗺ eʇɐןsdeǝᗡ ʎssoM", + "block.pyrite.mossy_deepslate_brick_wall_gate": "eta⅁ llaW ʞɔᴉɹᗺ eʇɐןsdeǝᗡ ʎssoM", + "block.pyrite.nostalgia_cobblestone": "enotsǝlbboƆ aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_mossy_cobblestone": "enotsǝlbboƆ ʎssoM aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_netherrack": "ʞɔarɹeɥtǝN aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_gravel": "lǝʌaɹ⅁ aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_grass_block": "ʞɔolᗺ ssaɹ⅁ aᴉᵷןɐʇsoN", + "block.pyrite.framed_glass": "ssaן⅁ dǝɯɐɹℲ", + "block.pyrite.framed_glass_pane": "enaԀ ssaן⅁ dǝɯɐɹℲ", + "block.pyrite.nostalgia_grass_turf": "ɟrn⟘ ssaɹ⅁ aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_grass_slab": "balS ssaɹ⅁ aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_grass_stairs": "sriatS ssaɹ⅁ aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_grass_carpet": "tǝdraƆ ssaɹ⅁ aᴉᵷןɐʇsoN", + "block.pyrite.podzol_turf": "ɟɹn⟘ ןozdoԀ", + "block.pyrite.podzol_slab": "bɐlS ןozdoԀ", + "block.pyrite.podzol_stairs": "sɹᴉɐʇS ןozdoԀ", + "block.pyrite.podzol_carpet": "ʇǝpɹɐƆ ןozdoԀ", + "block.pyrite.grass_turf": "ɟrn⟘ ssɐɹ⅁", + "block.pyrite.grass_slab": "baןS ssɐɹ⅁", + "block.pyrite.grass_stairs": "srᴉaʇS ssɐɹ⅁", + "block.pyrite.grass_carpet": "ʇǝdraƆ ssɐɹ⅁", + "block.pyrite.mycelium_turf": "ɟɹu⟘ ɯnᴉןǝɔʎM", + "block.pyrite.mycelium_slab": "bɐlS ɯnᴉןǝɔʎM", + "block.pyrite.mycelium_stairs": "sɹiɐʇS ɯnᴉןǝɔʎM", + "block.pyrite.mycelium_carpet": "ʇedɹɐƆ ɯnᴉןǝɔʎM", + "block.pyrite.path_turf": "ɟɹn⟘ ɥʇɐԀ", + "block.pyrite.path_slab": "baןS ɥʇɐԀ", + "block.pyrite.path_stairs": "sɹᴉatS ɥʇɐԀ", + "block.pyrite.path_carpet": "tǝdɹaƆ ɥʇɐԀ", + "block.pyrite.white_concrete_slab": "bɐןS eteɹɔnoƆ ǝʇᴉɥM", + "block.pyrite.white_concrete_stairs": "sriɐtS eteɹɔnoƆ ǝʇᴉɥM", + "block.pyrite.orange_concrete_slab": "baןS eʇerɔnoƆ ǝᵷnɐɹO", + "block.pyrite.orange_concrete_stairs": "srᴉatS eʇerɔnoƆ ǝᵷnɐɹO", + "block.pyrite.magenta_concrete_slab": "baןS eteɹɔnoƆ aʇnǝᵷɐM", + "block.pyrite.magenta_concrete_stairs": "srᴉatS eteɹɔnoƆ aʇnǝᵷɐM", + "block.pyrite.light_blue_concrete_slab": "bɐlS eteɹɔuoƆ ǝnןᗺ ʇɥᵷᴉꞀ", + "block.pyrite.light_blue_concrete_stairs": "sriɐtS eteɹɔuoƆ ǝnןᗺ ʇɥᵷᴉꞀ", + "block.pyrite.yellow_concrete_slab": "bɐlS eʇeɹɔnoƆ ʍolןǝ⅄", + "block.pyrite.yellow_concrete_stairs": "srᴉɐtS eʇeɹɔnoƆ ʍolןǝ⅄", + "block.pyrite.lime_concrete_slab": "bɐןS eʇeɹɔnoƆ ǝɯᴉꞀ", + "block.pyrite.lime_concrete_stairs": "sriɐtS eʇeɹɔnoƆ ǝɯᴉꞀ", + "block.pyrite.pink_concrete_slab": "bɐןS eʇǝɹɔnoƆ ʞnᴉԀ", + "block.pyrite.pink_concrete_stairs": "sriɐtS eʇǝɹɔnoƆ ʞnᴉԀ", + "block.pyrite.gray_concrete_slab": "baןS eʇǝrɔnoƆ ʎɐɹ⅁", + "block.pyrite.gray_concrete_stairs": "srᴉatS eʇǝrɔnoƆ ʎɐɹ⅁", + "block.pyrite.light_gray_concrete_slab": "baןS etǝrɔnoƆ ʎɐɹ⅁ ʇɥᵷᴉꞀ", + "block.pyrite.light_gray_concrete_stairs": "sriatS etǝrɔnoƆ ʎɐɹ⅁ ʇɥᵷᴉꞀ", + "block.pyrite.cyan_concrete_slab": "baןS eʇǝɹɔnoC nɐʎƆ", + "block.pyrite.cyan_concrete_stairs": "srᴉatS eʇǝɹɔnoC nɐʎƆ", + "block.pyrite.purple_concrete_slab": "bɐlS eʇerɔuoƆ ǝןdɹnԀ", + "block.pyrite.purple_concrete_stairs": "srᴉɐtS eʇerɔuoƆ ǝןdɹnԀ", + "block.pyrite.blue_concrete_slab": "bɐlS eʇeɹɔuoƆ ǝnןᗺ", + "block.pyrite.blue_concrete_stairs": "srᴉɐtS eʇeɹɔuoƆ ǝnןᗺ", + "block.pyrite.brown_concrete_slab": "bɐןS eʇǝrɔnoƆ nʍoɹᗺ", + "block.pyrite.brown_concrete_stairs": "srᴉɐtS eʇǝrɔnoƆ nʍoɹᗺ", + "block.pyrite.green_concrete_slab": "bɐןS eʇerɔnoƆ neǝɹ⅁", + "block.pyrite.green_concrete_stairs": "srᴉɐtS eʇerɔnoƆ neǝɹ⅁", + "block.pyrite.red_concrete_slab": "bɐןS eʇeɹɔnoƆ dǝᴚ", + "block.pyrite.red_concrete_stairs": "srᴉɐtS eʇeɹɔnoƆ dǝᴚ", + "block.pyrite.black_concrete_slab": "balS eʇǝɹcnoƆ ʞɔɐןᗺ", + "block.pyrite.black_concrete_stairs": "srᴉatS eʇǝɹcnoƆ ʞɔɐןᗺ", + "item.pyrite.glow_dye": "ǝʎᗡ ʍoן⅁", + "block.pyrite.glow_wool": "looM ʍoן⅁", + "block.pyrite.glow_carpet": "ʇǝdɹɐƆ ʍoן⅁", + "block.pyrite.glow_terracotta": "atʇoɔɐrɹǝ⟘ ʍoן⅁", + "block.pyrite.glow_concrete": "eʇǝɹɔnoƆ ʍoן⅁", + "block.pyrite.glow_concrete_powder": "redwoԀ eʇǝɹɔnoƆ ʍoן⅁", + "block.pyrite.glow_concrete_slab": "bɐlS eʇǝɹɔnoƆ ʍoן⅁", + "block.pyrite.glow_concrete_stairs": "srᴉɐtS eʇǝɹɔnoƆ ʍoן⅁", + "item.pyrite.dragon_dye": "ǝʎD noᵷɐɹᗡ", + "block.pyrite.dragon_wool": "ןooM noᵷɐɹᗡ", + "block.pyrite.dragon_carpet": "ʇǝdraƆ noᵷɐɹᗡ", + "block.pyrite.dragon_terracotta": "atʇoɔarrǝ⟘ noᵷɐɹᗡ", + "block.pyrite.dragon_concrete": "eʇǝrɔnoƆ noᵷɐɹᗡ", + "block.pyrite.dragon_concrete_powder": "redʍoԀ eʇǝrɔnoƆ noᵷɐɹᗡ", + "block.pyrite.dragon_concrete_slab": "baןS eʇǝrɔnoƆ noᵷɐɹᗡ", + "block.pyrite.dragon_concrete_stairs": "srᴉatS eʇǝrɔnoƆ noᵷɐɹᗡ", + "item.pyrite.star_dye": "ǝʎᗡ ɹɐʇS", + "block.pyrite.star_wool": "ןooM ɹɐʇS", + "block.pyrite.star_carpet": "tǝdraƆ ɹɐʇS", + "block.pyrite.star_terracotta": "attoɔarrǝ⟘ ɹɐʇS", + "block.pyrite.star_concrete": "etǝrɔnoƆ ɹɐʇS", + "block.pyrite.star_concrete_powder": "redʍoԀ etǝrɔnoƆ ɹɐʇS", + "block.pyrite.star_concrete_slab": "baןS etǝrɔnoƆ ɹɐʇS", + "block.pyrite.star_concrete_stairs": "srᴉatS etǝrɔnoƆ ɹɐʇS", + "item.pyrite.honey_dye": "eyᗡ ʎǝnoH", + "block.pyrite.honey_wool": "ןooM ʎǝnoH", + "block.pyrite.honey_carpet": "ʇedɹɐƆ ʎǝnoH", + "block.pyrite.honey_terracotta": "atʇoɔɐrɹe⟘ ʎǝnoH", + "block.pyrite.honey_concrete": "eʇeɹɔnoƆ ʎǝnoH", + "block.pyrite.honey_concrete_powder": "redʍoԀ eʇeɹɔnoƆ ʎǝnoH", + "block.pyrite.honey_concrete_slab": "bɐןS eʇeɹɔnoƆ ʎǝnoH", + "block.pyrite.honey_concrete_stairs": "srᴉɐtS eʇeɹɔnoƆ ʎǝnoH", + "item.pyrite.nostalgia_dye": "ǝʎᗡ aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_wool": "looM aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_carpet": "tǝdɹaƆ aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_terracotta": "attoɔarɹǝ⟘ aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_concrete": "etǝɹɔnoƆ aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_concrete_powder": "redʍoԀ etǝɹɔnoƆ aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_concrete_slab": "balS etǝɹɔnoƆ aᴉᵷןɐʇsoN", + "block.pyrite.nostalgia_concrete_stairs": "sriatS etǝɹɔnoƆ aᴉᵷןɐʇsoN", + "item.pyrite.rose_dye": "eʎᗡ ǝsoᴚ", + "block.pyrite.rose_wool": "ןooM ǝsoᴚ", + "block.pyrite.rose_carpet": "ʇedɹɐƆ ǝsoᴚ", + "block.pyrite.rose_terracotta": "atʇoɔɐrɹe⟘ ǝsoᴚ", + "block.pyrite.rose_concrete": "eʇeɹɔnoƆ ǝsoᴚ", + "block.pyrite.rose_concrete_powder": "redʍoԀ eʇeɹɔnoƆ ǝsoᴚ", + "block.pyrite.rose_concrete_slab": "bɐןS eʇeɹɔnoƆ ǝsoᴚ", + "block.pyrite.rose_concrete_stairs": "srᴉɐtS eʇeɹɔnoƆ ǝsoᴚ", + "item.pyrite.poisonous_dye": "ǝʎᗡ suonosᴉoԀ", + "block.pyrite.poisonous_wool": "ןooM suonosᴉoԀ", + "block.pyrite.poisonous_carpet": "ʇǝdɹɐƆ suonosᴉoԀ", + "block.pyrite.poisonous_terracotta": "atʇoɔɐrɹǝ⟘ suonosᴉoԀ", + "block.pyrite.poisonous_concrete": "eʇǝɹɔnoƆ suonosᴉoԀ", + "block.pyrite.poisonous_concrete_powder": "redʍoP eʇǝɹɔnoƆ suonosᴉoԀ", + "block.pyrite.poisonous_concrete_slab": "bɐןS eʇǝɹɔnoƆ suonosᴉoԀ", + "block.pyrite.poisonous_concrete_stairs": "sriɐtS eʇǝɹɔnoƆ suonosᴉoԀ", + "block.pyrite.glowstone_lamp": "dɯɐꞀ ǝnoʇsʍoן⅁", + "block.pyrite.lit_redstone_lamp": "pɯɐL enotsdǝᴚ ʇᴉꞀ", + "block.pyrite.glowing_obsidian": "nɐidisbO ᵷnᴉʍoן⅁", + "block.pyrite.nostalgia_glowing_obsidian": "naidisbO gniʍol⅁ aᴉᵷןɐʇsoN", + "block.pyrite.locked_chest": "ʇseɥƆ dǝʞɔoꞀ", + "block.pyrite.charred_nether_bricks": "sʞɔᴉrᗺ rehʇeN dǝrɹɐɥƆ", + "block.pyrite.charred_nether_brick_slab": "baןS ʞɔᴉrᗺ rehʇeN dǝrɹɐɥƆ", + "block.pyrite.charred_nether_brick_stairs": "sriatS ʞɔᴉrᗺ rehʇeN dǝrɹɐɥƆ", + "block.pyrite.charred_nether_brick_wall": "lןaM ʞɔᴉrᗺ rehʇeN dǝrɹɐɥƆ", + "block.pyrite.charred_nether_brick_wall_gate": "eta⅁ lןaM ʞɔᴉrᗺ rehʇeN dǝrɹɐɥƆ", + "block.pyrite.blue_nether_bricks": "sʞɔᴉrB ɹeɥʇeN ǝnןᗺ", + "block.pyrite.blue_nether_brick_slab": "bɐlS ʞɔᴉrB ɹeɥʇeN ǝnןᗺ", + "block.pyrite.blue_nether_brick_stairs": "sriɐtS ʞɔᴉrB ɹeɥʇeN ǝnןᗺ", + "block.pyrite.blue_nether_brick_wall": "llɐM ʞɔᴉrB ɹeɥʇeN ǝnןᗺ", + "block.pyrite.blue_nether_brick_wall_gate": "eta⅁ llɐM ʞɔᴉrB ɹeɥʇeN ǝnןᗺ", + "block.pyrite.cobblestone_wall_gate": "eta⅁ llɐM enoʇsǝןbboƆ", + "block.pyrite.mossy_cobblestone_wall_gate": "eta⅁ llɐW enoʇsǝןbboƆ ʎssoM", + "block.pyrite.stone_brick_wall_gate": "eta⅁ lןɐM ʞɔᴉɹᗺ ǝnoʇS", + "block.pyrite.mossy_stone_brick_wall_gate": "eta⅁ lןɐW ʞɔᴉɹᗺ ǝnoʇS ʎssoM", + "block.pyrite.granite_wall_gate": "etaG lןaM ǝʇᴉnɐɹ⅁", + "block.pyrite.diorite_wall_gate": "eta⅁ lןɐM ǝʇiɹoᴉᗡ", + "block.pyrite.andesite_wall_gate": "eta⅁ lןɐM eʇᴉsǝdnⱯ", + "block.pyrite.cobbled_deepslate_wall_gate": "eta⅁ llaM eʇɐlspeeᗡ dǝןbboƆ", + "block.pyrite.polished_deepslate_wall_gate": "eta⅁ llaM eʇɐlspeeᗡ dǝɥsᴉןoԀ", + "block.pyrite.deepslate_brick_wall_gate": "eta⅁ llaM ʞɔᴉɹᗺ eʇɐןsdeǝᗡ", + "block.pyrite.deepslate_tile_wall_gate": "eta⅁ llaM elᴉ⟘ eʇɐןsdeǝᗡ", + "block.pyrite.brick_wall_gate": "ǝʇa⅁ lןɐM ʞɔᴉɹᗺ", + "block.pyrite.mud_brick_wall_gate": "ǝʇa⅁ lןɐW ʞɔᴉɹᗺ dnM", + "block.pyrite.sandstone_wall_gate": "eta⅁ lןaM ǝnoʇsdnɐS", + "block.pyrite.red_sandstone_wall_gate": "eta⅁ lןaM enoʇsdnɐS dǝᴚ", + "block.pyrite.prismarine_wall_gate": "eʇa⅁ lןaM ǝnirɐɯsᴉɹԀ", + "block.pyrite.nether_brick_wall_gate": "eta⅁ lןɐM ʞɔᴉrᗺ ɹeɥʇǝN", + "block.pyrite.red_nether_brick_wall_gate": "eta⅁ lןɐM ʞɔᴉrᗺ ɹeɥʇeN dǝᴚ", + "block.pyrite.blackstone_wall_gate": "eta⅁ llaM ǝnoʇsʞɔɐןᗺ", + "block.pyrite.polished_blackstone_wall_gate": "eta⅁ llaM enoʇsʞɔɐlᗺ dǝɥsᴉןoԀ", + "block.pyrite.polished_blackstone_brick_wall_gate": "eta⅁ llaM kciɹB enoʇsʞɔɐlᗺ dǝɥsᴉןoԀ", + "block.pyrite.end_stone_brick_wall_gate": "eta⅁ lןɐM ʞɔᴉɹᗺ ǝnoʇS dnƎ", + "block.pyrite.cut_iron": "uoɹI ʇnƆ", + "block.pyrite.cut_iron_slab": "bɐןS uoɹI ʇnƆ", + "block.pyrite.cut_iron_stairs": "srᴉɐtS uoɹI ʇnƆ", + "block.pyrite.cut_iron_wall": "lןɐM uoɹI ʇnƆ", + "block.pyrite.cut_iron_wall_gate": "ǝta⅁ lןɐM uoɹI ʇnƆ", + "block.pyrite.smooth_iron": "noɹI ɥʇooɯS", + "block.pyrite.smooth_iron_slab": "bɐןS noɹI ɥʇooɯS", + "block.pyrite.smooth_iron_stairs": "srᴉɐtS noɹI ɥʇooɯS", + "block.pyrite.smooth_iron_wall": "lןɐM noɹI ɥʇooɯS", + "block.pyrite.smooth_iron_wall_gate": "ǝta⅁ lןɐM noɹI ɥʇooɯS", + "block.pyrite.iron_bricks": "sʞɔᴉrᗺ noɹI", + "block.pyrite.iron_pillar": "rɐlןᴉԀ noɹI", + "block.pyrite.chiseled_iron_block": "ʞɔolᗺ noɹI deןǝsᴉɥƆ", + "block.pyrite.nostalgia_iron_block": "ʞɔolᗺ noɹI aᴉᵷןɐʇsoN", + "block.pyrite.iron_button": "notʇuᗺ noɹI", + "block.pyrite.cut_gold": "dןo⅁ ʇnƆ", + "block.pyrite.cut_gold_slab": "bɐlS dןo⅁ ʇnƆ", + "block.pyrite.cut_gold_stairs": "sɹᴉɐtS dןo⅁ ʇnƆ", + "block.pyrite.cut_gold_wall": "llɐM dןo⅁ ʇnƆ", + "block.pyrite.cut_gold_wall_gate": "ǝtaG llɐM dןo⅁ ʇnƆ", + "block.pyrite.smooth_gold": "dןo⅁ ɥʇooɯS", + "block.pyrite.smooth_gold_slab": "bɐlS dןo⅁ ɥʇooɯS", + "block.pyrite.smooth_gold_stairs": "sɹᴉɐtS dןo⅁ ɥʇooɯS", + "block.pyrite.smooth_gold_wall": "llɐM dןo⅁ ɥʇooɯS", + "block.pyrite.smooth_gold_wall_gate": "ǝtaG llɐM dןo⅁ ɥʇooɯS", + "block.pyrite.gold_bricks": "sʞɔᴉɹᗺ dןo⅁", + "block.pyrite.gold_pillar": "ɹɐllᴉԀ dןo⅁", + "block.pyrite.gold_bars": "sɹɐᗺ dןo⅁", + "block.pyrite.chiseled_gold_block": "ʞɔolᗺ dlo⅁ deןǝsᴉɥƆ", + "block.pyrite.gold_door": "ɹooᗡ dןo⅁", + "block.pyrite.gold_trapdoor": "roodpɐɹ⟘ dןo⅁", + "block.pyrite.nostalgia_gold_block": "ʞɔolᗺ dlo⅁ aᴉᵷןɐʇsoN", + "block.pyrite.gold_button": "uotʇnᗺ dןo⅁", + "block.pyrite.cut_emerald": "dןɐɹǝɯƎ ʇnƆ", + "block.pyrite.cut_emerald_slab": "balS dןɐɹǝɯƎ ʇnƆ", + "block.pyrite.cut_emerald_stairs": "srᴉatS dןɐɹǝɯƎ ʇnƆ", + "block.pyrite.cut_emerald_wall": "llaM dןɐɹǝɯƎ ʇnƆ", + "block.pyrite.cut_emerald_wall_gate": "eta⅁ llaM dןɐɹǝɯƎ ʇnƆ", + "block.pyrite.smooth_emerald": "dןɐɹǝmƎ ɥʇooɯS", + "block.pyrite.smooth_emerald_slab": "balS dןɐɹǝmƎ ɥʇooɯS", + "block.pyrite.smooth_emerald_stairs": "srᴉatS dןɐɹǝmƎ ɥʇooɯS", + "block.pyrite.smooth_emerald_wall": "llaM dןɐɹǝmƎ ɥʇooɯS", + "block.pyrite.smooth_emerald_wall_gate": "eta⅁ llaM dןɐɹǝmƎ ɥʇooɯS", + "block.pyrite.emerald_bricks": "sʞɔᴉrᗺ dןɐɹǝɯƎ", + "block.pyrite.emerald_pillar": "rallᴉԀ dןɐɹǝɯƎ", + "block.pyrite.emerald_bars": "sraᗺ dןɐɹǝɯƎ", + "block.pyrite.chiseled_emerald_block": "ʞɔolᗺ dlɐɹeɯƎ deןǝsᴉɥƆ", + "block.pyrite.emerald_door": "rooᗡ dןɐɹǝɯƎ", + "block.pyrite.emerald_trapdoor": "roodpar⟘ dןɐɹǝɯƎ", + "block.pyrite.nostalgia_emerald_block": "ʞɔolᗺ dlaɹǝɯƎ aᴉᵷןɐʇsoN", + "block.pyrite.emerald_button": "uotʇnᗺ dןɐɹǝɯƎ", + "block.pyrite.emerald_pressure_plate": "eʇalP ernsserԀ dןɐɹǝɯƎ", + "block.pyrite.cut_diamond": "duoɯɐᴉᗡ ʇnƆ", + "block.pyrite.cut_diamond_slab": "baןS duoɯɐᴉᗡ ʇnƆ", + "block.pyrite.cut_diamond_stairs": "sɹiatS duoɯɐᴉᗡ ʇnƆ", + "block.pyrite.cut_diamond_wall": "lןaM duoɯɐᴉᗡ ʇnƆ", + "block.pyrite.cut_diamond_wall_gate": "ǝta⅁ lןaM duoɯɐᴉᗡ ʇnƆ", + "block.pyrite.smooth_diamond": "dnomɐᴉᗡ ɥʇooɯS", + "block.pyrite.smooth_diamond_slab": "baןS dnomɐᴉᗡ ɥʇooɯS", + "block.pyrite.smooth_diamond_stairs": "sɹiatS dnomɐᴉᗡ ɥʇooɯS", + "block.pyrite.smooth_diamond_wall": "lןaM dnomɐᴉᗡ ɥʇooɯS", + "block.pyrite.smooth_diamond_wall_gate": "ǝta⅁ lןaM dnomɐᴉᗡ ɥʇooɯS", + "block.pyrite.diamond_bricks": "sʞɔiɹᗺ dnoɯɐᴉᗡ", + "block.pyrite.diamond_pillar": "ɹalןiԀ dnoɯɐᴉᗡ", + "block.pyrite.diamond_bars": "sɹaᗺ dnoɯɐᴉᗡ", + "block.pyrite.chiseled_diamond_block": "ʞɔolᗺ dnoɯɐiᗡ deןǝsᴉɥƆ", + "block.pyrite.diamond_door": "ɹooD dnoɯɐᴉᗡ", + "block.pyrite.diamond_trapdoor": "roodpaɹ⟘ dnoɯɐᴉᗡ", + "block.pyrite.nostalgia_diamond_block": "ʞɔolᗺ dnoɯaiᗡ aᴉᵷןɐʇsoN", + "block.pyrite.diamond_button": "notʇuᗺ dnoɯɐᴉᗡ", + "block.pyrite.diamond_pressure_plate": "eʇaןP erussǝɹԀ dnoɯɐᴉᗡ", + "block.pyrite.cut_netherite": "etᴉɹeɥtǝN ʇnƆ", + "block.pyrite.cut_netherite_slab": "bɐןS etᴉɹeɥtǝN ʇnƆ", + "block.pyrite.cut_netherite_stairs": "sriɐtS etᴉɹeɥtǝN ʇnƆ", + "block.pyrite.cut_netherite_wall": "lןɐM etᴉɹeɥtǝN ʇnƆ", + "block.pyrite.cut_netherite_wall_gate": "eta⅁ lןɐM etᴉɹeɥtǝN ʇnƆ", + "block.pyrite.smooth_netherite": "etᴉɹehtǝN ɥʇooɯS", + "block.pyrite.smooth_netherite_slab": "bɐןS etᴉɹehtǝN ɥʇooɯS", + "block.pyrite.smooth_netherite_stairs": "sriɐtS etᴉɹehtǝN ɥʇooɯS", + "block.pyrite.smooth_netherite_wall": "lןɐM etᴉɹehtǝN ɥʇooɯS", + "block.pyrite.smooth_netherite_wall_gate": "eta⅁ lןɐM etᴉɹehtǝN ɥʇooɯS", + "block.pyrite.netherite_bricks": "sʞɔirᗺ etᴉɹeɥʇǝN", + "block.pyrite.netherite_pillar": "rɐlןiԀ etᴉɹeɥʇǝN", + "block.pyrite.netherite_bars": "srɐᗺ etᴉɹeɥʇǝN", + "block.pyrite.chiseled_netherite_block": "ʞɔolᗺ etiɹehʇeN deןǝsᴉɥƆ", + "block.pyrite.netherite_door": "rooᗡ etᴉɹeɥʇǝN", + "block.pyrite.netherite_trapdoor": "roopdɐr⟘ etᴉɹeɥʇǝN", + "block.pyrite.nostalgia_netherite_block": "ʞɔolᗺ etiɹeɥtǝN aᴉᵷןɐʇsoN", + "block.pyrite.netherite_button": "uottnᗺ etᴉɹeɥʇǝN", + "block.pyrite.netherite_pressure_plate": "etɐןP ernsserԀ etᴉɹeɥʇǝN", + "block.pyrite.cut_quartz": "ztɹɐuꝹ ʇnƆ", + "block.pyrite.cut_quartz_slab": "baןS ztɹɐuꝹ ʇnƆ", + "block.pyrite.cut_quartz_stairs": "srᴉatS ztɹɐuꝹ ʇnƆ", + "block.pyrite.cut_quartz_wall": "lןaM ztɹɐuꝹ ʇnƆ", + "block.pyrite.cut_quartz_wall_gate": "ǝta⅁ lןaM ztɹɐuꝹ ʇnƆ", + "block.pyrite.smooth_quartz_wall": "lןaM ztɹɐnꝹ ɥʇooɯS", + "block.pyrite.smooth_quartz_wall_gate": "ǝta⅁ lןaM ztɹɐnꝹ ɥʇooɯS", + "block.pyrite.quartz_bars": "sraᗺ zʇɹɐnꝹ", + "block.pyrite.quartz_door": "rooᗡ zʇɹɐnꝹ", + "block.pyrite.quartz_trapdoor": "roopdar⟘ zʇɹɐnꝹ", + "block.pyrite.nostalgia_quartz_block": "ʞɔolᗺ ztɹanꝹ aᴉᵷןɐʇsoN", + "block.pyrite.quartz_button": "uottuᗺ zʇɹɐnꝹ", + "block.pyrite.quartz_pressure_plate": "etaןP erussǝrԀ zʇɹɐnꝹ", + "block.pyrite.cut_amethyst": "tsʎɥtǝɯⱯ ʇnƆ", + "block.pyrite.cut_amethyst_slab": "bɐןS tsʎɥtǝɯⱯ ʇnƆ", + "block.pyrite.cut_amethyst_stairs": "sɹᴉɐtS tsʎɥtǝɯⱯ ʇnƆ", + "block.pyrite.cut_amethyst_wall": "lןɐM tsʎɥtǝɯⱯ ʇnƆ", + "block.pyrite.cut_amethyst_wall_gate": "eta⅁ lןɐM tsʎɥtǝɯⱯ ʇnƆ", + "block.pyrite.smooth_amethyst": "tsʎhtǝmⱯ ɥʇooɯS", + "block.pyrite.smooth_amethyst_slab": "bɐןS tsʎhtǝmⱯ ɥʇooɯS", + "block.pyrite.smooth_amethyst_stairs": "sɹᴉɐtS tsʎhtǝmⱯ ɥʇooɯS", + "block.pyrite.smooth_amethyst_wall": "lןɐM tsʎhtǝmⱯ ɥʇooɯS", + "block.pyrite.smooth_amethyst_wall_gate": "eta⅁ lןɐM tsʎhtǝmⱯ ɥʇooɯS", + "block.pyrite.amethyst_bricks": "sʞɔᴉɹᗺ tsʎɥʇǝɯⱯ", + "block.pyrite.amethyst_pillar": "ɹɐlןᴉԀ tsʎɥʇǝɯⱯ", + "block.pyrite.amethyst_bars": "sɹɐᗺ tsʎɥʇǝɯⱯ", + "block.pyrite.chiseled_amethyst_block": "ʞɔolᗺ tsʎhʇeɯⱯ deןǝsᴉɥƆ", + "block.pyrite.amethyst_door": "ɹooᗡ tsʎɥʇǝɯⱯ", + "block.pyrite.amethyst_trapdoor": "roopdɐɹ⟘ tsʎɥʇǝɯⱯ", + "block.pyrite.nostalgia_amethyst_block": "ʞɔolᗺ tsʎɥtǝɯⱯ aᴉᵷןɐʇsoN", + "block.pyrite.amethyst_button": "uottnᗺ tsʎɥʇǝɯⱯ", + "block.pyrite.amethyst_pressure_plate": "etɐןP ernsseɹԀ tsʎɥʇǝɯⱯ", + "block.pyrite.cut_lapis": "sᴉdɐꞀ ʇnƆ", + "block.pyrite.cut_lapis_slab": "baןS sᴉdɐꞀ ʇnƆ", + "block.pyrite.cut_lapis_stairs": "sɹiatS sᴉdɐꞀ ʇnƆ", + "block.pyrite.cut_lapis_wall": "lןaM sᴉdɐꞀ ʇnƆ", + "block.pyrite.cut_lapis_wall_gate": "ǝta⅁ lןaM sᴉdɐꞀ ʇnƆ", + "block.pyrite.smooth_lapis": "sᴉdɐꞀ ɥʇooɯS", + "block.pyrite.smooth_lapis_slab": "baןS sᴉdɐꞀ ɥʇooɯS", + "block.pyrite.smooth_lapis_stairs": "sɹiatS sᴉdɐꞀ ɥʇooɯS", + "block.pyrite.smooth_lapis_wall": "lןaM sᴉdɐꞀ ɥʇooɯS", + "block.pyrite.smooth_lapis_wall_gate": "ǝta⅁ lןaM sᴉdɐꞀ ɥʇooɯS", + "block.pyrite.lapis_bricks": "sʞɔiɹᗺ sᴉdɐꞀ", + "block.pyrite.lapis_pillar": "ɹalןiԀ sᴉdɐꞀ", + "block.pyrite.lapis_bars": "sɹaᗺ sᴉdɐꞀ", + "block.pyrite.chiseled_lapis_block": "ʞɔolᗺ sipɐꞀ deןǝsᴉɥƆ", + "block.pyrite.lapis_door": "ɹooᗡ sᴉdɐꞀ", + "block.pyrite.lapis_trapdoor": "rooppaɹ⟘ sᴉdɐꞀ", + "block.pyrite.nostalgia_lapis_block": "ʞɔolᗺ sidaꞀ aᴉᵷןɐʇsoN", + "block.pyrite.lapis_button": "uotʇnᗺ sᴉdɐꞀ", + "block.pyrite.lapis_pressure_plate": "eʇaןP ernssǝɹԀ sᴉdɐꞀ", + "block.pyrite.cut_redstone": "euotsdǝᴚ ʇnƆ", + "block.pyrite.cut_redstone_slab": "bɐןS euotsdǝᴚ ʇnƆ", + "block.pyrite.cut_redstone_stairs": "sɹᴉɐtS euotsdǝᴚ ʇnƆ", + "block.pyrite.cut_redstone_wall": "lןɐM euotsdǝᴚ ʇnƆ", + "block.pyrite.cut_redstone_wall_gate": "eta⅁ lןɐM euotsdǝᴚ ʇnƆ", + "block.pyrite.smooth_redstone": "enotsdǝᴚ ɥʇooɯS", + "block.pyrite.smooth_redstone_slab": "bɐןS enotsdǝᴚ ɥʇooɯS", + "block.pyrite.smooth_redstone_stairs": "sɹᴉɐtS enotsdǝᴚ ɥʇooɯS", + "block.pyrite.smooth_redstone_wall": "lןɐM enotsdǝᴚ ɥʇooɯS", + "block.pyrite.smooth_redstone_wall_gate": "eta⅁ lןɐM enotsdǝᴚ ɥʇooɯS", + "block.pyrite.redstone_bricks": "sʞɔᴉɹᗺ enoʇsdǝᴚ", + "block.pyrite.redstone_pillar": "ɹɐlןᴉԀ enoʇsdǝᴚ", + "block.pyrite.redstone_bars": "sɹɐᗺ enoʇsdǝᴚ", + "block.pyrite.chiseled_redstone_block": "ʞɔolᗺ enoʇsdeᴚ deןǝsᴉɥƆ", + "block.pyrite.redstone_door": "ɹooᗡ enoʇsdǝᴚ", + "block.pyrite.redstone_trapdoor": "roodpɐɹ⟘ enoʇsdǝᴚ", + "block.pyrite.nostalgia_redstone_block": "ʞɔolᗺ enotsdǝᴚ aᴉᵷןɐʇsoN", + "block.pyrite.redstone_button": "nottuᗺ enoʇsdǝᴚ", + "block.pyrite.redstone_pressure_plate": "etɐןP erusseɹԀ enoʇsdǝᴚ", + "block.pyrite.cut_copper_wall": "lןɐM ɹǝpdoC ʇnƆ", + "block.pyrite.cut_copper_wall_gate": "eta⅁ lןɐM ɹǝpdoC ʇnƆ", + "block.pyrite.smooth_copper": "ɹǝpdoƆ ɥʇooɯS", + "block.pyrite.smooth_copper_slab": "bɐןS ɹǝpdoƆ ɥʇooɯS", + "block.pyrite.smooth_copper_stairs": "srᴉɐtS ɹǝpdoƆ ɥʇooɯS", + "block.pyrite.smooth_copper_wall": "lןɐM ɹǝpdoƆ ɥʇooɯS", + "block.pyrite.smooth_copper_wall_gate": "eta⅁ lןɐM ɹǝpdoƆ ɥʇooɯS", + "block.pyrite.copper_bricks": "sʞɔᴉrᗺ ɹǝpdoƆ", + "block.pyrite.copper_pillar": "rɐlןᴉԀ ɹǝpdoƆ", + "block.pyrite.copper_bars": "srɐᗺ ɹǝpdoƆ", + "block.pyrite.chiseled_copper_block": "ʞɔolᗺ ɹeppoC deןǝsᴉɥƆ", + "block.pyrite.copper_door": "rooᗡ ɹǝpdoƆ", + "block.pyrite.copper_trapdoor": "rooppɐr⟘ ɹǝpdoƆ", + "block.pyrite.nostalgia_copper_block": "ʞɔolᗺ ɹǝpdoƆ aᴉᵷןɐʇsoN", + "block.pyrite.copper_button": "uotʇnᗺ ɹǝpdoƆ", + "block.pyrite.copper_pressure_plate": "eʇɐןP ernsserԀ ɹǝpdoƆ", + "block.pyrite.cut_exposed_copper_wall": "lןɐM ɹeppoC pǝsodxƎ ʇnƆ", + "block.pyrite.cut_exposed_copper_wall_gate": "eta⅁ lןɐM ɹeppoC pǝsodxƎ ʇnƆ", + "block.pyrite.smooth_exposed_copper": "ɹeppoƆ pǝsodxƎ ɥʇooɯS", + "block.pyrite.smooth_exposed_copper_slab": "bɐןS ɹeppoƆ pǝsodxƎ ɥʇooɯS", + "block.pyrite.smooth_exposed_copper_stairs": "srᴉɐtS ɹeppoƆ pǝsodxƎ ɥʇooɯS", + "block.pyrite.smooth_exposed_copper_wall": "lןɐM ɹeppoƆ pǝsodxƎ ɥʇooɯS", + "block.pyrite.smooth_exposed_copper_wall_gate": "eta⅁ lןɐM ɹeppoƆ pǝsodxƎ ɥʇooɯS", + "block.pyrite.exposed_copper_bricks": "sʞɔᴉrᗺ ɹeppoƆ pǝsodxƎ", + "block.pyrite.exposed_copper_pillar": "rɐlןᴉԀ ɹeppoƆ pǝsodxƎ", + "block.pyrite.exposed_copper_bars": "srɐᗺ ɹeppoƆ pǝsodxƎ", + "block.pyrite.chiseled_exposed_copper_block": "ʞɔolᗺ ɹeppoC desopxƎ deןǝsᴉɥƆ", + "block.pyrite.exposed_copper_door": "rooᗡ ɹeppoƆ pǝsodxƎ", + "block.pyrite.exposed_copper_trapdoor": "roodpɐr⟘ ɹeppoƆ pǝsodxƎ", + "block.pyrite.nostalgia_exposed_copper_block": "ʞɔolᗺ ɹeppoƆ pǝsodxƎ aᴉᵷןɐʇsoN", + "block.pyrite.exposed_copper_button": "uotʇnᗺ ɹeppoƆ pǝsodxƎ", + "block.pyrite.exposed_copper_pressure_plate": "eʇɐןP ernsserԀ ɹeppoƆ pǝsodxƎ", + "block.pyrite.cut_weathered_copper_wall": "lןaW reppoC deɹeɥtɐǝM ʇnƆ", + "block.pyrite.cut_weathered_copper_wall_gate": "eta⅁ lןaW reppoC deɹeɥtɐǝM ʇnƆ", + "block.pyrite.smooth_weathered_copper": "reppoƆ deɹehtɐǝM ɥʇooɯS", + "block.pyrite.smooth_weathered_copper_slab": "baןS reppoƆ deɹehtɐǝM ɥʇooɯS", + "block.pyrite.smooth_weathered_copper_stairs": "srᴉatS reppoƆ deɹehtɐǝM ɥʇooɯS", + "block.pyrite.smooth_weathered_copper_wall": "lןaW reppoƆ deɹehtɐǝM ɥʇooɯS", + "block.pyrite.smooth_weathered_copper_wall_gate": "eta⅁ lןaW reppoƆ deɹehtɐǝM ɥʇooɯS", + "block.pyrite.weathered_copper_bricks": "sʞɔᴉrᗺ reppoƆ deɹeɥʇɐǝM", + "block.pyrite.weathered_copper_pillar": "ralןᴉԀ reppoƆ deɹeɥʇɐǝM", + "block.pyrite.weathered_copper_bars": "sraᗺ reppoƆ deɹeɥʇɐǝM", + "block.pyrite.chiseled_weathered_copper_block": "ʞɔolᗺ reppoC deɹehʇɐeM deןǝsᴉɥƆ", + "block.pyrite.weathered_copper_door": "rooᗡ reppoƆ deɹeɥʇɐǝM", + "block.pyrite.weathered_copper_trapdoor": "roodpar⟘ reppoƆ deɹeɥʇɐǝM", + "block.pyrite.nostalgia_weathered_copper_block": "ʞɔolᗺ reppoƆ deɹeɥtaǝM aᴉᵷןɐʇsoN", + "block.pyrite.weathered_copper_button": "uottnᗺ reppoƆ deɹeɥʇɐǝM", + "block.pyrite.weathered_copper_pressure_plate": "etaןP ernsserԀ reppoƆ deɹeɥʇɐǝM", + "block.pyrite.cut_oxidized_copper_wall": "lןɐM ɹeppoC dǝzidᴉxO ʇnƆ", + "block.pyrite.cut_oxidized_copper_wall_gate": "eta⅁ lןɐM ɹeppoC dǝzidᴉxO ʇnƆ", + "block.pyrite.smooth_oxidized_copper": "ɹeppoƆ dǝzidᴉxO ɥʇooɯS", + "block.pyrite.smooth_oxidized_copper_slab": "bɐןS ɹeppoƆ dǝzidᴉxO ɥʇooɯS", + "block.pyrite.smooth_oxidized_copper_stairs": "sriɐtS ɹeppoƆ dǝzidᴉxO ɥʇooɯS", + "block.pyrite.smooth_oxidized_copper_wall": "lןɐM ɹeppoƆ dǝzidᴉxO ɥʇooɯS", + "block.pyrite.smooth_oxidized_copper_wall_gate": "eta⅁ lןɐM ɹeppoƆ dǝzidᴉxO ɥʇooɯS", + "block.pyrite.oxidized_copper_bricks": "sʞɔirᗺ ɹeppoƆ dǝzidᴉxO", + "block.pyrite.oxidized_copper_pillar": "rɐlןiԀ ɹeppoƆ dǝzidᴉxO", + "block.pyrite.oxidized_copper_bars": "srɐᗺ ɹeppoƆ dǝzidᴉxO", + "block.pyrite.chiseled_oxidized_copper_block": "ʞɔolᗺ ɹeppoC dezidixO deןǝsᴉɥƆ", + "block.pyrite.oxidized_copper_door": "rooᗡ ɹeppoƆ dǝzidᴉxO", + "block.pyrite.oxidized_copper_trapdoor": "roodpɐr⟘ ɹeppoƆ dǝzidᴉxO", + "block.pyrite.nostalgia_oxidized_copper_block": "ʞɔolᗺ ɹeppoƆ dǝzidixO aᴉᵷןɐʇsoN", + "block.pyrite.oxidized_copper_button": "uotʇnᗺ ɹeppoƆ dǝzidᴉxO", + "block.pyrite.oxidized_copper_pressure_plate": "eʇɐןP ernsserԀ ɹeppoƆ dǝzidᴉxO", + "block.pyrite.rose": "ǝsoᴚ", + "block.pyrite.blue_rose": "esoᴚ ǝnןᗺ", + "block.pyrite.orange_rose": "esoᴚ ǝᵷnɐɹO", + "block.pyrite.white_rose": "esoᴚ ǝʇᴉɥM", + "block.pyrite.pink_rose": "ǝsoᴚ ʞnᴉԀ", + "block.pyrite.paeonia": "aᴉnoǝɐԀ", + "block.pyrite.pink_daisy": "ʎsiɐᗡ ʞnᴉԀ", + "block.pyrite.buttercup": "duɔɹǝtʇnᗺ", + "block.pyrite.nether_brick_fence_gate": "etɐ⅁ ecneℲ ʞɔᴉrᗺ ɹeɥʇǝN", + "block.pyrite.switchable_glass": "ssal⅁ ǝןbɐɥɔʇᴉʍS", + "tag.item.pyrite.wall_gates": "sǝʇa⅁ lןɐM", + "tag.item.pyrite.lamps": "sdɯɐꞀ", + "tag.item.pyrite.bricks": "sʞɔᴉɹᗺ", + "tag.item.pyrite.dyed_bricks": "sʞɔᴉɹᗺ dǝʎᗡ", + "tag.item.pyrite.stained_framed_glass": "ssaן⅁ deɯaɹℲ dǝnᴉɐʇS", + "tag.item.pyrite.fences": "seɔnǝℲ", + "tag.item.pyrite.wool": "ןooM", + "tag.item.pyrite.metal_bars": "sɹaᗺ ןɐʇǝM", + "tag.item.pyrite.planks": "sʞnɐןԀ", + "tag.item.pyrite.brick_stairs": "sriɐʇS ʞɔᴉɹᗺ", + "tag.item.pyrite.metal_trapdoors": "sroopdaɹ⟘ ןɐʇǝM", + "tag.item.pyrite.brick_walls": "slןɐM ʞɔᴉɹᗺ", + "tag.item.pyrite.metal_buttons": "suottnᗺ ןɐʇǝM", + "tag.item.pyrite.concrete_slabs": "sbɐןS eʇǝɹɔnoƆ", + "tag.item.pyrite.concrete_stairs": "srᴉɐtS eʇǝɹɔnoƆ", + "tag.item.c.dyed.honey": "yenoH dǝʎᗡ", + "tag.item.c.dyed.glow": "ʍoן⅁ dǝʎᗡ", + "tag.item.c.dyed.nostalgia": "aᴉᵷןɐʇsoN dǝʎᗡ", + "tag.item.c.dyed.poisonous": "suonosᴉoԀ dǝʎᗡ", + "tag.item.c.dyed.rose": "esoᴚ dǝʎᗡ", + "tag.item.c.dyed.star": "ɹɐʇS dǝʎᗡ", + "tag.item.c.dyed.dragon": "noᵷɐɹD dǝʎᗡ" +} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/lang/en_us.json b/common/src/main/resources/assets/pyrite/lang/en_us.json index 323b946df..59cce3889 100644 --- a/common/src/main/resources/assets/pyrite/lang/en_us.json +++ b/common/src/main/resources/assets/pyrite/lang/en_us.json @@ -1 +1,1467 @@ -{"itemGroup.pyrite.pyrite_group":"Pyrite Building Blocks","itemGroup.pyrite.wood_group":"Pyrite Wooden Blocks","itemGroup.pyrite.resource_group":"Pyrite Resource Blocks","itemGroup.pyrite.brick_group":"Pyrite Brick Blocks","itemGroup.pyrite.redstone_group":"Pyrite Redstone Blocks","lore.pyrite.amethyst_bricks":"A variant of Amethyst that has been carved into Bricks.","lore.pyrite.amethyst_door":"A variant of Amethyst that has been carved into a Door.","lore.pyrite.amethyst_pillar":"A variant of Amethyst that has been carved into a Pillar.","lore.pyrite.amethyst_trapdoor":"A variant of Amethyst that has been carved into a Trapdoor.","lore.pyrite.black_bricks":"This Brick block has been dyed Black, and can be used as a building block.","lore.pyrite.black_framed_glass":"This Framed Glass block has been dyed Black, and can be used to as a colourful window.","lore.pyrite.black_framed_glass_pane":"This Framed Glass Pane has been dyed Black, and can be used as a colourful window.","lore.pyrite.black_lamp":"This Lamp block has been dyed Black, and can be used to light up your world.","lore.pyrite.black_terracotta_bricks":"This Terracotta Brick block has been dyed Black, and can be used as a building block.","lore.pyrite.black_torch":"This Torch block has been dyed Black, and can be used to light up your world.","lore.pyrite.black_torch_lever":"This Torch block has been dyed Black, and can be used to hide Redstone in plain sight.","lore.pyrite.blue_bricks":"This Brick block has been dyed Blue, and can be used as a building block.","lore.pyrite.blue_framed_glass":"This Framed Glass block has been dyed Blue, and can be used to as a colourful window.","lore.pyrite.blue_framed_glass_pane":"This Framed Glass Pane has been dyed Blue, and can be used as a colourful window.","lore.pyrite.blue_lamp":"This Lamp block has been dyed Blue, and can be used to light up your world.","lore.pyrite.blue_nether_bricks":"A decorative block adding a pop of blue to your Nether Bricks.","lore.pyrite.blue_rose":"This blue flower makes you think of the past.","lore.pyrite.blue_terracotta_bricks":"This Terracotta Brick block has been dyed Blue, and can be used as a building block.","lore.pyrite.blue_torch":"This Torch block has been dyed Blue, and can be used to light up your world.","lore.pyrite.blue_torch_lever":"This Torch block has been dyed Blue, and can be used to hide Redstone in plain sight.","lore.pyrite.brown_bricks":"This Brick block has been dyed Brown, and can be used as a building block.","lore.pyrite.brown_framed_glass":"This Framed Glass block has been dyed Brown, and can be used to as a colourful window.","lore.pyrite.brown_framed_glass_pane":"This Framed Glass Pane has been dyed Brown, and can be used as a colourful window.","lore.pyrite.brown_lamp":"This Lamp block has been dyed Brown, and can be used to light up your world.","lore.pyrite.brown_terracotta_bricks":"This Terracotta Brick block has been dyed Brown, and can be used as a building block.","lore.pyrite.brown_torch":"This Torch block has been dyed Brown, and can be used to light up your world.","lore.pyrite.brown_torch_lever":"This Torch block has been dyed Brown, and can be used to hide Redstone in plain sight.","lore.pyrite.buttercup":"This yellow flower makes you think of the past.","lore.pyrite.charred_nether_bricks":"A decorative block adding a shadowy accent to your Nether Bricks.","lore.pyrite.chiseled_amethyst_block":"A variant of Amethyst that has been Chiseled.","lore.pyrite.chiseled_diamond_block":"A variant of Diamond that has been Chiseled.","lore.pyrite.chiseled_emerald_block":"A variant of Emerald that has been Chiseled.","lore.pyrite.chiseled_gold_block":"A variant of Gold that has been Chiseled.","lore.pyrite.chiseled_iron_block":"A variant of Iron that has been Chiseled.","lore.pyrite.chiseled_lapis_block":"A variant of Lapis that has been Chiseled.","lore.pyrite.chiseled_netherite_block":"A variant of Netherite that has been Chiseled.","lore.pyrite.chiseled_quartz_block":"A variant of Quartz that has been Chiseled.","lore.pyrite.chiseled_redstone_block":"A variant of Redstone that has been Chiseled.","lore.pyrite.cobblestone_bricks":"This brick block is great for both early and late game builds.","lore.pyrite.copper_pillar":"A variant of Copper that has been carved into a Pillar.","lore.pyrite.cut_amethyst":"A variant of Amethyst that has been Cut.","lore.pyrite.cut_diamond":"A variant of Diamond that has been Cut.","lore.pyrite.cut_emerald":"A variant of Emerald that has been Cut.","lore.pyrite.cut_gold":"A variant of Gold that has been Cut.","lore.pyrite.cut_iron":"A variant of Iron that has been Cut.","lore.pyrite.cut_lapis":"A variant of Lapis that has been Cut.","lore.pyrite.cut_netherite":"A variant of Netherite that has been Cut.","lore.pyrite.cut_quartz":"A variant of Quartz that has been Cut.","lore.pyrite.cut_redstone":"A variant of Redstone that has been Cut.","lore.pyrite.cyan_bricks":"This Brick block has been dyed Cyan, and can be used as a building block.","lore.pyrite.cyan_framed_glass":"This Framed Glass block has been dyed Cyan, and can be used to as a colourful window.","lore.pyrite.cyan_framed_glass_pane":"This Framed Glass Pane has been dyed Cyan, and can be used as a colourful window.","lore.pyrite.cyan_lamp":"This Lamp block has been dyed Cyan, and can be used to light up your world.","lore.pyrite.cyan_terracotta_bricks":"This Terracotta Brick block has been dyed Cyan, and can be used as a building block.","lore.pyrite.cyan_torch":"This Torch block has been dyed Cyan, and can be used to light up your world.","lore.pyrite.cyan_torch_lever":"This Torch block has been dyed Cyan, and can be used to hide Redstone in plain sight.","lore.pyrite.diamond_bricks":"A variant of Diamond that has been carved into Bricks.","lore.pyrite.diamond_door":"A variant of Diamond that has been carved into a Door.","lore.pyrite.diamond_pillar":"A variant of Diamond that has been carved into a Pillar.","lore.pyrite.diamond_trapdoor":"A variant of Diamond that has been carved into a Trapdoor.","lore.pyrite.dragon_bricks":"This Brick block has been dyed with Dragon's Breath, and can be used as a building block.","lore.pyrite.dragon_dye":"A green dye made from Dragon's Breath, that gives blocks crafted with it a subtle glow.","lore.pyrite.dragon_framed_glass":"This Framed Glass block has been dyed with Dragon's Breath, and can be used to as a colourful window.","lore.pyrite.dragon_framed_glass_pane":"This Framed Glass Pane has been dyed with Dragon's Breath, and can be used as a colourful window.","lore.pyrite.dragon_lamp":"This Lamp block has been dyed with Dragon's Breath, and can be used to light up your world.","lore.pyrite.dragon_terracotta_bricks":"This Terracotta Brick block has been dyed with Dragon's Breath, and can be used as a building block.","lore.pyrite.dragon_torch":"This Torch block has been dyed with Dragon's Breath, and can be used to light up your world.","lore.pyrite.dragon_torch_lever":"This Torch block has been dyed with Dragon's Breath, and can be used to hide Redstone in plain sight.","lore.pyrite.emerald_bricks":"A variant of Emerald that has been carved into Bricks.","lore.pyrite.emerald_door":"A variant of Emerald that has been carved into a Door.","lore.pyrite.emerald_pillar":"A variant of Emerald that has been carved into a Pillar.","lore.pyrite.emerald_trapdoor":"A variant of Emerald that has been carved into a Trapdoor.","lore.pyrite.exposed_copper_pillar":"A variant of Exposed Copper that has been carved into a Pillar.","lore.pyrite.framed_glass":"This block can be used as a window. It's slightly tougher than Glass.","lore.pyrite.framed_glass_pane":"This block can be used as a window. It's slightly tougher than Glass.","lore.pyrite.glow_bricks":"This Brick block has been dyed with Glow Ink, and can be used as a building block.","lore.pyrite.glow_dye":"A green dye made from Glow Ink, that gives blocks crafted with it a subtle glow.","lore.pyrite.glow_framed_glass":"This Framed Glass block has been dyed with Glow Ink, and can be used to as a colourful window.","lore.pyrite.glow_framed_glass_pane":"This Framed Glass Pane has been dyed with Glow Ink, and can be used as a colourful window.","lore.pyrite.glow_lamp":"This Lamp block has been dyed with Glow Ink, and can be used to light up your world.","lore.pyrite.glow_terracotta_bricks":"This Terracotta Brick block has been dyed with Glow Ink, and can be used as a building block.","lore.pyrite.glow_torch":"This Torch block has been dyed with Glow Ink, and can be used to light up your world.","lore.pyrite.glow_torch_lever":"This Torch block has been dyed with Glow Ink, and can be used to hide Redstone in plain sight.","lore.pyrite.glowing_obsidian":"This block might have once had a purpose, but now just serves as a light source.","lore.pyrite.gold_bricks":"A variant of Gold that has been carved into Bricks.","lore.pyrite.gold_door":"A variant of Gold that has been carved into a Door.","lore.pyrite.gold_pillar":"A variant of Gold that has been carved into a Pillar.","lore.pyrite.gold_trapdoor":"A variant of Gold that has been carved into a Trapdoor.","lore.pyrite.grass_turf":"This block resembles a Grass Block, with the Grass texture on each side.","lore.pyrite.gray_bricks":"This Brick block has been dyed Gray, and can be used as a building block.","lore.pyrite.gray_framed_glass":"This Framed Glass block has been dyed Gray, and can be used to as a colourful window.","lore.pyrite.gray_framed_glass_pane":"This Framed Glass Pane has been dyed Gray, and can be used as a colourful window.","lore.pyrite.gray_lamp":"This Lamp block has been dyed Gray, and can be used to light up your world.","lore.pyrite.gray_terracotta_bricks":"This Terracotta Brick block has been dyed Gray, and can be used as a building block.","lore.pyrite.gray_torch":"This Torch block has been dyed Gray, and can be used to light up your world.","lore.pyrite.gray_torch_lever":"This Torch block has been dyed Gray, and can be used to hide Redstone in plain sight.","lore.pyrite.green_bricks":"This Brick block has been dyed Green, and can be used as a building block.","lore.pyrite.green_framed_glass":"This Framed Glass block has been dyed Green, and can be used to as a colourful window.","lore.pyrite.green_framed_glass_pane":"This Framed Glass Pane has been dyed Green, and can be used as a colourful window.","lore.pyrite.green_lamp":"This Lamp block has been dyed Green, and can be used to light up your world.","lore.pyrite.green_terracotta_bricks":"This Terracotta Brick block has been dyed Green, and can be used as a building block.","lore.pyrite.green_torch":"This Torch block has been dyed Green, and can be used to light up your world.","lore.pyrite.green_torch_lever":"This Torch block has been dyed Green, and can be used to hide Redstone in plain sight.","lore.pyrite.honey_bricks":"This Brick block has been dyed Honey coloured, and can be used as a building block.","lore.pyrite.honey_dye":"A orange dye made from Honeycomb.","lore.pyrite.honey_framed_glass":"This Framed Glass block has been dyed Honey coloured, and can be used to as a colourful window.","lore.pyrite.honey_framed_glass_pane":"This Framed Glass Pane has been dyed Honey coloured, and can be used as a colourful window.","lore.pyrite.honey_lamp":"This Lamp block has been dyed Honey coloured, and can be used to light up your world.","lore.pyrite.honey_terracotta_bricks":"This Terracotta Brick block has been dyed Honey coloured, and can be used as a building block.","lore.pyrite.honey_torch":"This Torch block has been dyed Honey coloured, and can be used to light up your world.","lore.pyrite.honey_torch_lever":"This Torch block has been dyed Honey coloured, and can be used to hide Redstone in plain sight.","lore.pyrite.iron_bricks":"A variant of Iron that has been carved into Bricks.","lore.pyrite.iron_door":"A variant of Iron that has been carved into a Door.","lore.pyrite.iron_pillar":"A variant of Iron that has been carved into a Pillar.","lore.pyrite.iron_trapdoor":"A variant of Iron that has been carved into a Trapdoor.","lore.pyrite.lapis_bricks":"A variant of Lapis that has been carved into Bricks.","lore.pyrite.lapis_door":"A variant of Lapis that has been carved into a Door.","lore.pyrite.lapis_pillar":"A variant of Lapis that has been carved into a Pillar.","lore.pyrite.lapis_trapdoor":"A variant of Lapis that has been carved into a Trapdoor.","lore.pyrite.light_blue_bricks":"This Brick block has been dyed Light Blue, and can be used as a building block.","lore.pyrite.light_blue_framed_glass":"This Framed Glass block has been dyed Light Blue, and can be used to as a colourful window.","lore.pyrite.light_blue_framed_glass_pane":"This Framed Glass Pane has been dyed Light Blue, and can be used as a colourful window.","lore.pyrite.light_blue_lamp":"This Lamp block has been dyed Light Blue, and can be used to light up your world.","lore.pyrite.light_blue_terracotta_bricks":"This Terracotta Brick block has been dyed Light Blue, and can be used as a building block.","lore.pyrite.light_blue_torch":"This Torch block has been dyed Light Blue, and can be used to light up your world.","lore.pyrite.light_blue_torch_lever":"This Torch block has been dyed Light Blue, and can be used to hide Redstone in plain sight.","lore.pyrite.light_gray_bricks":"This Brick block has been dyed Light Gray, and can be used as a building block.","lore.pyrite.light_gray_framed_glass":"This Framed Glass block has been dyed Light Gray, and can be used to as a colourful window.","lore.pyrite.light_gray_framed_glass_pane":"This Framed Glass Pane has been dyed Light Gray, and can be used as a colourful window.","lore.pyrite.light_gray_lamp":"This Lamp block has been dyed Light Gray, and can be used to light up your world.","lore.pyrite.light_gray_terracotta_bricks":"This Terracotta Brick block has been dyed Light Gray, and can be used as a building block.","lore.pyrite.light_gray_torch":"This Torch block has been dyed Light Gray, and can be used to light up your world.","lore.pyrite.light_gray_torch_lever":"This Torch block has been dyed Light Gray, and can be used to hide Redstone in plain sight.","lore.pyrite.lime_bricks":"This Brick block has been dyed Lime, and can be used as a building block.","lore.pyrite.lime_framed_glass":"This Framed Glass block has been dyed Lime, and can be used to as a colourful window.","lore.pyrite.lime_framed_glass_pane":"This Framed Glass Pane has been dyed Lime, and can be used as a colourful window.","lore.pyrite.lime_lamp":"This Lamp block has been dyed Lime, and can be used to light up your world.","lore.pyrite.lime_terracotta_bricks":"This Terracotta Brick block has been dyed Lime, and can be used as a building block.","lore.pyrite.lime_torch":"This Torch block has been dyed Lime, and can be used to light up your world.","lore.pyrite.lime_torch_lever":"This Torch block has been dyed Lime, and can be used to hide Redstone in plain sight.","lore.pyrite.lit_redstone_lamp":"This block resembles a Redstone Lamp, but is permanently powered thanks to the Redstone Torch inside.","lore.pyrite.locked_chest":"This block might have once had a purpose, but now just serves as a light source.","lore.pyrite.magenta_bricks":"This Brick block has been dyed Magenta, and can be used as a building block.","lore.pyrite.magenta_framed_glass":"This Framed Glass block has been dyed Magenta, and can be used to as a colourful window.","lore.pyrite.magenta_framed_glass_pane":"This Framed Glass Pane has been dyed Magenta, and can be used as a colourful window.","lore.pyrite.magenta_lamp":"This Lamp block has been dyed Magenta, and can be used to light up your world.","lore.pyrite.magenta_terracotta_bricks":"This Terracotta Brick block has been dyed Magenta, and can be used as a building block.","lore.pyrite.magenta_torch":"This Torch block has been dyed Magenta, and can be used to light up your world.","lore.pyrite.magenta_torch_lever":"This Torch block has been dyed Magenta, and can be used to hide Redstone in plain sight.","lore.pyrite.mossy_cobblestone_bricks":"This mossy brick block is great for both early and late game builds.","lore.pyrite.mycelium_turf":"This block resembles Mycelium, with the top texture on each side.","lore.pyrite.nether_brick_fence_gate":"This block resembles a Nether Brick Fence, but can be opened like a door!","lore.pyrite.netherite_bricks":"A variant of Netherite that has been carved into Bricks.","lore.pyrite.netherite_door":"A variant of Netherite that has been carved into a Door.","lore.pyrite.netherite_pillar":"A variant of Netherite that has been carved into a Pillar.","lore.pyrite.netherite_trapdoor":"A variant of Netherite that has been carved into a Trapdoor.","lore.pyrite.nostalgia_amethyst_block":"Just looking at this block's shiny texture makes you wonder what might have been.","lore.pyrite.nostalgia_bricks":"Just looking at this block's bright texture brings back memories.","lore.pyrite.nostalgia_cobblestone":"Just looking at this block's dramatic cracks brings back memories.","lore.pyrite.nostalgia_copper_block":"Just looking at this block's shiny texture makes you wonder what might have been.","lore.pyrite.nostalgia_diamond_block":"Just looking at this block's shiny texture brings back memories.","lore.pyrite.nostalgia_dye":"A green dye made from an Apple that brings out fond memories.","lore.pyrite.nostalgia_emerald_block":"Just looking at this block's chiseled texture brings back memories.","lore.pyrite.nostalgia_exposed_copper_block":"Just looking at this block's shiny texture makes you wonder what might have been.","lore.pyrite.nostalgia_framed_glass":"This Framed Glass block looks familiar, and can be used to as a colourful window.","lore.pyrite.nostalgia_framed_glass_pane":"This Framed Glass Pane looks familiar, and can be used as a colourful window.","lore.pyrite.nostalgia_glowing_obsidian":"This block might have once had a purpose, but now just serves as a light source.","lore.pyrite.nostalgia_gold_block":"Just looking at this block's shiny texture brings back memories.","lore.pyrite.nostalgia_grass_block":"Just looking at this block's vibrant texture brings back memories.","lore.pyrite.nostalgia_gravel":"Just looking at this block's messy texture brings back memories.","lore.pyrite.nostalgia_iron_block":"Just looking at this block's shiny texture brings back memories.","lore.pyrite.nostalgia_lamp":"This Lamp block looks familiar, and can be used to light up your world.","lore.pyrite.nostalgia_lapis_block":"Just looking at this block's smooth texture brings back memories.","lore.pyrite.nostalgia_mossy_cobblestone":"Just looking at this block's dramatic cracks brings back memories.","lore.pyrite.nostalgia_netherite_block":"Just looking at this block's shiny texture makes you wonder what might have been.","lore.pyrite.nostalgia_netherrack":"Just looking at this block's strange texture brings back memories.","lore.pyrite.nostalgia_oxidized_copper_block":"Just looking at this block's shiny texture makes you wonder what might have been.","lore.pyrite.nostalgia_redstone_block":"Just looking at this block's darker texture brings back memories.","lore.pyrite.nostalgia_terracotta_bricks":"This Terracotta Brick block looks familiar, and can be used as a building block.","lore.pyrite.nostalgia_torch":"This Torch block looks familiar, and can be used to light up your world.","lore.pyrite.nostalgia_torch_lever":"This Torch block looks familiar, and can be used to hide Redstone in plain sight.","lore.pyrite.nostalgia_weathered_copper_block":"Just looking at this block's shiny texture makes you wonder what might have been.","lore.pyrite.orange_bricks":"This Brick block has been dyed Orange, and can be used as a building block.","lore.pyrite.orange_framed_glass":"This Framed Glass block has been dyed Orange, and can be used to as a colourful window.","lore.pyrite.orange_framed_glass_pane":"This Framed Glass Pane has been dyed Orange, and can be used as a colourful window.","lore.pyrite.orange_lamp":"This Lamp block has been dyed Orange, and can be used to light up your world.","lore.pyrite.orange_rose":"This orange flower makes you think of the past.","lore.pyrite.orange_terracotta_bricks":"This Terracotta Brick block has been dyed Orange, and can be used as a building block.","lore.pyrite.orange_torch":"This Torch block has been dyed Orange, and can be used to light up your world.","lore.pyrite.orange_torch_lever":"This Torch block has been dyed Orange, and can be used to hide Redstone in plain sight.","lore.pyrite.oxidized_copper_pillar":"A variant of Oxidized Copper that has been carved into a Pillar.","lore.pyrite.paenoia_rose":"This magenta flower makes you think of what might've been.","lore.pyrite.path_turf":"This block resembles a Dirt Path Block, with the top texture on each side.","lore.pyrite.pink_bricks":"This Brick block has been dyed Pink, and can be used as a building block.","lore.pyrite.pink_daisy":"This pink flower makes you think of the past.","lore.pyrite.pink_framed_glass":"This Framed Glass block has been dyed Pink, and can be used to as a colourful window.","lore.pyrite.pink_framed_glass_pane":"This Framed Glass Pane has been dyed Pink, and can be used as a colourful window.","lore.pyrite.pink_lamp":"This Lamp block has been dyed Pink, and can be used to light up your world.","lore.pyrite.pink_rose":"This pink flower makes you think of the past.","lore.pyrite.pink_terracotta_bricks":"This Terracotta Brick block has been dyed Pink, and can be used as a building block.","lore.pyrite.pink_torch":"This Torch block has been dyed Pink, and can be used to light up your world.","lore.pyrite.pink_torch_lever":"This Torch block has been dyed Pink, and can be used to hide Redstone in plain sight.","lore.pyrite.podzol_turf":"This block resembles Podzol, with the top texture on each side.","lore.pyrite.poisonous_bricks":"This Brick block has been dyed Poisonous Green, and can be used as a building block.","lore.pyrite.poisonous_dye":"A lime dye made from an Poisonous Potato.","lore.pyrite.poisonous_framed_glass":"This Framed Glass block has been dyed Poisonous Green, and can be used to as a colourful window.","lore.pyrite.poisonous_framed_glass_pane":"This Framed Glass Pane has been dyed Poisonous Green, and can be used as a colourful window.","lore.pyrite.poisonous_lamp":"This Lamp block has been dyed Poisonous Green, and can be used to light up your world.","lore.pyrite.poisonous_terracotta_bricks":"This Terracotta Brick block has been dyed Poisonous Green, and can be used as a building block.","lore.pyrite.poisonous_torch":"This Torch block has been dyed Poisonous Green, and can be used to light up your world.","lore.pyrite.poisonous_torch_lever":"This Torch block has been dyed Poisonous Green, and can be used to hide Redstone in plain sight.","lore.pyrite.purple_bricks":"This Brick block has been dyed Purple, and can be used as a building block.","lore.pyrite.purple_framed_glass":"This Framed Glass block has been dyed Purple, and can be used to as a colourful window.","lore.pyrite.purple_framed_glass_pane":"This Framed Glass Pane has been dyed Purple, and can be used as a colourful window.","lore.pyrite.purple_lamp":"This Lamp block has been dyed Purple, and can be used to light up your world.","lore.pyrite.purple_terracotta_bricks":"This Terracotta Brick block has been dyed Purple, and can be used as a building block.","lore.pyrite.purple_torch":"This Torch block has been dyed Purple, and can be used to light up your world.","lore.pyrite.purple_torch_lever":"This Torch block has been dyed Purple, and can be used to hide Redstone in plain sight.","lore.pyrite.quartz_bricks":"A variant of Quartz that has been carved into Bricks.","lore.pyrite.quartz_door":"A variant of Quartz that has been carved into a Door.","lore.pyrite.quartz_pillar":"A variant of Quartz that has been carved into a Pillar.","lore.pyrite.quartz_trapdoor":"A variant of Quartz that has been carved into a Trapdoor.","lore.pyrite.red_bricks":"This Brick block has been dyed Red, and can be used as a building block.","lore.pyrite.red_framed_glass":"This Framed Glass block has been dyed Red, and can be used to as a colourful window.","lore.pyrite.red_framed_glass_pane":"This Framed Glass Pane has been dyed Red, and can be used as a colourful window.","lore.pyrite.red_lamp":"This Lamp block has been dyed Red, and can be used to light up your world.","lore.pyrite.red_terracotta_bricks":"This Terracotta Brick block has been dyed Red, and can be used as a building block.","lore.pyrite.red_torch":"This Torch block has been dyed Red, and can be used to light up your world.","lore.pyrite.red_torch_lever":"This Torch block has been dyed Red, and can be used to hide Redstone in plain sight.","lore.pyrite.redstone_bricks":"A variant of Redstone that has been carved into Bricks.","lore.pyrite.redstone_door":"A variant of Redstone that has been carved into a Door.","lore.pyrite.redstone_pillar":"A variant of Redstone that has been carved into a Pillar.","lore.pyrite.redstone_torch_lever":"This Redstone Torch can be used to hide Redstone in plain sight.","lore.pyrite.redstone_trapdoor":"A variant of Redstone that has been carved into a Trapdoor.","lore.pyrite.rose":"This red flower makes you think of the past.","lore.pyrite.rose_bricks":"This Brick block has been dyed Rose, and can be used as a building block.","lore.pyrite.rose_dye":"A red dye made from mixing Red and Pink Dye.","lore.pyrite.rose_framed_glass":"This Framed Glass block has been dyed Rose, and can be used to as a colourful window.","lore.pyrite.rose_framed_glass_pane":"This Framed Glass Pane has been dyed Rose, and can be used as a colourful window.","lore.pyrite.rose_lamp":"This Lamp block has been dyed Rose, and can be used to light up your world.","lore.pyrite.rose_terracotta_bricks":"This Terracotta Brick block has been dyed Rose, and can be used as a building block.","lore.pyrite.rose_torch":"This Torch block has been dyed Rose, and can be used to light up your world.","lore.pyrite.rose_torch_lever":"This Torch block has been dyed Rose, and can be used to hide Redstone in plain sight.","lore.pyrite.smooth_amethyst":"A variant of Amethyst that has been carved to be perfectly smooth.","lore.pyrite.smooth_copper":"A variant of Copper that has been carved to be perfectly smooth.","lore.pyrite.smooth_diamond":"A variant of Diamond that has been carved to be perfectly smooth.","lore.pyrite.smooth_emerald":"A variant of Emerald that has been carved to be perfectly smooth.","lore.pyrite.smooth_exposed_copper":"A variant of Exposed Copper that has been carved to be perfectly smooth.","lore.pyrite.smooth_gold":"A variant of Gold that has been carved to be perfectly smooth.","lore.pyrite.smooth_iron":"A variant of Iron that has been carved to be perfectly smooth.","lore.pyrite.smooth_lapis":"A variant of Lapis that has been carved to be perfectly smooth.","lore.pyrite.smooth_netherite":"A variant of Netherite that has been carved to be perfectly smooth.","lore.pyrite.smooth_oxidized_copper":"A variant of Oxidized Copper that has been carved to be perfectly smooth.","lore.pyrite.smooth_quartz":"A variant of Quartz that has been carved to be perfectly smooth.","lore.pyrite.smooth_redstone":"A variant of Redstone that has been carved to be perfectly smooth.","lore.pyrite.smooth_stone_bricks":"A variant of Smooth Stone that has been carved into bricks. ","lore.pyrite.smooth_weathered_copper":"A variant of Weathered Copper that has been carved to be perfectly smooth.","lore.pyrite.soul_torch_lever":"This Soul Torch can be used to hide Redstone in plain sight.","lore.pyrite.star_bricks":"This Brick block has been dyed with a Nether Star, and can be used as a building block.","lore.pyrite.star_dye":"A dark dye made from a Nether Star, that gives blocks crafted with it a bright glow.","lore.pyrite.star_framed_glass":"This Framed Glass block has been dyed with a Nether Star, and can be used to as a colourful window.","lore.pyrite.star_framed_glass_pane":"This Framed Glass Pane has been dyed with a Nether Star, and can be used as a colourful window.","lore.pyrite.star_lamp":"This Lamp block has been dyed with a Nether Star, and can be used to light up your world.","lore.pyrite.star_terracotta_bricks":"This Terracotta Brick block has been dyed with a Nether Star, and can be used as a building block.","lore.pyrite.star_torch":"This Torch block has been dyed with a Nether Star, and can be used to light up your world.","lore.pyrite.star_torch_lever":"This Torch block has been dyed with a Nether Star, and can be used to hide Redstone in plain sight.","lore.pyrite.torch_lever":"This Torch can be used to hide Redstone in plain sight.","lore.pyrite.weathered_copper_pillar":"A variant of Weathered Copper that has been carved into a Pillar.","lore.pyrite.white_bricks":"This Brick block has been dyed White, and can be used as a building block.","lore.pyrite.white_framed_glass":"This Framed Glass block has been dyed White, and can be used to as a colourful window.","lore.pyrite.white_framed_glass_pane":"This Framed Glass Pane has been dyed White, and can be used as a colourful window.","lore.pyrite.white_lamp":"This Lamp block has been dyed White, and can be used to light up your world.","lore.pyrite.white_rose":"This white flower makes you think of the past.","lore.pyrite.white_terracotta_bricks":"This Terracotta Brick block has been dyed White, and can be used as a building block.","lore.pyrite.white_torch":"This Torch block has been dyed White, and can be used to light up your world.","lore.pyrite.white_torch_lever":"This Torch block has been dyed White, and can be used to hide Redstone in plain sight.","lore.pyrite.yellow_bricks":"This Brick block has been dyed Yellow, and can be used as a building block.","lore.pyrite.yellow_framed_glass":"This Framed Glass block has been dyed Yellow, and can be used to as a colourful window.","lore.pyrite.yellow_framed_glass_pane":"This Framed Glass Pane has been dyed Yellow, and can be used as a colourful window.","lore.pyrite.yellow_lamp":"This Lamp block has been dyed Yellow, and can be used to light up your world.","lore.pyrite.yellow_terracotta_bricks":"This Terracotta Brick block has been dyed Yellow, and can be used as a building block.","lore.pyrite.yellow_torch":"This Torch block has been dyed Yellow, and can be used to light up your world.","lore.pyrite.yellow_torch_lever":"This Torch block has been dyed Yellow, and can be used to hide Redstone in plain sight.","tag.item.pyrite.copper_doors":"Copper Doors","tag.item.pyrite.crafting_tables":"Crafting Tables","tag.item.pyrite.metal_doors":"Metal Doors","tag.item.pyrite.mushroom_stem":"Mushroom Stems","tag.pyrite.brick_wall_gates.description":"This block resembles a Wall, but it can be opened like a door.","tag.pyrite.crafting_tables.description":"This block allows you to craft a more varied selection of items than the normal crafting.","tag.pyrite.ladders.description":"This block can be used to climb vertically.","tag.pyrite.metal_bars.description":"This block can be used as a barrier, but can be jumped over.","tag.pyrite.turf_carpets.description":"These decorative blocks look like Turf, and can be placed to hide lights.","tag.pyrite.wall_gates.description":"This block resembles a Wall, but it can be opened like a door.","block.pyrite.torch_lever":"Torch Lever","block.pyrite.redstone_torch_lever":"Redstone Torch Lever","block.pyrite.soul_torch_lever":"Soul Torch Lever","block.pyrite.white_stained_button":"White Stained Button","block.pyrite.white_stained_stairs":"White Stained Stairs","block.pyrite.white_stained_slab":"White Stained Slab","block.pyrite.white_stained_pressure_plate":"White Stained Pressure Plate","block.pyrite.white_stained_fence":"White Stained Fence","block.pyrite.white_stained_fence_gate":"White Stained Fence Gate","block.pyrite.white_stained_planks":"White Stained Planks","block.pyrite.white_stained_crafting_table":"White Stained Crafting Table","block.pyrite.white_stained_ladder":"White Stained Ladder","block.pyrite.white_stained_door":"White Stained Door","block.pyrite.white_stained_sign":"White Stained Sign","block.pyrite.white_stained_hanging_sign":"White Stained Hanging Sign","block.pyrite.white_stained_trapdoor":"White Stained Trapdoor","block.pyrite.white_bricks":"White Bricks","block.pyrite.white_brick_slab":"White Brick Slab","block.pyrite.white_brick_stairs":"White Brick Stairs","block.pyrite.white_brick_wall":"White Brick Wall","block.pyrite.white_brick_wall_gate":"White Brick Wall Gate","block.pyrite.white_terracotta_bricks":"White Terracotta Bricks","block.pyrite.white_terracotta_brick_slab":"White Terracotta Brick Slab","block.pyrite.white_terracotta_brick_stairs":"White Terracotta Brick Stairs","block.pyrite.white_terracotta_brick_wall":"White Terracotta Brick Wall","block.pyrite.white_terracotta_brick_wall_gate":"White Terracotta Brick Wall Gate","block.pyrite.white_lamp":"White Lamp","block.pyrite.white_torch":"White Torch","block.pyrite.white_torch_lever":"White Torch Lever","block.pyrite.white_framed_glass":"White Framed Glass","block.pyrite.white_framed_glass_pane":"White Framed Glass Pane","block.pyrite.orange_stained_button":"Orange Stained Button","block.pyrite.orange_stained_stairs":"Orange Stained Stairs","block.pyrite.orange_stained_slab":"Orange Stained Slab","block.pyrite.orange_stained_pressure_plate":"Orange Stained Pressure Plate","block.pyrite.orange_stained_fence":"Orange Stained Fence","block.pyrite.orange_stained_fence_gate":"Orange Stained Fence Gate","block.pyrite.orange_stained_planks":"Orange Stained Planks","block.pyrite.orange_stained_crafting_table":"Orange Stained Crafting Table","block.pyrite.orange_stained_ladder":"Orange Stained Ladder","block.pyrite.orange_stained_door":"Orange Stained Door","block.pyrite.orange_stained_sign":"Orange Stained Sign","block.pyrite.orange_stained_hanging_sign":"Orange Stained Hanging Sign","block.pyrite.orange_stained_trapdoor":"Orange Stained Trapdoor","block.pyrite.orange_bricks":"Orange Bricks","block.pyrite.orange_brick_slab":"Orange Brick Slab","block.pyrite.orange_brick_stairs":"Orange Brick Stairs","block.pyrite.orange_brick_wall":"Orange Brick Wall","block.pyrite.orange_brick_wall_gate":"Orange Brick Wall Gate","block.pyrite.orange_terracotta_bricks":"Orange Terracotta Bricks","block.pyrite.orange_terracotta_brick_slab":"Orange Terracotta Brick Slab","block.pyrite.orange_terracotta_brick_stairs":"Orange Terracotta Brick Stairs","block.pyrite.orange_terracotta_brick_wall":"Orange Terracotta Brick Wall","block.pyrite.orange_terracotta_brick_wall_gate":"Orange Terracotta Brick Wall Gate","block.pyrite.orange_lamp":"Orange Lamp","block.pyrite.orange_torch":"Orange Torch","block.pyrite.orange_torch_lever":"Orange Torch Lever","block.pyrite.orange_framed_glass":"Orange Framed Glass","block.pyrite.orange_framed_glass_pane":"Orange Framed Glass Pane","block.pyrite.magenta_stained_button":"Magenta Stained Button","block.pyrite.magenta_stained_stairs":"Magenta Stained Stairs","block.pyrite.magenta_stained_slab":"Magenta Stained Slab","block.pyrite.magenta_stained_pressure_plate":"Magenta Stained Pressure Plate","block.pyrite.magenta_stained_fence":"Magenta Stained Fence","block.pyrite.magenta_stained_fence_gate":"Magenta Stained Fence Gate","block.pyrite.magenta_stained_planks":"Magenta Stained Planks","block.pyrite.magenta_stained_crafting_table":"Magenta Stained Crafting Table","block.pyrite.magenta_stained_ladder":"Magenta Stained Ladder","block.pyrite.magenta_stained_door":"Magenta Stained Door","block.pyrite.magenta_stained_sign":"Magenta Stained Sign","block.pyrite.magenta_stained_hanging_sign":"Magenta Stained Hanging Sign","block.pyrite.magenta_stained_trapdoor":"Magenta Stained Trapdoor","block.pyrite.magenta_bricks":"Magenta Bricks","block.pyrite.magenta_brick_slab":"Magenta Brick Slab","block.pyrite.magenta_brick_stairs":"Magenta Brick Stairs","block.pyrite.magenta_brick_wall":"Magenta Brick Wall","block.pyrite.magenta_brick_wall_gate":"Magenta Brick Wall Gate","block.pyrite.magenta_terracotta_bricks":"Magenta Terracotta Bricks","block.pyrite.magenta_terracotta_brick_slab":"Magenta Terracotta Brick Slab","block.pyrite.magenta_terracotta_brick_stairs":"Magenta Terracotta Brick Stairs","block.pyrite.magenta_terracotta_brick_wall":"Magenta Terracotta Brick Wall","block.pyrite.magenta_terracotta_brick_wall_gate":"Magenta Terracotta Brick Wall Gate","block.pyrite.magenta_lamp":"Magenta Lamp","block.pyrite.magenta_torch":"Magenta Torch","block.pyrite.magenta_torch_lever":"Magenta Torch Lever","block.pyrite.magenta_framed_glass":"Magenta Framed Glass","block.pyrite.magenta_framed_glass_pane":"Magenta Framed Glass Pane","block.pyrite.light_blue_stained_button":"Light Blue Stained Button","block.pyrite.light_blue_stained_stairs":"Light Blue Stained Stairs","block.pyrite.light_blue_stained_slab":"Light Blue Stained Slab","block.pyrite.light_blue_stained_pressure_plate":"Light Blue Stained Pressure Plate","block.pyrite.light_blue_stained_fence":"Light Blue Stained Fence","block.pyrite.light_blue_stained_fence_gate":"Light Blue Stained Fence Gate","block.pyrite.light_blue_stained_planks":"Light Blue Stained Planks","block.pyrite.light_blue_stained_crafting_table":"Light Blue Stained Crafting Table","block.pyrite.light_blue_stained_ladder":"Light Blue Stained Ladder","block.pyrite.light_blue_stained_door":"Light Blue Stained Door","block.pyrite.light_blue_stained_sign":"Light Blue Stained Sign","block.pyrite.light_blue_stained_hanging_sign":"Light Blue Stained Hanging Sign","block.pyrite.light_blue_stained_trapdoor":"Light Blue Stained Trapdoor","block.pyrite.light_blue_bricks":"Light Blue Bricks","block.pyrite.light_blue_brick_slab":"Light Blue Brick Slab","block.pyrite.light_blue_brick_stairs":"Light Blue Brick Stairs","block.pyrite.light_blue_brick_wall":"Light Blue Brick Wall","block.pyrite.light_blue_brick_wall_gate":"Light Blue Brick Wall Gate","block.pyrite.light_blue_terracotta_bricks":"Light Blue Terracotta Bricks","block.pyrite.light_blue_terracotta_brick_slab":"Light Blue Terracotta Brick Slab","block.pyrite.light_blue_terracotta_brick_stairs":"Light Blue Terracotta Brick Stairs","block.pyrite.light_blue_terracotta_brick_wall":"Light Blue Terracotta Brick Wall","block.pyrite.light_blue_terracotta_brick_wall_gate":"Light Blue Terracotta Brick Wall Gate","block.pyrite.light_blue_lamp":"Light Blue Lamp","block.pyrite.light_blue_torch":"Light Blue Torch","block.pyrite.light_blue_torch_lever":"Light Blue Torch Lever","block.pyrite.light_blue_framed_glass":"Light Blue Framed Glass","block.pyrite.light_blue_framed_glass_pane":"Light Blue Framed Glass Pane","block.pyrite.yellow_stained_button":"Yellow Stained Button","block.pyrite.yellow_stained_stairs":"Yellow Stained Stairs","block.pyrite.yellow_stained_slab":"Yellow Stained Slab","block.pyrite.yellow_stained_pressure_plate":"Yellow Stained Pressure Plate","block.pyrite.yellow_stained_fence":"Yellow Stained Fence","block.pyrite.yellow_stained_fence_gate":"Yellow Stained Fence Gate","block.pyrite.yellow_stained_planks":"Yellow Stained Planks","block.pyrite.yellow_stained_crafting_table":"Yellow Stained Crafting Table","block.pyrite.yellow_stained_ladder":"Yellow Stained Ladder","block.pyrite.yellow_stained_door":"Yellow Stained Door","block.pyrite.yellow_stained_sign":"Yellow Stained Sign","block.pyrite.yellow_stained_hanging_sign":"Yellow Stained Hanging Sign","block.pyrite.yellow_stained_trapdoor":"Yellow Stained Trapdoor","block.pyrite.yellow_bricks":"Yellow Bricks","block.pyrite.yellow_brick_slab":"Yellow Brick Slab","block.pyrite.yellow_brick_stairs":"Yellow Brick Stairs","block.pyrite.yellow_brick_wall":"Yellow Brick Wall","block.pyrite.yellow_brick_wall_gate":"Yellow Brick Wall Gate","block.pyrite.yellow_terracotta_bricks":"Yellow Terracotta Bricks","block.pyrite.yellow_terracotta_brick_slab":"Yellow Terracotta Brick Slab","block.pyrite.yellow_terracotta_brick_stairs":"Yellow Terracotta Brick Stairs","block.pyrite.yellow_terracotta_brick_wall":"Yellow Terracotta Brick Wall","block.pyrite.yellow_terracotta_brick_wall_gate":"Yellow Terracotta Brick Wall Gate","block.pyrite.yellow_lamp":"Yellow Lamp","block.pyrite.yellow_torch":"Yellow Torch","block.pyrite.yellow_torch_lever":"Yellow Torch Lever","block.pyrite.yellow_framed_glass":"Yellow Framed Glass","block.pyrite.yellow_framed_glass_pane":"Yellow Framed Glass Pane","block.pyrite.lime_stained_button":"Lime Stained Button","block.pyrite.lime_stained_stairs":"Lime Stained Stairs","block.pyrite.lime_stained_slab":"Lime Stained Slab","block.pyrite.lime_stained_pressure_plate":"Lime Stained Pressure Plate","block.pyrite.lime_stained_fence":"Lime Stained Fence","block.pyrite.lime_stained_fence_gate":"Lime Stained Fence Gate","block.pyrite.lime_stained_planks":"Lime Stained Planks","block.pyrite.lime_stained_crafting_table":"Lime Stained Crafting Table","block.pyrite.lime_stained_ladder":"Lime Stained Ladder","block.pyrite.lime_stained_door":"Lime Stained Door","block.pyrite.lime_stained_sign":"Lime Stained Sign","block.pyrite.lime_stained_hanging_sign":"Lime Stained Hanging Sign","block.pyrite.lime_stained_trapdoor":"Lime Stained Trapdoor","block.pyrite.lime_bricks":"Lime Bricks","block.pyrite.lime_brick_slab":"Lime Brick Slab","block.pyrite.lime_brick_stairs":"Lime Brick Stairs","block.pyrite.lime_brick_wall":"Lime Brick Wall","block.pyrite.lime_brick_wall_gate":"Lime Brick Wall Gate","block.pyrite.lime_terracotta_bricks":"Lime Terracotta Bricks","block.pyrite.lime_terracotta_brick_slab":"Lime Terracotta Brick Slab","block.pyrite.lime_terracotta_brick_stairs":"Lime Terracotta Brick Stairs","block.pyrite.lime_terracotta_brick_wall":"Lime Terracotta Brick Wall","block.pyrite.lime_terracotta_brick_wall_gate":"Lime Terracotta Brick Wall Gate","block.pyrite.lime_lamp":"Lime Lamp","block.pyrite.lime_torch":"Lime Torch","block.pyrite.lime_torch_lever":"Lime Torch Lever","block.pyrite.lime_framed_glass":"Lime Framed Glass","block.pyrite.lime_framed_glass_pane":"Lime Framed Glass Pane","block.pyrite.pink_stained_button":"Pink Stained Button","block.pyrite.pink_stained_stairs":"Pink Stained Stairs","block.pyrite.pink_stained_slab":"Pink Stained Slab","block.pyrite.pink_stained_pressure_plate":"Pink Stained Pressure Plate","block.pyrite.pink_stained_fence":"Pink Stained Fence","block.pyrite.pink_stained_fence_gate":"Pink Stained Fence Gate","block.pyrite.pink_stained_planks":"Pink Stained Planks","block.pyrite.pink_stained_crafting_table":"Pink Stained Crafting Table","block.pyrite.pink_stained_ladder":"Pink Stained Ladder","block.pyrite.pink_stained_door":"Pink Stained Door","block.pyrite.pink_stained_sign":"Pink Stained Sign","block.pyrite.pink_stained_hanging_sign":"Pink Stained Hanging Sign","block.pyrite.pink_stained_trapdoor":"Pink Stained Trapdoor","block.pyrite.pink_bricks":"Pink Bricks","block.pyrite.pink_brick_slab":"Pink Brick Slab","block.pyrite.pink_brick_stairs":"Pink Brick Stairs","block.pyrite.pink_brick_wall":"Pink Brick Wall","block.pyrite.pink_brick_wall_gate":"Pink Brick Wall Gate","block.pyrite.pink_terracotta_bricks":"Pink Terracotta Bricks","block.pyrite.pink_terracotta_brick_slab":"Pink Terracotta Brick Slab","block.pyrite.pink_terracotta_brick_stairs":"Pink Terracotta Brick Stairs","block.pyrite.pink_terracotta_brick_wall":"Pink Terracotta Brick Wall","block.pyrite.pink_terracotta_brick_wall_gate":"Pink Terracotta Brick Wall Gate","block.pyrite.pink_lamp":"Pink Lamp","block.pyrite.pink_torch":"Pink Torch","block.pyrite.pink_torch_lever":"Pink Torch Lever","block.pyrite.pink_framed_glass":"Pink Framed Glass","block.pyrite.pink_framed_glass_pane":"Pink Framed Glass Pane","block.pyrite.gray_stained_button":"Gray Stained Button","block.pyrite.gray_stained_stairs":"Gray Stained Stairs","block.pyrite.gray_stained_slab":"Gray Stained Slab","block.pyrite.gray_stained_pressure_plate":"Gray Stained Pressure Plate","block.pyrite.gray_stained_fence":"Gray Stained Fence","block.pyrite.gray_stained_fence_gate":"Gray Stained Fence Gate","block.pyrite.gray_stained_planks":"Gray Stained Planks","block.pyrite.gray_stained_crafting_table":"Gray Stained Crafting Table","block.pyrite.gray_stained_ladder":"Gray Stained Ladder","block.pyrite.gray_stained_door":"Gray Stained Door","block.pyrite.gray_stained_sign":"Gray Stained Sign","block.pyrite.gray_stained_hanging_sign":"Gray Stained Hanging Sign","block.pyrite.gray_stained_trapdoor":"Gray Stained Trapdoor","block.pyrite.gray_bricks":"Gray Bricks","block.pyrite.gray_brick_slab":"Gray Brick Slab","block.pyrite.gray_brick_stairs":"Gray Brick Stairs","block.pyrite.gray_brick_wall":"Gray Brick Wall","block.pyrite.gray_brick_wall_gate":"Gray Brick Wall Gate","block.pyrite.gray_terracotta_bricks":"Gray Terracotta Bricks","block.pyrite.gray_terracotta_brick_slab":"Gray Terracotta Brick Slab","block.pyrite.gray_terracotta_brick_stairs":"Gray Terracotta Brick Stairs","block.pyrite.gray_terracotta_brick_wall":"Gray Terracotta Brick Wall","block.pyrite.gray_terracotta_brick_wall_gate":"Gray Terracotta Brick Wall Gate","block.pyrite.gray_lamp":"Gray Lamp","block.pyrite.gray_torch":"Gray Torch","block.pyrite.gray_torch_lever":"Gray Torch Lever","block.pyrite.gray_framed_glass":"Gray Framed Glass","block.pyrite.gray_framed_glass_pane":"Gray Framed Glass Pane","block.pyrite.light_gray_stained_button":"Light Gray Stained Button","block.pyrite.light_gray_stained_stairs":"Light Gray Stained Stairs","block.pyrite.light_gray_stained_slab":"Light Gray Stained Slab","block.pyrite.light_gray_stained_pressure_plate":"Light Gray Stained Pressure Plate","block.pyrite.light_gray_stained_fence":"Light Gray Stained Fence","block.pyrite.light_gray_stained_fence_gate":"Light Gray Stained Fence Gate","block.pyrite.light_gray_stained_planks":"Light Gray Stained Planks","block.pyrite.light_gray_stained_crafting_table":"Light Gray Stained Crafting Table","block.pyrite.light_gray_stained_ladder":"Light Gray Stained Ladder","block.pyrite.light_gray_stained_door":"Light Gray Stained Door","block.pyrite.light_gray_stained_sign":"Light Gray Stained Sign","block.pyrite.light_gray_stained_hanging_sign":"Light Gray Stained Hanging Sign","block.pyrite.light_gray_stained_trapdoor":"Light Gray Stained Trapdoor","block.pyrite.light_gray_bricks":"Light Gray Bricks","block.pyrite.light_gray_brick_slab":"Light Gray Brick Slab","block.pyrite.light_gray_brick_stairs":"Light Gray Brick Stairs","block.pyrite.light_gray_brick_wall":"Light Gray Brick Wall","block.pyrite.light_gray_brick_wall_gate":"Light Gray Brick Wall Gate","block.pyrite.light_gray_terracotta_bricks":"Light Gray Terracotta Bricks","block.pyrite.light_gray_terracotta_brick_slab":"Light Gray Terracotta Brick Slab","block.pyrite.light_gray_terracotta_brick_stairs":"Light Gray Terracotta Brick Stairs","block.pyrite.light_gray_terracotta_brick_wall":"Light Gray Terracotta Brick Wall","block.pyrite.light_gray_terracotta_brick_wall_gate":"Light Gray Terracotta Brick Wall Gate","block.pyrite.light_gray_lamp":"Light Gray Lamp","block.pyrite.light_gray_torch":"Light Gray Torch","block.pyrite.light_gray_torch_lever":"Light Gray Torch Lever","block.pyrite.light_gray_framed_glass":"Light Gray Framed Glass","block.pyrite.light_gray_framed_glass_pane":"Light Gray Framed Glass Pane","block.pyrite.cyan_stained_button":"Cyan Stained Button","block.pyrite.cyan_stained_stairs":"Cyan Stained Stairs","block.pyrite.cyan_stained_slab":"Cyan Stained Slab","block.pyrite.cyan_stained_pressure_plate":"Cyan Stained Pressure Plate","block.pyrite.cyan_stained_fence":"Cyan Stained Fence","block.pyrite.cyan_stained_fence_gate":"Cyan Stained Fence Gate","block.pyrite.cyan_stained_planks":"Cyan Stained Planks","block.pyrite.cyan_stained_crafting_table":"Cyan Stained Crafting Table","block.pyrite.cyan_stained_ladder":"Cyan Stained Ladder","block.pyrite.cyan_stained_door":"Cyan Stained Door","block.pyrite.cyan_stained_sign":"Cyan Stained Sign","block.pyrite.cyan_stained_hanging_sign":"Cyan Stained Hanging Sign","block.pyrite.cyan_stained_trapdoor":"Cyan Stained Trapdoor","block.pyrite.cyan_bricks":"Cyan Bricks","block.pyrite.cyan_brick_slab":"Cyan Brick Slab","block.pyrite.cyan_brick_stairs":"Cyan Brick Stairs","block.pyrite.cyan_brick_wall":"Cyan Brick Wall","block.pyrite.cyan_brick_wall_gate":"Cyan Brick Wall Gate","block.pyrite.cyan_terracotta_bricks":"Cyan Terracotta Bricks","block.pyrite.cyan_terracotta_brick_slab":"Cyan Terracotta Brick Slab","block.pyrite.cyan_terracotta_brick_stairs":"Cyan Terracotta Brick Stairs","block.pyrite.cyan_terracotta_brick_wall":"Cyan Terracotta Brick Wall","block.pyrite.cyan_terracotta_brick_wall_gate":"Cyan Terracotta Brick Wall Gate","block.pyrite.cyan_lamp":"Cyan Lamp","block.pyrite.cyan_torch":"Cyan Torch","block.pyrite.cyan_torch_lever":"Cyan Torch Lever","block.pyrite.cyan_framed_glass":"Cyan Framed Glass","block.pyrite.cyan_framed_glass_pane":"Cyan Framed Glass Pane","block.pyrite.purple_stained_button":"Purple Stained Button","block.pyrite.purple_stained_stairs":"Purple Stained Stairs","block.pyrite.purple_stained_slab":"Purple Stained Slab","block.pyrite.purple_stained_pressure_plate":"Purple Stained Pressure Plate","block.pyrite.purple_stained_fence":"Purple Stained Fence","block.pyrite.purple_stained_fence_gate":"Purple Stained Fence Gate","block.pyrite.purple_stained_planks":"Purple Stained Planks","block.pyrite.purple_stained_crafting_table":"Purple Stained Crafting Table","block.pyrite.purple_stained_ladder":"Purple Stained Ladder","block.pyrite.purple_stained_door":"Purple Stained Door","block.pyrite.purple_stained_sign":"Purple Stained Sign","block.pyrite.purple_stained_hanging_sign":"Purple Stained Hanging Sign","block.pyrite.purple_stained_trapdoor":"Purple Stained Trapdoor","block.pyrite.purple_bricks":"Purple Bricks","block.pyrite.purple_brick_slab":"Purple Brick Slab","block.pyrite.purple_brick_stairs":"Purple Brick Stairs","block.pyrite.purple_brick_wall":"Purple Brick Wall","block.pyrite.purple_brick_wall_gate":"Purple Brick Wall Gate","block.pyrite.purple_terracotta_bricks":"Purple Terracotta Bricks","block.pyrite.purple_terracotta_brick_slab":"Purple Terracotta Brick Slab","block.pyrite.purple_terracotta_brick_stairs":"Purple Terracotta Brick Stairs","block.pyrite.purple_terracotta_brick_wall":"Purple Terracotta Brick Wall","block.pyrite.purple_terracotta_brick_wall_gate":"Purple Terracotta Brick Wall Gate","block.pyrite.purple_lamp":"Purple Lamp","block.pyrite.purple_torch":"Purple Torch","block.pyrite.purple_torch_lever":"Purple Torch Lever","block.pyrite.purple_framed_glass":"Purple Framed Glass","block.pyrite.purple_framed_glass_pane":"Purple Framed Glass Pane","block.pyrite.blue_stained_button":"Blue Stained Button","block.pyrite.blue_stained_stairs":"Blue Stained Stairs","block.pyrite.blue_stained_slab":"Blue Stained Slab","block.pyrite.blue_stained_pressure_plate":"Blue Stained Pressure Plate","block.pyrite.blue_stained_fence":"Blue Stained Fence","block.pyrite.blue_stained_fence_gate":"Blue Stained Fence Gate","block.pyrite.blue_stained_planks":"Blue Stained Planks","block.pyrite.blue_stained_crafting_table":"Blue Stained Crafting Table","block.pyrite.blue_stained_ladder":"Blue Stained Ladder","block.pyrite.blue_stained_door":"Blue Stained Door","block.pyrite.blue_stained_sign":"Blue Stained Sign","block.pyrite.blue_stained_hanging_sign":"Blue Stained Hanging Sign","block.pyrite.blue_stained_trapdoor":"Blue Stained Trapdoor","block.pyrite.blue_bricks":"Blue Bricks","block.pyrite.blue_brick_slab":"Blue Brick Slab","block.pyrite.blue_brick_stairs":"Blue Brick Stairs","block.pyrite.blue_brick_wall":"Blue Brick Wall","block.pyrite.blue_brick_wall_gate":"Blue Brick Wall Gate","block.pyrite.blue_terracotta_bricks":"Blue Terracotta Bricks","block.pyrite.blue_terracotta_brick_slab":"Blue Terracotta Brick Slab","block.pyrite.blue_terracotta_brick_stairs":"Blue Terracotta Brick Stairs","block.pyrite.blue_terracotta_brick_wall":"Blue Terracotta Brick Wall","block.pyrite.blue_terracotta_brick_wall_gate":"Blue Terracotta Brick Wall Gate","block.pyrite.blue_lamp":"Blue Lamp","block.pyrite.blue_torch":"Blue Torch","block.pyrite.blue_torch_lever":"Blue Torch Lever","block.pyrite.blue_framed_glass":"Blue Framed Glass","block.pyrite.blue_framed_glass_pane":"Blue Framed Glass Pane","block.pyrite.brown_stained_button":"Brown Stained Button","block.pyrite.brown_stained_stairs":"Brown Stained Stairs","block.pyrite.brown_stained_slab":"Brown Stained Slab","block.pyrite.brown_stained_pressure_plate":"Brown Stained Pressure Plate","block.pyrite.brown_stained_fence":"Brown Stained Fence","block.pyrite.brown_stained_fence_gate":"Brown Stained Fence Gate","block.pyrite.brown_stained_planks":"Brown Stained Planks","block.pyrite.brown_stained_crafting_table":"Brown Stained Crafting Table","block.pyrite.brown_stained_ladder":"Brown Stained Ladder","block.pyrite.brown_stained_door":"Brown Stained Door","block.pyrite.brown_stained_sign":"Brown Stained Sign","block.pyrite.brown_stained_hanging_sign":"Brown Stained Hanging Sign","block.pyrite.brown_stained_trapdoor":"Brown Stained Trapdoor","block.pyrite.brown_bricks":"Brown Bricks","block.pyrite.brown_brick_slab":"Brown Brick Slab","block.pyrite.brown_brick_stairs":"Brown Brick Stairs","block.pyrite.brown_brick_wall":"Brown Brick Wall","block.pyrite.brown_brick_wall_gate":"Brown Brick Wall Gate","block.pyrite.brown_terracotta_bricks":"Brown Terracotta Bricks","block.pyrite.brown_terracotta_brick_slab":"Brown Terracotta Brick Slab","block.pyrite.brown_terracotta_brick_stairs":"Brown Terracotta Brick Stairs","block.pyrite.brown_terracotta_brick_wall":"Brown Terracotta Brick Wall","block.pyrite.brown_terracotta_brick_wall_gate":"Brown Terracotta Brick Wall Gate","block.pyrite.brown_lamp":"Brown Lamp","block.pyrite.brown_torch":"Brown Torch","block.pyrite.brown_torch_lever":"Brown Torch Lever","block.pyrite.brown_framed_glass":"Brown Framed Glass","block.pyrite.brown_framed_glass_pane":"Brown Framed Glass Pane","block.pyrite.green_stained_button":"Green Stained Button","block.pyrite.green_stained_stairs":"Green Stained Stairs","block.pyrite.green_stained_slab":"Green Stained Slab","block.pyrite.green_stained_pressure_plate":"Green Stained Pressure Plate","block.pyrite.green_stained_fence":"Green Stained Fence","block.pyrite.green_stained_fence_gate":"Green Stained Fence Gate","block.pyrite.green_stained_planks":"Green Stained Planks","block.pyrite.green_stained_crafting_table":"Green Stained Crafting Table","block.pyrite.green_stained_ladder":"Green Stained Ladder","block.pyrite.green_stained_door":"Green Stained Door","block.pyrite.green_stained_sign":"Green Stained Sign","block.pyrite.green_stained_hanging_sign":"Green Stained Hanging Sign","block.pyrite.green_stained_trapdoor":"Green Stained Trapdoor","block.pyrite.green_bricks":"Green Bricks","block.pyrite.green_brick_slab":"Green Brick Slab","block.pyrite.green_brick_stairs":"Green Brick Stairs","block.pyrite.green_brick_wall":"Green Brick Wall","block.pyrite.green_brick_wall_gate":"Green Brick Wall Gate","block.pyrite.green_terracotta_bricks":"Green Terracotta Bricks","block.pyrite.green_terracotta_brick_slab":"Green Terracotta Brick Slab","block.pyrite.green_terracotta_brick_stairs":"Green Terracotta Brick Stairs","block.pyrite.green_terracotta_brick_wall":"Green Terracotta Brick Wall","block.pyrite.green_terracotta_brick_wall_gate":"Green Terracotta Brick Wall Gate","block.pyrite.green_lamp":"Green Lamp","block.pyrite.green_torch":"Green Torch","block.pyrite.green_torch_lever":"Green Torch Lever","block.pyrite.green_framed_glass":"Green Framed Glass","block.pyrite.green_framed_glass_pane":"Green Framed Glass Pane","block.pyrite.red_stained_button":"Red Stained Button","block.pyrite.red_stained_stairs":"Red Stained Stairs","block.pyrite.red_stained_slab":"Red Stained Slab","block.pyrite.red_stained_pressure_plate":"Red Stained Pressure Plate","block.pyrite.red_stained_fence":"Red Stained Fence","block.pyrite.red_stained_fence_gate":"Red Stained Fence Gate","block.pyrite.red_stained_planks":"Red Stained Planks","block.pyrite.red_stained_crafting_table":"Red Stained Crafting Table","block.pyrite.red_stained_ladder":"Red Stained Ladder","block.pyrite.red_stained_door":"Red Stained Door","block.pyrite.red_stained_sign":"Red Stained Sign","block.pyrite.red_stained_hanging_sign":"Red Stained Hanging Sign","block.pyrite.red_stained_trapdoor":"Red Stained Trapdoor","block.pyrite.red_bricks":"Red Bricks","block.pyrite.red_brick_slab":"Red Brick Slab","block.pyrite.red_brick_stairs":"Red Brick Stairs","block.pyrite.red_brick_wall":"Red Brick Wall","block.pyrite.red_brick_wall_gate":"Red Brick Wall Gate","block.pyrite.red_terracotta_bricks":"Red Terracotta Bricks","block.pyrite.red_terracotta_brick_slab":"Red Terracotta Brick Slab","block.pyrite.red_terracotta_brick_stairs":"Red Terracotta Brick Stairs","block.pyrite.red_terracotta_brick_wall":"Red Terracotta Brick Wall","block.pyrite.red_terracotta_brick_wall_gate":"Red Terracotta Brick Wall Gate","block.pyrite.red_lamp":"Red Lamp","block.pyrite.red_torch":"Red Torch","block.pyrite.red_torch_lever":"Red Torch Lever","block.pyrite.red_framed_glass":"Red Framed Glass","block.pyrite.red_framed_glass_pane":"Red Framed Glass Pane","block.pyrite.black_stained_button":"Black Stained Button","block.pyrite.black_stained_stairs":"Black Stained Stairs","block.pyrite.black_stained_slab":"Black Stained Slab","block.pyrite.black_stained_pressure_plate":"Black Stained Pressure Plate","block.pyrite.black_stained_fence":"Black Stained Fence","block.pyrite.black_stained_fence_gate":"Black Stained Fence Gate","block.pyrite.black_stained_planks":"Black Stained Planks","block.pyrite.black_stained_crafting_table":"Black Stained Crafting Table","block.pyrite.black_stained_ladder":"Black Stained Ladder","block.pyrite.black_stained_door":"Black Stained Door","block.pyrite.black_stained_sign":"Black Stained Sign","block.pyrite.black_stained_hanging_sign":"Black Stained Hanging Sign","block.pyrite.black_stained_trapdoor":"Black Stained Trapdoor","block.pyrite.black_bricks":"Black Bricks","block.pyrite.black_brick_slab":"Black Brick Slab","block.pyrite.black_brick_stairs":"Black Brick Stairs","block.pyrite.black_brick_wall":"Black Brick Wall","block.pyrite.black_brick_wall_gate":"Black Brick Wall Gate","block.pyrite.black_terracotta_bricks":"Black Terracotta Bricks","block.pyrite.black_terracotta_brick_slab":"Black Terracotta Brick Slab","block.pyrite.black_terracotta_brick_stairs":"Black Terracotta Brick Stairs","block.pyrite.black_terracotta_brick_wall":"Black Terracotta Brick Wall","block.pyrite.black_terracotta_brick_wall_gate":"Black Terracotta Brick Wall Gate","block.pyrite.black_lamp":"Black Lamp","block.pyrite.black_torch":"Black Torch","block.pyrite.black_torch_lever":"Black Torch Lever","block.pyrite.black_framed_glass":"Black Framed Glass","block.pyrite.black_framed_glass_pane":"Black Framed Glass Pane","block.pyrite.glow_stained_button":"Glow Stained Button","block.pyrite.glow_stained_stairs":"Glow Stained Stairs","block.pyrite.glow_stained_slab":"Glow Stained Slab","block.pyrite.glow_stained_pressure_plate":"Glow Stained Pressure Plate","block.pyrite.glow_stained_fence":"Glow Stained Fence","block.pyrite.glow_stained_fence_gate":"Glow Stained Fence Gate","block.pyrite.glow_stained_planks":"Glow Stained Planks","block.pyrite.glow_stained_crafting_table":"Glow Stained Crafting Table","block.pyrite.glow_stained_ladder":"Glow Stained Ladder","block.pyrite.glow_stained_door":"Glow Stained Door","block.pyrite.glow_stained_sign":"Glow Stained Sign","block.pyrite.glow_stained_hanging_sign":"Glow Stained Hanging Sign","block.pyrite.glow_stained_trapdoor":"Glow Stained Trapdoor","block.pyrite.glow_bricks":"Glow Bricks","block.pyrite.glow_brick_slab":"Glow Brick Slab","block.pyrite.glow_brick_stairs":"Glow Brick Stairs","block.pyrite.glow_brick_wall":"Glow Brick Wall","block.pyrite.glow_brick_wall_gate":"Glow Brick Wall Gate","block.pyrite.glow_terracotta_bricks":"Glow Terracotta Bricks","block.pyrite.glow_terracotta_brick_slab":"Glow Terracotta Brick Slab","block.pyrite.glow_terracotta_brick_stairs":"Glow Terracotta Brick Stairs","block.pyrite.glow_terracotta_brick_wall":"Glow Terracotta Brick Wall","block.pyrite.glow_terracotta_brick_wall_gate":"Glow Terracotta Brick Wall Gate","block.pyrite.glow_lamp":"Glow Lamp","block.pyrite.glow_torch":"Glow Torch","block.pyrite.glow_torch_lever":"Glow Torch Lever","block.pyrite.glow_framed_glass":"Glow Framed Glass","block.pyrite.glow_framed_glass_pane":"Glow Framed Glass Pane","block.pyrite.dragon_stained_button":"Dragon Stained Button","block.pyrite.dragon_stained_stairs":"Dragon Stained Stairs","block.pyrite.dragon_stained_slab":"Dragon Stained Slab","block.pyrite.dragon_stained_pressure_plate":"Dragon Stained Pressure Plate","block.pyrite.dragon_stained_fence":"Dragon Stained Fence","block.pyrite.dragon_stained_fence_gate":"Dragon Stained Fence Gate","block.pyrite.dragon_stained_planks":"Dragon Stained Planks","block.pyrite.dragon_stained_crafting_table":"Dragon Stained Crafting Table","block.pyrite.dragon_stained_ladder":"Dragon Stained Ladder","block.pyrite.dragon_stained_door":"Dragon Stained Door","block.pyrite.dragon_stained_sign":"Dragon Stained Sign","block.pyrite.dragon_stained_hanging_sign":"Dragon Stained Hanging Sign","block.pyrite.dragon_stained_trapdoor":"Dragon Stained Trapdoor","block.pyrite.dragon_bricks":"Dragon Bricks","block.pyrite.dragon_brick_slab":"Dragon Brick Slab","block.pyrite.dragon_brick_stairs":"Dragon Brick Stairs","block.pyrite.dragon_brick_wall":"Dragon Brick Wall","block.pyrite.dragon_brick_wall_gate":"Dragon Brick Wall Gate","block.pyrite.dragon_terracotta_bricks":"Dragon Terracotta Bricks","block.pyrite.dragon_terracotta_brick_slab":"Dragon Terracotta Brick Slab","block.pyrite.dragon_terracotta_brick_stairs":"Dragon Terracotta Brick Stairs","block.pyrite.dragon_terracotta_brick_wall":"Dragon Terracotta Brick Wall","block.pyrite.dragon_terracotta_brick_wall_gate":"Dragon Terracotta Brick Wall Gate","block.pyrite.dragon_lamp":"Dragon Lamp","block.pyrite.dragon_torch":"Dragon Torch","block.pyrite.dragon_torch_lever":"Dragon Torch Lever","block.pyrite.dragon_framed_glass":"Dragon Framed Glass","block.pyrite.dragon_framed_glass_pane":"Dragon Framed Glass Pane","block.pyrite.star_stained_button":"Star Stained Button","block.pyrite.star_stained_stairs":"Star Stained Stairs","block.pyrite.star_stained_slab":"Star Stained Slab","block.pyrite.star_stained_pressure_plate":"Star Stained Pressure Plate","block.pyrite.star_stained_fence":"Star Stained Fence","block.pyrite.star_stained_fence_gate":"Star Stained Fence Gate","block.pyrite.star_stained_planks":"Star Stained Planks","block.pyrite.star_stained_crafting_table":"Star Stained Crafting Table","block.pyrite.star_stained_ladder":"Star Stained Ladder","block.pyrite.star_stained_door":"Star Stained Door","block.pyrite.star_stained_sign":"Star Stained Sign","block.pyrite.star_stained_hanging_sign":"Star Stained Hanging Sign","block.pyrite.star_stained_trapdoor":"Star Stained Trapdoor","block.pyrite.star_bricks":"Star Bricks","block.pyrite.star_brick_slab":"Star Brick Slab","block.pyrite.star_brick_stairs":"Star Brick Stairs","block.pyrite.star_brick_wall":"Star Brick Wall","block.pyrite.star_brick_wall_gate":"Star Brick Wall Gate","block.pyrite.star_terracotta_bricks":"Star Terracotta Bricks","block.pyrite.star_terracotta_brick_slab":"Star Terracotta Brick Slab","block.pyrite.star_terracotta_brick_stairs":"Star Terracotta Brick Stairs","block.pyrite.star_terracotta_brick_wall":"Star Terracotta Brick Wall","block.pyrite.star_terracotta_brick_wall_gate":"Star Terracotta Brick Wall Gate","block.pyrite.star_lamp":"Star Lamp","block.pyrite.star_torch":"Star Torch","block.pyrite.star_torch_lever":"Star Torch Lever","block.pyrite.star_framed_glass":"Star Framed Glass","block.pyrite.star_framed_glass_pane":"Star Framed Glass Pane","block.pyrite.honey_stained_button":"Honey Stained Button","block.pyrite.honey_stained_stairs":"Honey Stained Stairs","block.pyrite.honey_stained_slab":"Honey Stained Slab","block.pyrite.honey_stained_pressure_plate":"Honey Stained Pressure Plate","block.pyrite.honey_stained_fence":"Honey Stained Fence","block.pyrite.honey_stained_fence_gate":"Honey Stained Fence Gate","block.pyrite.honey_stained_planks":"Honey Stained Planks","block.pyrite.honey_stained_crafting_table":"Honey Stained Crafting Table","block.pyrite.honey_stained_ladder":"Honey Stained Ladder","block.pyrite.honey_stained_door":"Honey Stained Door","block.pyrite.honey_stained_sign":"Honey Stained Sign","block.pyrite.honey_stained_hanging_sign":"Honey Stained Hanging Sign","block.pyrite.honey_stained_trapdoor":"Honey Stained Trapdoor","block.pyrite.honey_bricks":"Honey Bricks","block.pyrite.honey_brick_slab":"Honey Brick Slab","block.pyrite.honey_brick_stairs":"Honey Brick Stairs","block.pyrite.honey_brick_wall":"Honey Brick Wall","block.pyrite.honey_brick_wall_gate":"Honey Brick Wall Gate","block.pyrite.honey_terracotta_bricks":"Honey Terracotta Bricks","block.pyrite.honey_terracotta_brick_slab":"Honey Terracotta Brick Slab","block.pyrite.honey_terracotta_brick_stairs":"Honey Terracotta Brick Stairs","block.pyrite.honey_terracotta_brick_wall":"Honey Terracotta Brick Wall","block.pyrite.honey_terracotta_brick_wall_gate":"Honey Terracotta Brick Wall Gate","block.pyrite.honey_lamp":"Honey Lamp","block.pyrite.honey_torch":"Honey Torch","block.pyrite.honey_torch_lever":"Honey Torch Lever","block.pyrite.honey_framed_glass":"Honey Framed Glass","block.pyrite.honey_framed_glass_pane":"Honey Framed Glass Pane","block.pyrite.nostalgia_stained_button":"Nostalgia Stained Button","block.pyrite.nostalgia_stained_stairs":"Nostalgia Stained Stairs","block.pyrite.nostalgia_stained_slab":"Nostalgia Stained Slab","block.pyrite.nostalgia_stained_pressure_plate":"Nostalgia Stained Pressure Plate","block.pyrite.nostalgia_stained_fence":"Nostalgia Stained Fence","block.pyrite.nostalgia_stained_fence_gate":"Nostalgia Stained Fence Gate","block.pyrite.nostalgia_stained_planks":"Nostalgia Stained Planks","block.pyrite.nostalgia_stained_crafting_table":"Nostalgia Stained Crafting Table","block.pyrite.nostalgia_stained_ladder":"Nostalgia Stained Ladder","block.pyrite.nostalgia_stained_door":"Nostalgia Stained Door","block.pyrite.nostalgia_stained_sign":"Nostalgia Stained Sign","block.pyrite.nostalgia_stained_hanging_sign":"Nostalgia Stained Hanging Sign","block.pyrite.nostalgia_stained_trapdoor":"Nostalgia Stained Trapdoor","block.pyrite.nostalgia_bricks":"Nostalgia Bricks","block.pyrite.nostalgia_brick_slab":"Nostalgia Brick Slab","block.pyrite.nostalgia_brick_stairs":"Nostalgia Brick Stairs","block.pyrite.nostalgia_brick_wall":"Nostalgia Brick Wall","block.pyrite.nostalgia_brick_wall_gate":"Nostalgia Brick Wall Gate","block.pyrite.nostalgia_terracotta_bricks":"Nostalgia Terracotta Bricks","block.pyrite.nostalgia_terracotta_brick_slab":"Nostalgia Terracotta Brick Slab","block.pyrite.nostalgia_terracotta_brick_stairs":"Nostalgia Terracotta Brick Stairs","block.pyrite.nostalgia_terracotta_brick_wall":"Nostalgia Terracotta Brick Wall","block.pyrite.nostalgia_terracotta_brick_wall_gate":"Nostalgia Terracotta Brick Wall Gate","block.pyrite.nostalgia_lamp":"Nostalgia Lamp","block.pyrite.nostalgia_torch":"Nostalgia Torch","block.pyrite.nostalgia_torch_lever":"Nostalgia Torch Lever","block.pyrite.nostalgia_framed_glass":"Nostalgia Framed Glass","block.pyrite.nostalgia_framed_glass_pane":"Nostalgia Framed Glass Pane","block.pyrite.rose_stained_button":"Rose Stained Button","block.pyrite.rose_stained_stairs":"Rose Stained Stairs","block.pyrite.rose_stained_slab":"Rose Stained Slab","block.pyrite.rose_stained_pressure_plate":"Rose Stained Pressure Plate","block.pyrite.rose_stained_fence":"Rose Stained Fence","block.pyrite.rose_stained_fence_gate":"Rose Stained Fence Gate","block.pyrite.rose_stained_planks":"Rose Stained Planks","block.pyrite.rose_stained_crafting_table":"Rose Stained Crafting Table","block.pyrite.rose_stained_ladder":"Rose Stained Ladder","block.pyrite.rose_stained_door":"Rose Stained Door","block.pyrite.rose_stained_sign":"Rose Stained Sign","block.pyrite.rose_stained_hanging_sign":"Rose Stained Hanging Sign","block.pyrite.rose_stained_trapdoor":"Rose Stained Trapdoor","block.pyrite.rose_bricks":"Rose Bricks","block.pyrite.rose_brick_slab":"Rose Brick Slab","block.pyrite.rose_brick_stairs":"Rose Brick Stairs","block.pyrite.rose_brick_wall":"Rose Brick Wall","block.pyrite.rose_brick_wall_gate":"Rose Brick Wall Gate","block.pyrite.rose_terracotta_bricks":"Rose Terracotta Bricks","block.pyrite.rose_terracotta_brick_slab":"Rose Terracotta Brick Slab","block.pyrite.rose_terracotta_brick_stairs":"Rose Terracotta Brick Stairs","block.pyrite.rose_terracotta_brick_wall":"Rose Terracotta Brick Wall","block.pyrite.rose_terracotta_brick_wall_gate":"Rose Terracotta Brick Wall Gate","block.pyrite.rose_lamp":"Rose Lamp","block.pyrite.rose_torch":"Rose Torch","block.pyrite.rose_torch_lever":"Rose Torch Lever","block.pyrite.rose_framed_glass":"Rose Framed Glass","block.pyrite.rose_framed_glass_pane":"Rose Framed Glass Pane","block.pyrite.poisonous_stained_button":"Poisonous Stained Button","block.pyrite.poisonous_stained_stairs":"Poisonous Stained Stairs","block.pyrite.poisonous_stained_slab":"Poisonous Stained Slab","block.pyrite.poisonous_stained_pressure_plate":"Poisonous Stained Pressure Plate","block.pyrite.poisonous_stained_fence":"Poisonous Stained Fence","block.pyrite.poisonous_stained_fence_gate":"Poisonous Stained Fence Gate","block.pyrite.poisonous_stained_planks":"Poisonous Stained Planks","block.pyrite.poisonous_stained_crafting_table":"Poisonous Stained Crafting Table","block.pyrite.poisonous_stained_ladder":"Poisonous Stained Ladder","block.pyrite.poisonous_stained_door":"Poisonous Stained Door","block.pyrite.poisonous_stained_sign":"Poisonous Stained Sign","block.pyrite.poisonous_stained_hanging_sign":"Poisonous Stained Hanging Sign","block.pyrite.poisonous_stained_trapdoor":"Poisonous Stained Trapdoor","block.pyrite.poisonous_bricks":"Poisonous Bricks","block.pyrite.poisonous_brick_slab":"Poisonous Brick Slab","block.pyrite.poisonous_brick_stairs":"Poisonous Brick Stairs","block.pyrite.poisonous_brick_wall":"Poisonous Brick Wall","block.pyrite.poisonous_brick_wall_gate":"Poisonous Brick Wall Gate","block.pyrite.poisonous_terracotta_bricks":"Poisonous Terracotta Bricks","block.pyrite.poisonous_terracotta_brick_slab":"Poisonous Terracotta Brick Slab","block.pyrite.poisonous_terracotta_brick_stairs":"Poisonous Terracotta Brick Stairs","block.pyrite.poisonous_terracotta_brick_wall":"Poisonous Terracotta Brick Wall","block.pyrite.poisonous_terracotta_brick_wall_gate":"Poisonous Terracotta Brick Wall Gate","block.pyrite.poisonous_lamp":"Poisonous Lamp","block.pyrite.poisonous_torch":"Poisonous Torch","block.pyrite.poisonous_torch_lever":"Poisonous Torch Lever","block.pyrite.poisonous_framed_glass":"Poisonous Framed Glass","block.pyrite.poisonous_framed_glass_pane":"Poisonous Framed Glass Pane","block.pyrite.spruce_crafting_table":"Spruce Crafting Table","block.pyrite.birch_crafting_table":"Birch Crafting Table","block.pyrite.jungle_crafting_table":"Jungle Crafting Table","block.pyrite.acacia_crafting_table":"Acacia Crafting Table","block.pyrite.dark_oak_crafting_table":"Dark Oak Crafting Table","block.pyrite.mangrove_crafting_table":"Mangrove Crafting Table","block.pyrite.cherry_crafting_table":"Cherry Crafting Table","block.pyrite.bamboo_crafting_table":"Bamboo Crafting Table","block.pyrite.crimson_crafting_table":"Crimson Crafting Table","block.pyrite.warped_crafting_table":"Warped Crafting Table","block.pyrite.skyroot_crafting_table":"Skyroot Crafting Table","block.pyrite.holystone_wall_gate":"Holystone Wall Gate","block.pyrite.mossy_holystone_wall_gate":"Mossy Holystone Wall Gate","block.pyrite.holystone_brick_wall_gate":"Holystone Brick Wall Gate","block.pyrite.icestone_wall_gate":"Icestone Wall Gate","block.pyrite.aerogel_wall_gate":"Aerogel Wall Gate","block.pyrite.carved_wall_gate":"Carved Wall Gate","block.pyrite.angelic_wall_gate":"Angelic Wall Gate","block.pyrite.hellfire_wall_gate":"Hellfire Wall Gate","block.pyrite.red_mushroom_button":"Red Mushroom Button","block.pyrite.red_mushroom_stairs":"Red Mushroom Stairs","block.pyrite.red_mushroom_slab":"Red Mushroom Slab","block.pyrite.red_mushroom_pressure_plate":"Red Mushroom Pressure Plate","block.pyrite.red_mushroom_fence":"Red Mushroom Fence","block.pyrite.red_mushroom_fence_gate":"Red Mushroom Fence Gate","block.pyrite.red_mushroom_planks":"Red Mushroom Planks","block.pyrite.red_mushroom_crafting_table":"Red Mushroom Crafting Table","block.pyrite.red_mushroom_ladder":"Red Mushroom Ladder","block.pyrite.red_mushroom_door":"Red Mushroom Door","block.pyrite.red_mushroom_sign":"Red Mushroom Sign","block.pyrite.red_mushroom_hanging_sign":"Red Mushroom Hanging Sign","block.pyrite.red_mushroom_trapdoor":"Red Mushroom Trapdoor","block.pyrite.red_mushroom_stem":"Red Mushroom Stem","block.pyrite.brown_mushroom_button":"Brown Mushroom Button","block.pyrite.brown_mushroom_stairs":"Brown Mushroom Stairs","block.pyrite.brown_mushroom_slab":"Brown Mushroom Slab","block.pyrite.brown_mushroom_pressure_plate":"Brown Mushroom Pressure Plate","block.pyrite.brown_mushroom_fence":"Brown Mushroom Fence","block.pyrite.brown_mushroom_fence_gate":"Brown Mushroom Fence Gate","block.pyrite.brown_mushroom_planks":"Brown Mushroom Planks","block.pyrite.brown_mushroom_crafting_table":"Brown Mushroom Crafting Table","block.pyrite.brown_mushroom_ladder":"Brown Mushroom Ladder","block.pyrite.brown_mushroom_door":"Brown Mushroom Door","block.pyrite.brown_mushroom_sign":"Brown Mushroom Sign","block.pyrite.brown_mushroom_hanging_sign":"Brown Mushroom Hanging Sign","block.pyrite.brown_mushroom_trapdoor":"Brown Mushroom Trapdoor","block.pyrite.brown_mushroom_stem":"Brown Mushroom Stem","block.pyrite.cobblestone_bricks":"Cobblestone Bricks","block.pyrite.cobblestone_brick_slab":"Cobblestone Brick Slab","block.pyrite.cobblestone_brick_stairs":"Cobblestone Brick Stairs","block.pyrite.cobblestone_brick_wall":"Cobblestone Brick Wall","block.pyrite.cobblestone_brick_wall_gate":"Cobblestone Brick Wall Gate","block.pyrite.mossy_cobblestone_bricks":"Mossy Cobblestone Bricks","block.pyrite.mossy_cobblestone_brick_slab":"Mossy Cobblestone Brick Slab","block.pyrite.mossy_cobblestone_brick_stairs":"Mossy Cobblestone Brick Stairs","block.pyrite.mossy_cobblestone_brick_wall":"Mossy Cobblestone Brick Wall","block.pyrite.mossy_cobblestone_brick_wall_gate":"Mossy Cobblestone Brick Wall Gate","block.pyrite.smooth_stone_bricks":"Smooth Stone Bricks","block.pyrite.smooth_stone_brick_slab":"Smooth Stone Brick Slab","block.pyrite.smooth_stone_brick_stairs":"Smooth Stone Brick Stairs","block.pyrite.smooth_stone_brick_wall":"Smooth Stone Brick Wall","block.pyrite.smooth_stone_brick_wall_gate":"Smooth Stone Brick Wall Gate","block.pyrite.nostalgia_cobblestone":"Nostalgia Cobblestone","block.pyrite.nostalgia_mossy_cobblestone":"Nostalgia Mossy Cobblestone","block.pyrite.nostalgia_netherrack":"Nostalgia Netherrack","block.pyrite.nostalgia_gravel":"Nostalgia Gravel","block.pyrite.nostalgia_grass_block":"Nostalgia Grass Block","block.pyrite.framed_glass":"Framed Glass","block.pyrite.framed_glass_pane":"Framed Glass Pane","block.pyrite.nostalgia_grass_turf":"Nostalgia Grass Turf","block.pyrite.nostalgia_grass_slab":"Nostalgia Grass Slab","block.pyrite.nostalgia_grass_stairs":"Nostalgia Grass Stairs","block.pyrite.nostalgia_grass_carpet":"Nostalgia Grass Carpet","block.pyrite.podzol_turf":"Podzol Turf","block.pyrite.podzol_slab":"Podzol Slab","block.pyrite.podzol_stairs":"Podzol Stairs","block.pyrite.podzol_carpet":"Podzol Carpet","block.pyrite.grass_turf":"Grass Turf","block.pyrite.grass_slab":"Grass Slab","block.pyrite.grass_stairs":"Grass Stairs","block.pyrite.grass_carpet":"Grass Carpet","block.pyrite.mycelium_turf":"Mycelium Turf","block.pyrite.mycelium_slab":"Mycelium Slab","block.pyrite.mycelium_stairs":"Mycelium Stairs","block.pyrite.mycelium_carpet":"Mycelium Carpet","block.pyrite.path_turf":"Path Turf","block.pyrite.path_slab":"Path Slab","block.pyrite.path_stairs":"Path Stairs","block.pyrite.path_carpet":"Path Carpet","block.pyrite.white_concrete_slab":"White Concrete Slab","block.pyrite.white_concrete_stairs":"White Concrete Stairs","block.pyrite.orange_concrete_slab":"Orange Concrete Slab","block.pyrite.orange_concrete_stairs":"Orange Concrete Stairs","block.pyrite.magenta_concrete_slab":"Magenta Concrete Slab","block.pyrite.magenta_concrete_stairs":"Magenta Concrete Stairs","block.pyrite.light_blue_concrete_slab":"Light Blue Concrete Slab","block.pyrite.light_blue_concrete_stairs":"Light Blue Concrete Stairs","block.pyrite.yellow_concrete_slab":"Yellow Concrete Slab","block.pyrite.yellow_concrete_stairs":"Yellow Concrete Stairs","block.pyrite.lime_concrete_slab":"Lime Concrete Slab","block.pyrite.lime_concrete_stairs":"Lime Concrete Stairs","block.pyrite.pink_concrete_slab":"Pink Concrete Slab","block.pyrite.pink_concrete_stairs":"Pink Concrete Stairs","block.pyrite.gray_concrete_slab":"Gray Concrete Slab","block.pyrite.gray_concrete_stairs":"Gray Concrete Stairs","block.pyrite.light_gray_concrete_slab":"Light Gray Concrete Slab","block.pyrite.light_gray_concrete_stairs":"Light Gray Concrete Stairs","block.pyrite.cyan_concrete_slab":"Cyan Concrete Slab","block.pyrite.cyan_concrete_stairs":"Cyan Concrete Stairs","block.pyrite.purple_concrete_slab":"Purple Concrete Slab","block.pyrite.purple_concrete_stairs":"Purple Concrete Stairs","block.pyrite.blue_concrete_slab":"Blue Concrete Slab","block.pyrite.blue_concrete_stairs":"Blue Concrete Stairs","block.pyrite.brown_concrete_slab":"Brown Concrete Slab","block.pyrite.brown_concrete_stairs":"Brown Concrete Stairs","block.pyrite.green_concrete_slab":"Green Concrete Slab","block.pyrite.green_concrete_stairs":"Green Concrete Stairs","block.pyrite.red_concrete_slab":"Red Concrete Slab","block.pyrite.red_concrete_stairs":"Red Concrete Stairs","block.pyrite.black_concrete_slab":"Black Concrete Slab","block.pyrite.black_concrete_stairs":"Black Concrete Stairs","item.pyrite.glow_dye":"Glow Dye","block.pyrite.glow_wool":"Glow Wool","block.pyrite.glow_carpet":"Glow Carpet","block.pyrite.glow_terracotta":"Glow Terracotta","block.pyrite.glow_concrete":"Glow Concrete","block.pyrite.glow_concrete_powder":"Glow Concrete Powder","block.pyrite.glow_concrete_slab":"Glow Concrete Slab","block.pyrite.glow_concrete_stairs":"Glow Concrete Stairs","item.pyrite.dragon_dye":"Dragon Dye","block.pyrite.dragon_wool":"Dragon Wool","block.pyrite.dragon_carpet":"Dragon Carpet","block.pyrite.dragon_terracotta":"Dragon Terracotta","block.pyrite.dragon_concrete":"Dragon Concrete","block.pyrite.dragon_concrete_powder":"Dragon Concrete Powder","block.pyrite.dragon_concrete_slab":"Dragon Concrete Slab","block.pyrite.dragon_concrete_stairs":"Dragon Concrete Stairs","item.pyrite.star_dye":"Star Dye","block.pyrite.star_wool":"Star Wool","block.pyrite.star_carpet":"Star Carpet","block.pyrite.star_terracotta":"Star Terracotta","block.pyrite.star_concrete":"Star Concrete","block.pyrite.star_concrete_powder":"Star Concrete Powder","block.pyrite.star_concrete_slab":"Star Concrete Slab","block.pyrite.star_concrete_stairs":"Star Concrete Stairs","item.pyrite.honey_dye":"Honey Dye","block.pyrite.honey_wool":"Honey Wool","block.pyrite.honey_carpet":"Honey Carpet","block.pyrite.honey_terracotta":"Honey Terracotta","block.pyrite.honey_concrete":"Honey Concrete","block.pyrite.honey_concrete_powder":"Honey Concrete Powder","block.pyrite.honey_concrete_slab":"Honey Concrete Slab","block.pyrite.honey_concrete_stairs":"Honey Concrete Stairs","item.pyrite.nostalgia_dye":"Nostalgia Dye","block.pyrite.nostalgia_wool":"Nostalgia Wool","block.pyrite.nostalgia_carpet":"Nostalgia Carpet","block.pyrite.nostalgia_terracotta":"Nostalgia Terracotta","block.pyrite.nostalgia_concrete":"Nostalgia Concrete","block.pyrite.nostalgia_concrete_powder":"Nostalgia Concrete Powder","block.pyrite.nostalgia_concrete_slab":"Nostalgia Concrete Slab","block.pyrite.nostalgia_concrete_stairs":"Nostalgia Concrete Stairs","item.pyrite.rose_dye":"Rose Dye","block.pyrite.rose_wool":"Rose Wool","block.pyrite.rose_carpet":"Rose Carpet","block.pyrite.rose_terracotta":"Rose Terracotta","block.pyrite.rose_concrete":"Rose Concrete","block.pyrite.rose_concrete_powder":"Rose Concrete Powder","block.pyrite.rose_concrete_slab":"Rose Concrete Slab","block.pyrite.rose_concrete_stairs":"Rose Concrete Stairs","item.pyrite.poisonous_dye":"Poisonous Dye","block.pyrite.poisonous_wool":"Poisonous Wool","block.pyrite.poisonous_carpet":"Poisonous Carpet","block.pyrite.poisonous_terracotta":"Poisonous Terracotta","block.pyrite.poisonous_concrete":"Poisonous Concrete","block.pyrite.poisonous_concrete_powder":"Poisonous Concrete Powder","block.pyrite.poisonous_concrete_slab":"Poisonous Concrete Slab","block.pyrite.poisonous_concrete_stairs":"Poisonous Concrete Stairs","block.pyrite.glowstone_lamp":"Glowstone Lamp","block.pyrite.lit_redstone_lamp":"Lit Redstone Lamp","block.pyrite.glowing_obsidian":"Glowing Obsidian","block.pyrite.nostalgia_glowing_obsidian":"Nostalgia Glowing Obsidian","block.pyrite.locked_chest":"Locked Chest","block.pyrite.charred_nether_bricks":"Charred Nether Bricks","block.pyrite.charred_nether_brick_slab":"Charred Nether Brick Slab","block.pyrite.charred_nether_brick_stairs":"Charred Nether Brick Stairs","block.pyrite.charred_nether_brick_wall":"Charred Nether Brick Wall","block.pyrite.charred_nether_brick_wall_gate":"Charred Nether Brick Wall Gate","block.pyrite.blue_nether_bricks":"Blue Nether Bricks","block.pyrite.blue_nether_brick_slab":"Blue Nether Brick Slab","block.pyrite.blue_nether_brick_stairs":"Blue Nether Brick Stairs","block.pyrite.blue_nether_brick_wall":"Blue Nether Brick Wall","block.pyrite.blue_nether_brick_wall_gate":"Blue Nether Brick Wall Gate","block.pyrite.cobblestone_wall_gate":"Cobblestone Wall Gate","block.pyrite.mossy_cobblestone_wall_gate":"Mossy Cobblestone Wall Gate","block.pyrite.stone_brick_wall_gate":"Stone Brick Wall Gate","block.pyrite.mossy_stone_brick_wall_gate":"Mossy Stone Brick Wall Gate","block.pyrite.granite_wall_gate":"Granite Wall Gate","block.pyrite.diorite_wall_gate":"Diorite Wall Gate","block.pyrite.andesite_wall_gate":"Andesite Wall Gate","block.pyrite.cobbled_deepslate_wall_gate":"Cobbled Deepslate Wall Gate","block.pyrite.polished_deepslate_wall_gate":"Polished Deepslate Wall Gate","block.pyrite.deepslate_brick_wall_gate":"Deepslate Brick Wall Gate","block.pyrite.deepslate_tile_wall_gate":"Deepslate Tile Wall Gate","block.pyrite.brick_wall_gate":"Brick Wall Gate","block.pyrite.mud_brick_wall_gate":"Mud Brick Wall Gate","block.pyrite.sandstone_wall_gate":"Sandstone Wall Gate","block.pyrite.red_sandstone_wall_gate":"Red Sandstone Wall Gate","block.pyrite.prismarine_wall_gate":"Prismarine Wall Gate","block.pyrite.nether_brick_wall_gate":"Nether Brick Wall Gate","block.pyrite.red_nether_brick_wall_gate":"Red Nether Brick Wall Gate","block.pyrite.blackstone_wall_gate":"Blackstone Wall Gate","block.pyrite.polished_blackstone_wall_gate":"Polished Blackstone Wall Gate","block.pyrite.polished_blackstone_brick_wall_gate":"Polished Blackstone Brick Wall Gate","block.pyrite.end_stone_brick_wall_gate":"End Stone Brick Wall Gate","block.pyrite.cut_iron":"Cut Iron","block.pyrite.cut_iron_slab":"Cut Iron Slab","block.pyrite.cut_iron_stairs":"Cut Iron Stairs","block.pyrite.cut_iron_wall":"Cut Iron Wall","block.pyrite.cut_iron_wall_gate":"Cut Iron Wall Gate","block.pyrite.smooth_iron":"Smooth Iron","block.pyrite.smooth_iron_slab":"Smooth Iron Slab","block.pyrite.smooth_iron_stairs":"Smooth Iron Stairs","block.pyrite.smooth_iron_wall":"Smooth Iron Wall","block.pyrite.smooth_iron_wall_gate":"Smooth Iron Wall Gate","block.pyrite.iron_bricks":"Iron Bricks","block.pyrite.iron_pillar":"Iron Pillar","block.pyrite.chiseled_iron_block":"Chiseled Iron Block","block.pyrite.nostalgia_iron_block":"Nostalgia Iron Block","block.pyrite.iron_button":"Iron Button","block.pyrite.cut_gold":"Cut Gold","block.pyrite.cut_gold_slab":"Cut Gold Slab","block.pyrite.cut_gold_stairs":"Cut Gold Stairs","block.pyrite.cut_gold_wall":"Cut Gold Wall","block.pyrite.cut_gold_wall_gate":"Cut Gold Wall Gate","block.pyrite.smooth_gold":"Smooth Gold","block.pyrite.smooth_gold_slab":"Smooth Gold Slab","block.pyrite.smooth_gold_stairs":"Smooth Gold Stairs","block.pyrite.smooth_gold_wall":"Smooth Gold Wall","block.pyrite.smooth_gold_wall_gate":"Smooth Gold Wall Gate","block.pyrite.gold_bricks":"Gold Bricks","block.pyrite.gold_pillar":"Gold Pillar","block.pyrite.gold_bars":"Gold Bars","block.pyrite.chiseled_gold_block":"Chiseled Gold Block","block.pyrite.gold_door":"Gold Door","block.pyrite.gold_trapdoor":"Gold Trapdoor","block.pyrite.nostalgia_gold_block":"Nostalgia Gold Block","block.pyrite.gold_button":"Gold Button","block.pyrite.cut_emerald":"Cut Emerald","block.pyrite.cut_emerald_slab":"Cut Emerald Slab","block.pyrite.cut_emerald_stairs":"Cut Emerald Stairs","block.pyrite.cut_emerald_wall":"Cut Emerald Wall","block.pyrite.cut_emerald_wall_gate":"Cut Emerald Wall Gate","block.pyrite.smooth_emerald":"Smooth Emerald","block.pyrite.smooth_emerald_slab":"Smooth Emerald Slab","block.pyrite.smooth_emerald_stairs":"Smooth Emerald Stairs","block.pyrite.smooth_emerald_wall":"Smooth Emerald Wall","block.pyrite.smooth_emerald_wall_gate":"Smooth Emerald Wall Gate","block.pyrite.emerald_bricks":"Emerald Bricks","block.pyrite.emerald_pillar":"Emerald Pillar","block.pyrite.emerald_bars":"Emerald Bars","block.pyrite.chiseled_emerald_block":"Chiseled Emerald Block","block.pyrite.emerald_door":"Emerald Door","block.pyrite.emerald_trapdoor":"Emerald Trapdoor","block.pyrite.nostalgia_emerald_block":"Nostalgia Emerald Block","block.pyrite.emerald_button":"Emerald Button","block.pyrite.emerald_pressure_plate":"Emerald Pressure Plate","block.pyrite.cut_diamond":"Cut Diamond","block.pyrite.cut_diamond_slab":"Cut Diamond Slab","block.pyrite.cut_diamond_stairs":"Cut Diamond Stairs","block.pyrite.cut_diamond_wall":"Cut Diamond Wall","block.pyrite.cut_diamond_wall_gate":"Cut Diamond Wall Gate","block.pyrite.smooth_diamond":"Smooth Diamond","block.pyrite.smooth_diamond_slab":"Smooth Diamond Slab","block.pyrite.smooth_diamond_stairs":"Smooth Diamond Stairs","block.pyrite.smooth_diamond_wall":"Smooth Diamond Wall","block.pyrite.smooth_diamond_wall_gate":"Smooth Diamond Wall Gate","block.pyrite.diamond_bricks":"Diamond Bricks","block.pyrite.diamond_pillar":"Diamond Pillar","block.pyrite.diamond_bars":"Diamond Bars","block.pyrite.chiseled_diamond_block":"Chiseled Diamond Block","block.pyrite.diamond_door":"Diamond Door","block.pyrite.diamond_trapdoor":"Diamond Trapdoor","block.pyrite.nostalgia_diamond_block":"Nostalgia Diamond Block","block.pyrite.diamond_button":"Diamond Button","block.pyrite.diamond_pressure_plate":"Diamond Pressure Plate","block.pyrite.cut_netherite":"Cut Netherite","block.pyrite.cut_netherite_slab":"Cut Netherite Slab","block.pyrite.cut_netherite_stairs":"Cut Netherite Stairs","block.pyrite.cut_netherite_wall":"Cut Netherite Wall","block.pyrite.cut_netherite_wall_gate":"Cut Netherite Wall Gate","block.pyrite.smooth_netherite":"Smooth Netherite","block.pyrite.smooth_netherite_slab":"Smooth Netherite Slab","block.pyrite.smooth_netherite_stairs":"Smooth Netherite Stairs","block.pyrite.smooth_netherite_wall":"Smooth Netherite Wall","block.pyrite.smooth_netherite_wall_gate":"Smooth Netherite Wall Gate","block.pyrite.netherite_bricks":"Netherite Bricks","block.pyrite.netherite_pillar":"Netherite Pillar","block.pyrite.netherite_bars":"Netherite Bars","block.pyrite.chiseled_netherite_block":"Chiseled Netherite Block","block.pyrite.netherite_door":"Netherite Door","block.pyrite.netherite_trapdoor":"Netherite Trapdoor","block.pyrite.nostalgia_netherite_block":"Nostalgia Netherite Block","block.pyrite.netherite_button":"Netherite Button","block.pyrite.netherite_pressure_plate":"Netherite Pressure Plate","block.pyrite.cut_quartz":"Cut Quartz","block.pyrite.cut_quartz_slab":"Cut Quartz Slab","block.pyrite.cut_quartz_stairs":"Cut Quartz Stairs","block.pyrite.cut_quartz_wall":"Cut Quartz Wall","block.pyrite.cut_quartz_wall_gate":"Cut Quartz Wall Gate","block.pyrite.smooth_quartz_wall":"Smooth Quartz Wall","block.pyrite.smooth_quartz_wall_gate":"Smooth Quartz Wall Gate","block.pyrite.quartz_bars":"Quartz Bars","block.pyrite.quartz_door":"Quartz Door","block.pyrite.quartz_trapdoor":"Quartz Trapdoor","block.pyrite.nostalgia_quartz_block":"Nostalgia Quartz Block","block.pyrite.quartz_button":"Quartz Button","block.pyrite.quartz_pressure_plate":"Quartz Pressure Plate","block.pyrite.cut_amethyst":"Cut Amethyst","block.pyrite.cut_amethyst_slab":"Cut Amethyst Slab","block.pyrite.cut_amethyst_stairs":"Cut Amethyst Stairs","block.pyrite.cut_amethyst_wall":"Cut Amethyst Wall","block.pyrite.cut_amethyst_wall_gate":"Cut Amethyst Wall Gate","block.pyrite.smooth_amethyst":"Smooth Amethyst","block.pyrite.smooth_amethyst_slab":"Smooth Amethyst Slab","block.pyrite.smooth_amethyst_stairs":"Smooth Amethyst Stairs","block.pyrite.smooth_amethyst_wall":"Smooth Amethyst Wall","block.pyrite.smooth_amethyst_wall_gate":"Smooth Amethyst Wall Gate","block.pyrite.amethyst_bricks":"Amethyst Bricks","block.pyrite.amethyst_pillar":"Amethyst Pillar","block.pyrite.amethyst_bars":"Amethyst Bars","block.pyrite.chiseled_amethyst_block":"Chiseled Amethyst Block","block.pyrite.amethyst_door":"Amethyst Door","block.pyrite.amethyst_trapdoor":"Amethyst Trapdoor","block.pyrite.nostalgia_amethyst_block":"Nostalgia Amethyst Block","block.pyrite.amethyst_button":"Amethyst Button","block.pyrite.amethyst_pressure_plate":"Amethyst Pressure Plate","block.pyrite.cut_lapis":"Cut Lapis","block.pyrite.cut_lapis_slab":"Cut Lapis Slab","block.pyrite.cut_lapis_stairs":"Cut Lapis Stairs","block.pyrite.cut_lapis_wall":"Cut Lapis Wall","block.pyrite.cut_lapis_wall_gate":"Cut Lapis Wall Gate","block.pyrite.smooth_lapis":"Smooth Lapis","block.pyrite.smooth_lapis_slab":"Smooth Lapis Slab","block.pyrite.smooth_lapis_stairs":"Smooth Lapis Stairs","block.pyrite.smooth_lapis_wall":"Smooth Lapis Wall","block.pyrite.smooth_lapis_wall_gate":"Smooth Lapis Wall Gate","block.pyrite.lapis_bricks":"Lapis Bricks","block.pyrite.lapis_pillar":"Lapis Pillar","block.pyrite.lapis_bars":"Lapis Bars","block.pyrite.chiseled_lapis_block":"Chiseled Lapis Block","block.pyrite.lapis_door":"Lapis Door","block.pyrite.lapis_trapdoor":"Lapis Trapdoor","block.pyrite.nostalgia_lapis_block":"Nostalgia Lapis Block","block.pyrite.lapis_button":"Lapis Button","block.pyrite.lapis_pressure_plate":"Lapis Pressure Plate","block.pyrite.cut_redstone":"Cut Redstone","block.pyrite.cut_redstone_slab":"Cut Redstone Slab","block.pyrite.cut_redstone_stairs":"Cut Redstone Stairs","block.pyrite.cut_redstone_wall":"Cut Redstone Wall","block.pyrite.cut_redstone_wall_gate":"Cut Redstone Wall Gate","block.pyrite.smooth_redstone":"Smooth Redstone","block.pyrite.smooth_redstone_slab":"Smooth Redstone Slab","block.pyrite.smooth_redstone_stairs":"Smooth Redstone Stairs","block.pyrite.smooth_redstone_wall":"Smooth Redstone Wall","block.pyrite.smooth_redstone_wall_gate":"Smooth Redstone Wall Gate","block.pyrite.redstone_bricks":"Redstone Bricks","block.pyrite.redstone_pillar":"Redstone Pillar","block.pyrite.redstone_bars":"Redstone Bars","block.pyrite.chiseled_redstone_block":"Chiseled Redstone Block","block.pyrite.redstone_door":"Redstone Door","block.pyrite.redstone_trapdoor":"Redstone Trapdoor","block.pyrite.nostalgia_redstone_block":"Nostalgia Redstone Block","block.pyrite.redstone_button":"Redstone Button","block.pyrite.redstone_pressure_plate":"Redstone Pressure Plate","block.pyrite.cut_copper_wall":"Cut Copper Wall","block.pyrite.cut_copper_wall_gate":"Cut Copper Wall Gate","block.pyrite.smooth_copper":"Smooth Copper","block.pyrite.smooth_copper_slab":"Smooth Copper Slab","block.pyrite.smooth_copper_stairs":"Smooth Copper Stairs","block.pyrite.smooth_copper_wall":"Smooth Copper Wall","block.pyrite.smooth_copper_wall_gate":"Smooth Copper Wall Gate","block.pyrite.copper_bricks":"Copper Bricks","block.pyrite.copper_pillar":"Copper Pillar","block.pyrite.copper_bars":"Copper Bars","block.pyrite.chiseled_copper_block":"Chiseled Copper Block","block.pyrite.copper_door":"Copper Door","block.pyrite.copper_trapdoor":"Copper Trapdoor","block.pyrite.nostalgia_copper_block":"Nostalgia Copper Block","block.pyrite.copper_button":"Copper Button","block.pyrite.copper_pressure_plate":"Copper Pressure Plate","block.pyrite.cut_exposed_copper_wall":"Cut Exposed Copper Wall","block.pyrite.cut_exposed_copper_wall_gate":"Cut Exposed Copper Wall Gate","block.pyrite.smooth_exposed_copper":"Smooth Exposed Copper","block.pyrite.smooth_exposed_copper_slab":"Smooth Exposed Copper Slab","block.pyrite.smooth_exposed_copper_stairs":"Smooth Exposed Copper Stairs","block.pyrite.smooth_exposed_copper_wall":"Smooth Exposed Copper Wall","block.pyrite.smooth_exposed_copper_wall_gate":"Smooth Exposed Copper Wall Gate","block.pyrite.exposed_copper_bricks":"Exposed Copper Bricks","block.pyrite.exposed_copper_pillar":"Exposed Copper Pillar","block.pyrite.exposed_copper_bars":"Exposed Copper Bars","block.pyrite.chiseled_exposed_copper_block":"Chiseled Exposed Copper Block","block.pyrite.exposed_copper_door":"Exposed Copper Door","block.pyrite.exposed_copper_trapdoor":"Exposed Copper Trapdoor","block.pyrite.nostalgia_exposed_copper_block":"Nostalgia Exposed Copper Block","block.pyrite.exposed_copper_button":"Exposed Copper Button","block.pyrite.exposed_copper_pressure_plate":"Exposed Copper Pressure Plate","block.pyrite.cut_weathered_copper_wall":"Cut Weathered Copper Wall","block.pyrite.cut_weathered_copper_wall_gate":"Cut Weathered Copper Wall Gate","block.pyrite.smooth_weathered_copper":"Smooth Weathered Copper","block.pyrite.smooth_weathered_copper_slab":"Smooth Weathered Copper Slab","block.pyrite.smooth_weathered_copper_stairs":"Smooth Weathered Copper Stairs","block.pyrite.smooth_weathered_copper_wall":"Smooth Weathered Copper Wall","block.pyrite.smooth_weathered_copper_wall_gate":"Smooth Weathered Copper Wall Gate","block.pyrite.weathered_copper_bricks":"Weathered Copper Bricks","block.pyrite.weathered_copper_pillar":"Weathered Copper Pillar","block.pyrite.weathered_copper_bars":"Weathered Copper Bars","block.pyrite.chiseled_weathered_copper_block":"Chiseled Weathered Copper Block","block.pyrite.weathered_copper_door":"Weathered Copper Door","block.pyrite.weathered_copper_trapdoor":"Weathered Copper Trapdoor","block.pyrite.nostalgia_weathered_copper_block":"Nostalgia Weathered Copper Block","block.pyrite.weathered_copper_button":"Weathered Copper Button","block.pyrite.weathered_copper_pressure_plate":"Weathered Copper Pressure Plate","block.pyrite.cut_oxidized_copper_wall":"Cut Oxidized Copper Wall","block.pyrite.cut_oxidized_copper_wall_gate":"Cut Oxidized Copper Wall Gate","block.pyrite.smooth_oxidized_copper":"Smooth Oxidized Copper","block.pyrite.smooth_oxidized_copper_slab":"Smooth Oxidized Copper Slab","block.pyrite.smooth_oxidized_copper_stairs":"Smooth Oxidized Copper Stairs","block.pyrite.smooth_oxidized_copper_wall":"Smooth Oxidized Copper Wall","block.pyrite.smooth_oxidized_copper_wall_gate":"Smooth Oxidized Copper Wall Gate","block.pyrite.oxidized_copper_bricks":"Oxidized Copper Bricks","block.pyrite.oxidized_copper_pillar":"Oxidized Copper Pillar","block.pyrite.oxidized_copper_bars":"Oxidized Copper Bars","block.pyrite.chiseled_oxidized_copper_block":"Chiseled Oxidized Copper Block","block.pyrite.oxidized_copper_door":"Oxidized Copper Door","block.pyrite.oxidized_copper_trapdoor":"Oxidized Copper Trapdoor","block.pyrite.nostalgia_oxidized_copper_block":"Nostalgia Oxidized Copper Block","block.pyrite.oxidized_copper_button":"Oxidized Copper Button","block.pyrite.oxidized_copper_pressure_plate":"Oxidized Copper Pressure Plate","block.pyrite.rose":"Rose","block.pyrite.blue_rose":"Blue Rose","block.pyrite.orange_rose":"Orange Rose","block.pyrite.white_rose":"White Rose","block.pyrite.pink_rose":"Pink Rose","block.pyrite.paeonia":"Paeonia","block.pyrite.pink_daisy":"Pink Daisy","block.pyrite.buttercup":"Buttercup","block.pyrite.nether_brick_fence_gate":"Nether Brick Fence Gate","block.pyrite.switchable_glass":"Switchable Glass","tag.item.pyrite.wall_gates":"Wall Gates","tag.item.pyrite.lamps":"Lamps","tag.item.pyrite.bricks":"Bricks","tag.item.pyrite.dyed_bricks":"Dyed Bricks","tag.item.pyrite.stained_framed_glass":"Stained Framed Glass","tag.item.pyrite.fences":"Fences","tag.item.pyrite.wool":"Wool","tag.item.pyrite.metal_bars":"Metal Bars","tag.item.pyrite.planks":"Planks","tag.item.pyrite.brick_stairs":"Brick Stairs","tag.item.pyrite.metal_trapdoors":"Metal Trapdoors","tag.item.pyrite.brick_walls":"Brick Walls","tag.item.pyrite.metal_buttons":"Metal Buttons","tag.item.pyrite.concrete_slabs":"Concrete Slabs","tag.item.pyrite.concrete_stairs":"Concrete Stairs","tag.item.c.dyed.honey":"Dyed Honey","tag.item.c.dyed.glow":"Dyed Glow","tag.item.c.dyed.nostalgia":"Dyed Nostalgia","tag.item.c.dyed.poisonous":"Dyed Poisonous","tag.item.c.dyed.rose":"Dyed Rose","tag.item.c.dyed.star":"Dyed Star","tag.item.c.dyed.dragon":"Dyed Dragon"} \ No newline at end of file +{ + "itemGroup.pyrite.pyrite_group": "Pyrite Building Blocks", + "itemGroup.pyrite.wood_group": "Pyrite Wooden Blocks", + "itemGroup.pyrite.resource_group": "Pyrite Resource Blocks", + "itemGroup.pyrite.brick_group": "Pyrite Brick Blocks", + "itemGroup.pyrite.redstone_group": "Pyrite Redstone Blocks", + "lore.pyrite.amethyst_bricks": "A variant of Amethyst that has been carved into Bricks.", + "lore.pyrite.amethyst_door": "A variant of Amethyst that has been carved into a Door.", + "lore.pyrite.amethyst_pillar": "A variant of Amethyst that has been carved into a Pillar.", + "lore.pyrite.amethyst_trapdoor": "A variant of Amethyst that has been carved into a Trapdoor.", + "lore.pyrite.black_bricks": "This Brick block has been dyed Black, and can be used as a building block.", + "lore.pyrite.black_framed_glass": "This Framed Glass block has been dyed Black, and can be used to as a colourful window.", + "lore.pyrite.black_framed_glass_pane": "This Framed Glass Pane has been dyed Black, and can be used as a colourful window.", + "lore.pyrite.black_lamp": "This Lamp block has been dyed Black, and can be used to light up your world.", + "lore.pyrite.black_terracotta_bricks": "This Terracotta Brick block has been dyed Black, and can be used as a building block.", + "lore.pyrite.black_torch": "This Torch block has been dyed Black, and can be used to light up your world.", + "lore.pyrite.black_torch_lever": "This Torch block has been dyed Black, and can be used to hide Redstone in plain sight.", + "lore.pyrite.blue_bricks": "This Brick block has been dyed Blue, and can be used as a building block.", + "lore.pyrite.blue_framed_glass": "This Framed Glass block has been dyed Blue, and can be used to as a colourful window.", + "lore.pyrite.blue_framed_glass_pane": "This Framed Glass Pane has been dyed Blue, and can be used as a colourful window.", + "lore.pyrite.blue_lamp": "This Lamp block has been dyed Blue, and can be used to light up your world.", + "lore.pyrite.blue_nether_bricks": "A decorative block adding a pop of blue to your Nether Bricks.", + "lore.pyrite.blue_rose": "This blue flower makes you think of the past.", + "lore.pyrite.blue_terracotta_bricks": "This Terracotta Brick block has been dyed Blue, and can be used as a building block.", + "lore.pyrite.blue_torch": "This Torch block has been dyed Blue, and can be used to light up your world.", + "lore.pyrite.blue_torch_lever": "This Torch block has been dyed Blue, and can be used to hide Redstone in plain sight.", + "lore.pyrite.brown_bricks": "This Brick block has been dyed Brown, and can be used as a building block.", + "lore.pyrite.brown_framed_glass": "This Framed Glass block has been dyed Brown, and can be used to as a colourful window.", + "lore.pyrite.brown_framed_glass_pane": "This Framed Glass Pane has been dyed Brown, and can be used as a colourful window.", + "lore.pyrite.brown_lamp": "This Lamp block has been dyed Brown, and can be used to light up your world.", + "lore.pyrite.brown_terracotta_bricks": "This Terracotta Brick block has been dyed Brown, and can be used as a building block.", + "lore.pyrite.brown_torch": "This Torch block has been dyed Brown, and can be used to light up your world.", + "lore.pyrite.brown_torch_lever": "This Torch block has been dyed Brown, and can be used to hide Redstone in plain sight.", + "lore.pyrite.buttercup": "This yellow flower makes you think of the past.", + "lore.pyrite.charred_nether_bricks": "A decorative block adding a shadowy accent to your Nether Bricks.", + "lore.pyrite.chiseled_amethyst_block": "A variant of Amethyst that has been Chiseled.", + "lore.pyrite.chiseled_diamond_block": "A variant of Diamond that has been Chiseled.", + "lore.pyrite.chiseled_emerald_block": "A variant of Emerald that has been Chiseled.", + "lore.pyrite.chiseled_gold_block": "A variant of Gold that has been Chiseled.", + "lore.pyrite.chiseled_iron_block": "A variant of Iron that has been Chiseled.", + "lore.pyrite.chiseled_lapis_block": "A variant of Lapis that has been Chiseled.", + "lore.pyrite.chiseled_netherite_block": "A variant of Netherite that has been Chiseled.", + "lore.pyrite.chiseled_quartz_block": "A variant of Quartz that has been Chiseled.", + "lore.pyrite.chiseled_redstone_block": "A variant of Redstone that has been Chiseled.", + "lore.pyrite.cobblestone_bricks": "This brick block is great for both early and late game builds.", + "lore.pyrite.copper_pillar": "A variant of Copper that has been carved into a Pillar.", + "lore.pyrite.cut_amethyst": "A variant of Amethyst that has been Cut.", + "lore.pyrite.cut_diamond": "A variant of Diamond that has been Cut.", + "lore.pyrite.cut_emerald": "A variant of Emerald that has been Cut.", + "lore.pyrite.cut_gold": "A variant of Gold that has been Cut.", + "lore.pyrite.cut_iron": "A variant of Iron that has been Cut.", + "lore.pyrite.cut_lapis": "A variant of Lapis that has been Cut.", + "lore.pyrite.cut_netherite": "A variant of Netherite that has been Cut.", + "lore.pyrite.cut_quartz": "A variant of Quartz that has been Cut.", + "lore.pyrite.cut_redstone": "A variant of Redstone that has been Cut.", + "lore.pyrite.cyan_bricks": "This Brick block has been dyed Cyan, and can be used as a building block.", + "lore.pyrite.cyan_framed_glass": "This Framed Glass block has been dyed Cyan, and can be used to as a colourful window.", + "lore.pyrite.cyan_framed_glass_pane": "This Framed Glass Pane has been dyed Cyan, and can be used as a colourful window.", + "lore.pyrite.cyan_lamp": "This Lamp block has been dyed Cyan, and can be used to light up your world.", + "lore.pyrite.cyan_terracotta_bricks": "This Terracotta Brick block has been dyed Cyan, and can be used as a building block.", + "lore.pyrite.cyan_torch": "This Torch block has been dyed Cyan, and can be used to light up your world.", + "lore.pyrite.cyan_torch_lever": "This Torch block has been dyed Cyan, and can be used to hide Redstone in plain sight.", + "lore.pyrite.diamond_bricks": "A variant of Diamond that has been carved into Bricks.", + "lore.pyrite.diamond_door": "A variant of Diamond that has been carved into a Door.", + "lore.pyrite.diamond_pillar": "A variant of Diamond that has been carved into a Pillar.", + "lore.pyrite.diamond_trapdoor": "A variant of Diamond that has been carved into a Trapdoor.", + "lore.pyrite.dragon_bricks": "This Brick block has been dyed with Dragon's Breath, and can be used as a building block.", + "lore.pyrite.dragon_dye": "A green dye made from Dragon's Breath, that gives blocks crafted with it a subtle glow.", + "lore.pyrite.dragon_framed_glass": "This Framed Glass block has been dyed with Dragon's Breath, and can be used to as a colourful window.", + "lore.pyrite.dragon_framed_glass_pane": "This Framed Glass Pane has been dyed with Dragon's Breath, and can be used as a colourful window.", + "lore.pyrite.dragon_lamp": "This Lamp block has been dyed with Dragon's Breath, and can be used to light up your world.", + "lore.pyrite.dragon_terracotta_bricks": "This Terracotta Brick block has been dyed with Dragon's Breath, and can be used as a building block.", + "lore.pyrite.dragon_torch": "This Torch block has been dyed with Dragon's Breath, and can be used to light up your world.", + "lore.pyrite.dragon_torch_lever": "This Torch block has been dyed with Dragon's Breath, and can be used to hide Redstone in plain sight.", + "lore.pyrite.emerald_bricks": "A variant of Emerald that has been carved into Bricks.", + "lore.pyrite.emerald_door": "A variant of Emerald that has been carved into a Door.", + "lore.pyrite.emerald_pillar": "A variant of Emerald that has been carved into a Pillar.", + "lore.pyrite.emerald_trapdoor": "A variant of Emerald that has been carved into a Trapdoor.", + "lore.pyrite.exposed_copper_pillar": "A variant of Exposed Copper that has been carved into a Pillar.", + "lore.pyrite.framed_glass": "This block can be used as a window. It's slightly tougher than Glass.", + "lore.pyrite.framed_glass_pane": "This block can be used as a window. It's slightly tougher than Glass.", + "lore.pyrite.glow_bricks": "This Brick block has been dyed with Glow Ink, and can be used as a building block.", + "lore.pyrite.glow_dye": "A green dye made from Glow Ink, that gives blocks crafted with it a subtle glow.", + "lore.pyrite.glow_framed_glass": "This Framed Glass block has been dyed with Glow Ink, and can be used to as a colourful window.", + "lore.pyrite.glow_framed_glass_pane": "This Framed Glass Pane has been dyed with Glow Ink, and can be used as a colourful window.", + "lore.pyrite.glow_lamp": "This Lamp block has been dyed with Glow Ink, and can be used to light up your world.", + "lore.pyrite.glow_terracotta_bricks": "This Terracotta Brick block has been dyed with Glow Ink, and can be used as a building block.", + "lore.pyrite.glow_torch": "This Torch block has been dyed with Glow Ink, and can be used to light up your world.", + "lore.pyrite.glow_torch_lever": "This Torch block has been dyed with Glow Ink, and can be used to hide Redstone in plain sight.", + "lore.pyrite.glowing_obsidian": "This block might have once had a purpose, but now just serves as a light source.", + "lore.pyrite.gold_bricks": "A variant of Gold that has been carved into Bricks.", + "lore.pyrite.gold_door": "A variant of Gold that has been carved into a Door.", + "lore.pyrite.gold_pillar": "A variant of Gold that has been carved into a Pillar.", + "lore.pyrite.gold_trapdoor": "A variant of Gold that has been carved into a Trapdoor.", + "lore.pyrite.grass_turf": "This block resembles a Grass Block, with the Grass texture on each side.", + "lore.pyrite.gray_bricks": "This Brick block has been dyed Gray, and can be used as a building block.", + "lore.pyrite.gray_framed_glass": "This Framed Glass block has been dyed Gray, and can be used to as a colourful window.", + "lore.pyrite.gray_framed_glass_pane": "This Framed Glass Pane has been dyed Gray, and can be used as a colourful window.", + "lore.pyrite.gray_lamp": "This Lamp block has been dyed Gray, and can be used to light up your world.", + "lore.pyrite.gray_terracotta_bricks": "This Terracotta Brick block has been dyed Gray, and can be used as a building block.", + "lore.pyrite.gray_torch": "This Torch block has been dyed Gray, and can be used to light up your world.", + "lore.pyrite.gray_torch_lever": "This Torch block has been dyed Gray, and can be used to hide Redstone in plain sight.", + "lore.pyrite.green_bricks": "This Brick block has been dyed Green, and can be used as a building block.", + "lore.pyrite.green_framed_glass": "This Framed Glass block has been dyed Green, and can be used to as a colourful window.", + "lore.pyrite.green_framed_glass_pane": "This Framed Glass Pane has been dyed Green, and can be used as a colourful window.", + "lore.pyrite.green_lamp": "This Lamp block has been dyed Green, and can be used to light up your world.", + "lore.pyrite.green_terracotta_bricks": "This Terracotta Brick block has been dyed Green, and can be used as a building block.", + "lore.pyrite.green_torch": "This Torch block has been dyed Green, and can be used to light up your world.", + "lore.pyrite.green_torch_lever": "This Torch block has been dyed Green, and can be used to hide Redstone in plain sight.", + "lore.pyrite.honey_bricks": "This Brick block has been dyed Honey coloured, and can be used as a building block.", + "lore.pyrite.honey_dye": "A orange dye made from Honeycomb.", + "lore.pyrite.honey_framed_glass": "This Framed Glass block has been dyed Honey coloured, and can be used to as a colourful window.", + "lore.pyrite.honey_framed_glass_pane": "This Framed Glass Pane has been dyed Honey coloured, and can be used as a colourful window.", + "lore.pyrite.honey_lamp": "This Lamp block has been dyed Honey coloured, and can be used to light up your world.", + "lore.pyrite.honey_terracotta_bricks": "This Terracotta Brick block has been dyed Honey coloured, and can be used as a building block.", + "lore.pyrite.honey_torch": "This Torch block has been dyed Honey coloured, and can be used to light up your world.", + "lore.pyrite.honey_torch_lever": "This Torch block has been dyed Honey coloured, and can be used to hide Redstone in plain sight.", + "lore.pyrite.iron_bricks": "A variant of Iron that has been carved into Bricks.", + "lore.pyrite.iron_door": "A variant of Iron that has been carved into a Door.", + "lore.pyrite.iron_pillar": "A variant of Iron that has been carved into a Pillar.", + "lore.pyrite.iron_trapdoor": "A variant of Iron that has been carved into a Trapdoor.", + "lore.pyrite.lapis_bricks": "A variant of Lapis that has been carved into Bricks.", + "lore.pyrite.lapis_door": "A variant of Lapis that has been carved into a Door.", + "lore.pyrite.lapis_pillar": "A variant of Lapis that has been carved into a Pillar.", + "lore.pyrite.lapis_trapdoor": "A variant of Lapis that has been carved into a Trapdoor.", + "lore.pyrite.light_blue_bricks": "This Brick block has been dyed Light Blue, and can be used as a building block.", + "lore.pyrite.light_blue_framed_glass": "This Framed Glass block has been dyed Light Blue, and can be used to as a colourful window.", + "lore.pyrite.light_blue_framed_glass_pane": "This Framed Glass Pane has been dyed Light Blue, and can be used as a colourful window.", + "lore.pyrite.light_blue_lamp": "This Lamp block has been dyed Light Blue, and can be used to light up your world.", + "lore.pyrite.light_blue_terracotta_bricks": "This Terracotta Brick block has been dyed Light Blue, and can be used as a building block.", + "lore.pyrite.light_blue_torch": "This Torch block has been dyed Light Blue, and can be used to light up your world.", + "lore.pyrite.light_blue_torch_lever": "This Torch block has been dyed Light Blue, and can be used to hide Redstone in plain sight.", + "lore.pyrite.light_gray_bricks": "This Brick block has been dyed Light Gray, and can be used as a building block.", + "lore.pyrite.light_gray_framed_glass": "This Framed Glass block has been dyed Light Gray, and can be used to as a colourful window.", + "lore.pyrite.light_gray_framed_glass_pane": "This Framed Glass Pane has been dyed Light Gray, and can be used as a colourful window.", + "lore.pyrite.light_gray_lamp": "This Lamp block has been dyed Light Gray, and can be used to light up your world.", + "lore.pyrite.light_gray_terracotta_bricks": "This Terracotta Brick block has been dyed Light Gray, and can be used as a building block.", + "lore.pyrite.light_gray_torch": "This Torch block has been dyed Light Gray, and can be used to light up your world.", + "lore.pyrite.light_gray_torch_lever": "This Torch block has been dyed Light Gray, and can be used to hide Redstone in plain sight.", + "lore.pyrite.lime_bricks": "This Brick block has been dyed Lime, and can be used as a building block.", + "lore.pyrite.lime_framed_glass": "This Framed Glass block has been dyed Lime, and can be used to as a colourful window.", + "lore.pyrite.lime_framed_glass_pane": "This Framed Glass Pane has been dyed Lime, and can be used as a colourful window.", + "lore.pyrite.lime_lamp": "This Lamp block has been dyed Lime, and can be used to light up your world.", + "lore.pyrite.lime_terracotta_bricks": "This Terracotta Brick block has been dyed Lime, and can be used as a building block.", + "lore.pyrite.lime_torch": "This Torch block has been dyed Lime, and can be used to light up your world.", + "lore.pyrite.lime_torch_lever": "This Torch block has been dyed Lime, and can be used to hide Redstone in plain sight.", + "lore.pyrite.lit_redstone_lamp": "This block resembles a Redstone Lamp, but is permanently powered thanks to the Redstone Torch inside.", + "lore.pyrite.locked_chest": "This block might have once had a purpose, but now just serves as a light source.", + "lore.pyrite.magenta_bricks": "This Brick block has been dyed Magenta, and can be used as a building block.", + "lore.pyrite.magenta_framed_glass": "This Framed Glass block has been dyed Magenta, and can be used to as a colourful window.", + "lore.pyrite.magenta_framed_glass_pane": "This Framed Glass Pane has been dyed Magenta, and can be used as a colourful window.", + "lore.pyrite.magenta_lamp": "This Lamp block has been dyed Magenta, and can be used to light up your world.", + "lore.pyrite.magenta_terracotta_bricks": "This Terracotta Brick block has been dyed Magenta, and can be used as a building block.", + "lore.pyrite.magenta_torch": "This Torch block has been dyed Magenta, and can be used to light up your world.", + "lore.pyrite.magenta_torch_lever": "This Torch block has been dyed Magenta, and can be used to hide Redstone in plain sight.", + "lore.pyrite.mossy_cobblestone_bricks": "This mossy brick block is great for both early and late game builds.", + "lore.pyrite.mycelium_turf": "This block resembles Mycelium, with the top texture on each side.", + "lore.pyrite.nether_brick_fence_gate": "This block resembles a Nether Brick Fence, but can be opened like a door!", + "lore.pyrite.netherite_bricks": "A variant of Netherite that has been carved into Bricks.", + "lore.pyrite.netherite_door": "A variant of Netherite that has been carved into a Door.", + "lore.pyrite.netherite_pillar": "A variant of Netherite that has been carved into a Pillar.", + "lore.pyrite.netherite_trapdoor": "A variant of Netherite that has been carved into a Trapdoor.", + "lore.pyrite.nostalgia_amethyst_block": "Just looking at this block's shiny texture makes you wonder what might have been.", + "lore.pyrite.nostalgia_bricks": "Just looking at this block's bright texture brings back memories.", + "lore.pyrite.nostalgia_cobblestone": "Just looking at this block's dramatic cracks brings back memories.", + "lore.pyrite.nostalgia_copper_block": "Just looking at this block's shiny texture makes you wonder what might have been.", + "lore.pyrite.nostalgia_diamond_block": "Just looking at this block's shiny texture brings back memories.", + "lore.pyrite.nostalgia_dye": "A green dye made from an Apple that brings out fond memories.", + "lore.pyrite.nostalgia_emerald_block": "Just looking at this block's chiseled texture brings back memories.", + "lore.pyrite.nostalgia_exposed_copper_block": "Just looking at this block's shiny texture makes you wonder what might have been.", + "lore.pyrite.nostalgia_framed_glass": "This Framed Glass block looks familiar, and can be used to as a colourful window.", + "lore.pyrite.nostalgia_framed_glass_pane": "This Framed Glass Pane looks familiar, and can be used as a colourful window.", + "lore.pyrite.nostalgia_glowing_obsidian": "This block might have once had a purpose, but now just serves as a light source.", + "lore.pyrite.nostalgia_gold_block": "Just looking at this block's shiny texture brings back memories.", + "lore.pyrite.nostalgia_grass_block": "Just looking at this block's vibrant texture brings back memories.", + "lore.pyrite.nostalgia_gravel": "Just looking at this block's messy texture brings back memories.", + "lore.pyrite.nostalgia_iron_block": "Just looking at this block's shiny texture brings back memories.", + "lore.pyrite.nostalgia_lamp": "This Lamp block looks familiar, and can be used to light up your world.", + "lore.pyrite.nostalgia_lapis_block": "Just looking at this block's smooth texture brings back memories.", + "lore.pyrite.nostalgia_mossy_cobblestone": "Just looking at this block's dramatic cracks brings back memories.", + "lore.pyrite.nostalgia_netherite_block": "Just looking at this block's shiny texture makes you wonder what might have been.", + "lore.pyrite.nostalgia_netherrack": "Just looking at this block's strange texture brings back memories.", + "lore.pyrite.nostalgia_oxidized_copper_block": "Just looking at this block's shiny texture makes you wonder what might have been.", + "lore.pyrite.nostalgia_redstone_block": "Just looking at this block's darker texture brings back memories.", + "lore.pyrite.nostalgia_terracotta_bricks": "This Terracotta Brick block looks familiar, and can be used as a building block.", + "lore.pyrite.nostalgia_torch": "This Torch block looks familiar, and can be used to light up your world.", + "lore.pyrite.nostalgia_torch_lever": "This Torch block looks familiar, and can be used to hide Redstone in plain sight.", + "lore.pyrite.nostalgia_weathered_copper_block": "Just looking at this block's shiny texture makes you wonder what might have been.", + "lore.pyrite.orange_bricks": "This Brick block has been dyed Orange, and can be used as a building block.", + "lore.pyrite.orange_framed_glass": "This Framed Glass block has been dyed Orange, and can be used to as a colourful window.", + "lore.pyrite.orange_framed_glass_pane": "This Framed Glass Pane has been dyed Orange, and can be used as a colourful window.", + "lore.pyrite.orange_lamp": "This Lamp block has been dyed Orange, and can be used to light up your world.", + "lore.pyrite.orange_rose": "This orange flower makes you think of the past.", + "lore.pyrite.orange_terracotta_bricks": "This Terracotta Brick block has been dyed Orange, and can be used as a building block.", + "lore.pyrite.orange_torch": "This Torch block has been dyed Orange, and can be used to light up your world.", + "lore.pyrite.orange_torch_lever": "This Torch block has been dyed Orange, and can be used to hide Redstone in plain sight.", + "lore.pyrite.oxidized_copper_pillar": "A variant of Oxidized Copper that has been carved into a Pillar.", + "lore.pyrite.paenoia_rose": "This magenta flower makes you think of what might've been.", + "lore.pyrite.path_turf": "This block resembles a Dirt Path Block, with the top texture on each side.", + "lore.pyrite.pink_bricks": "This Brick block has been dyed Pink, and can be used as a building block.", + "lore.pyrite.pink_daisy": "This pink flower makes you think of the past.", + "lore.pyrite.pink_framed_glass": "This Framed Glass block has been dyed Pink, and can be used to as a colourful window.", + "lore.pyrite.pink_framed_glass_pane": "This Framed Glass Pane has been dyed Pink, and can be used as a colourful window.", + "lore.pyrite.pink_lamp": "This Lamp block has been dyed Pink, and can be used to light up your world.", + "lore.pyrite.pink_rose": "This pink flower makes you think of the past.", + "lore.pyrite.pink_terracotta_bricks": "This Terracotta Brick block has been dyed Pink, and can be used as a building block.", + "lore.pyrite.pink_torch": "This Torch block has been dyed Pink, and can be used to light up your world.", + "lore.pyrite.pink_torch_lever": "This Torch block has been dyed Pink, and can be used to hide Redstone in plain sight.", + "lore.pyrite.podzol_turf": "This block resembles Podzol, with the top texture on each side.", + "lore.pyrite.poisonous_bricks": "This Brick block has been dyed Poisonous Green, and can be used as a building block.", + "lore.pyrite.poisonous_dye": "A lime dye made from an Poisonous Potato.", + "lore.pyrite.poisonous_framed_glass": "This Framed Glass block has been dyed Poisonous Green, and can be used to as a colourful window.", + "lore.pyrite.poisonous_framed_glass_pane": "This Framed Glass Pane has been dyed Poisonous Green, and can be used as a colourful window.", + "lore.pyrite.poisonous_lamp": "This Lamp block has been dyed Poisonous Green, and can be used to light up your world.", + "lore.pyrite.poisonous_terracotta_bricks": "This Terracotta Brick block has been dyed Poisonous Green, and can be used as a building block.", + "lore.pyrite.poisonous_torch": "This Torch block has been dyed Poisonous Green, and can be used to light up your world.", + "lore.pyrite.poisonous_torch_lever": "This Torch block has been dyed Poisonous Green, and can be used to hide Redstone in plain sight.", + "lore.pyrite.purple_bricks": "This Brick block has been dyed Purple, and can be used as a building block.", + "lore.pyrite.purple_framed_glass": "This Framed Glass block has been dyed Purple, and can be used to as a colourful window.", + "lore.pyrite.purple_framed_glass_pane": "This Framed Glass Pane has been dyed Purple, and can be used as a colourful window.", + "lore.pyrite.purple_lamp": "This Lamp block has been dyed Purple, and can be used to light up your world.", + "lore.pyrite.purple_terracotta_bricks": "This Terracotta Brick block has been dyed Purple, and can be used as a building block.", + "lore.pyrite.purple_torch": "This Torch block has been dyed Purple, and can be used to light up your world.", + "lore.pyrite.purple_torch_lever": "This Torch block has been dyed Purple, and can be used to hide Redstone in plain sight.", + "lore.pyrite.quartz_bricks": "A variant of Quartz that has been carved into Bricks.", + "lore.pyrite.quartz_door": "A variant of Quartz that has been carved into a Door.", + "lore.pyrite.quartz_pillar": "A variant of Quartz that has been carved into a Pillar.", + "lore.pyrite.quartz_trapdoor": "A variant of Quartz that has been carved into a Trapdoor.", + "lore.pyrite.red_bricks": "This Brick block has been dyed Red, and can be used as a building block.", + "lore.pyrite.red_framed_glass": "This Framed Glass block has been dyed Red, and can be used to as a colourful window.", + "lore.pyrite.red_framed_glass_pane": "This Framed Glass Pane has been dyed Red, and can be used as a colourful window.", + "lore.pyrite.red_lamp": "This Lamp block has been dyed Red, and can be used to light up your world.", + "lore.pyrite.red_terracotta_bricks": "This Terracotta Brick block has been dyed Red, and can be used as a building block.", + "lore.pyrite.red_torch": "This Torch block has been dyed Red, and can be used to light up your world.", + "lore.pyrite.red_torch_lever": "This Torch block has been dyed Red, and can be used to hide Redstone in plain sight.", + "lore.pyrite.redstone_bricks": "A variant of Redstone that has been carved into Bricks.", + "lore.pyrite.redstone_door": "A variant of Redstone that has been carved into a Door.", + "lore.pyrite.redstone_pillar": "A variant of Redstone that has been carved into a Pillar.", + "lore.pyrite.redstone_torch_lever": "This Redstone Torch can be used to hide Redstone in plain sight.", + "lore.pyrite.redstone_trapdoor": "A variant of Redstone that has been carved into a Trapdoor.", + "lore.pyrite.rose": "This red flower makes you think of the past.", + "lore.pyrite.rose_bricks": "This Brick block has been dyed Rose, and can be used as a building block.", + "lore.pyrite.rose_dye": "A red dye made from mixing Red and Pink Dye.", + "lore.pyrite.rose_framed_glass": "This Framed Glass block has been dyed Rose, and can be used to as a colourful window.", + "lore.pyrite.rose_framed_glass_pane": "This Framed Glass Pane has been dyed Rose, and can be used as a colourful window.", + "lore.pyrite.rose_lamp": "This Lamp block has been dyed Rose, and can be used to light up your world.", + "lore.pyrite.rose_terracotta_bricks": "This Terracotta Brick block has been dyed Rose, and can be used as a building block.", + "lore.pyrite.rose_torch": "This Torch block has been dyed Rose, and can be used to light up your world.", + "lore.pyrite.rose_torch_lever": "This Torch block has been dyed Rose, and can be used to hide Redstone in plain sight.", + "lore.pyrite.smooth_amethyst": "A variant of Amethyst that has been carved to be perfectly smooth.", + "lore.pyrite.smooth_copper": "A variant of Copper that has been carved to be perfectly smooth.", + "lore.pyrite.smooth_diamond": "A variant of Diamond that has been carved to be perfectly smooth.", + "lore.pyrite.smooth_emerald": "A variant of Emerald that has been carved to be perfectly smooth.", + "lore.pyrite.smooth_exposed_copper": "A variant of Exposed Copper that has been carved to be perfectly smooth.", + "lore.pyrite.smooth_gold": "A variant of Gold that has been carved to be perfectly smooth.", + "lore.pyrite.smooth_iron": "A variant of Iron that has been carved to be perfectly smooth.", + "lore.pyrite.smooth_lapis": "A variant of Lapis that has been carved to be perfectly smooth.", + "lore.pyrite.smooth_netherite": "A variant of Netherite that has been carved to be perfectly smooth.", + "lore.pyrite.smooth_oxidized_copper": "A variant of Oxidized Copper that has been carved to be perfectly smooth.", + "lore.pyrite.smooth_quartz": "A variant of Quartz that has been carved to be perfectly smooth.", + "lore.pyrite.smooth_redstone": "A variant of Redstone that has been carved to be perfectly smooth.", + "lore.pyrite.smooth_stone_bricks": "A variant of Smooth Stone that has been carved into bricks. ", + "lore.pyrite.smooth_weathered_copper": "A variant of Weathered Copper that has been carved to be perfectly smooth.", + "lore.pyrite.soul_torch_lever": "This Soul Torch can be used to hide Redstone in plain sight.", + "lore.pyrite.star_bricks": "This Brick block has been dyed with a Nether Star, and can be used as a building block.", + "lore.pyrite.star_dye": "A dark dye made from a Nether Star, that gives blocks crafted with it a bright glow.", + "lore.pyrite.star_framed_glass": "This Framed Glass block has been dyed with a Nether Star, and can be used to as a colourful window.", + "lore.pyrite.star_framed_glass_pane": "This Framed Glass Pane has been dyed with a Nether Star, and can be used as a colourful window.", + "lore.pyrite.star_lamp": "This Lamp block has been dyed with a Nether Star, and can be used to light up your world.", + "lore.pyrite.star_terracotta_bricks": "This Terracotta Brick block has been dyed with a Nether Star, and can be used as a building block.", + "lore.pyrite.star_torch": "This Torch block has been dyed with a Nether Star, and can be used to light up your world.", + "lore.pyrite.star_torch_lever": "This Torch block has been dyed with a Nether Star, and can be used to hide Redstone in plain sight.", + "lore.pyrite.torch_lever": "This Torch can be used to hide Redstone in plain sight.", + "lore.pyrite.weathered_copper_pillar": "A variant of Weathered Copper that has been carved into a Pillar.", + "lore.pyrite.white_bricks": "This Brick block has been dyed White, and can be used as a building block.", + "lore.pyrite.white_framed_glass": "This Framed Glass block has been dyed White, and can be used to as a colourful window.", + "lore.pyrite.white_framed_glass_pane": "This Framed Glass Pane has been dyed White, and can be used as a colourful window.", + "lore.pyrite.white_lamp": "This Lamp block has been dyed White, and can be used to light up your world.", + "lore.pyrite.white_rose": "This white flower makes you think of the past.", + "lore.pyrite.white_terracotta_bricks": "This Terracotta Brick block has been dyed White, and can be used as a building block.", + "lore.pyrite.white_torch": "This Torch block has been dyed White, and can be used to light up your world.", + "lore.pyrite.white_torch_lever": "This Torch block has been dyed White, and can be used to hide Redstone in plain sight.", + "lore.pyrite.yellow_bricks": "This Brick block has been dyed Yellow, and can be used as a building block.", + "lore.pyrite.yellow_framed_glass": "This Framed Glass block has been dyed Yellow, and can be used to as a colourful window.", + "lore.pyrite.yellow_framed_glass_pane": "This Framed Glass Pane has been dyed Yellow, and can be used as a colourful window.", + "lore.pyrite.yellow_lamp": "This Lamp block has been dyed Yellow, and can be used to light up your world.", + "lore.pyrite.yellow_terracotta_bricks": "This Terracotta Brick block has been dyed Yellow, and can be used as a building block.", + "lore.pyrite.yellow_torch": "This Torch block has been dyed Yellow, and can be used to light up your world.", + "lore.pyrite.yellow_torch_lever": "This Torch block has been dyed Yellow, and can be used to hide Redstone in plain sight.", + "tag.item.pyrite.copper_doors": "Copper Doors", + "tag.item.pyrite.crafting_tables": "Crafting Tables", + "tag.item.pyrite.metal_doors": "Metal Doors", + "tag.item.pyrite.mushroom_stem": "Mushroom Stems", + "tag.pyrite.brick_wall_gates.description": "This block resembles a Wall, but it can be opened like a door.", + "tag.pyrite.crafting_tables.description": "This block allows you to craft a more varied selection of items than the normal crafting.", + "tag.pyrite.ladders.description": "This block can be used to climb vertically.", + "tag.pyrite.metal_bars.description": "This block can be used as a barrier, but can be jumped over.", + "tag.pyrite.turf_carpets.description": "These decorative blocks look like Turf, and can be placed to hide lights.", + "tag.pyrite.wall_gates.description": "This block resembles a Wall, but it can be opened like a door.", + "block.pyrite.torch_lever": "Torch Lever", + "block.pyrite.redstone_torch_lever": "Redstone Torch Lever", + "block.pyrite.soul_torch_lever": "Soul Torch Lever", + "block.pyrite.white_stained_button": "White Stained Button", + "block.pyrite.white_stained_stairs": "White Stained Stairs", + "block.pyrite.white_stained_slab": "White Stained Slab", + "block.pyrite.white_stained_pressure_plate": "White Stained Pressure Plate", + "block.pyrite.white_stained_fence": "White Stained Fence", + "block.pyrite.white_stained_fence_gate": "White Stained Fence Gate", + "block.pyrite.white_stained_planks": "White Stained Planks", + "block.pyrite.white_stained_crafting_table": "White Stained Crafting Table", + "block.pyrite.white_stained_ladder": "White Stained Ladder", + "block.pyrite.white_stained_door": "White Stained Door", + "block.pyrite.white_stained_sign": "White Stained Sign", + "block.pyrite.white_stained_hanging_sign": "White Stained Hanging Sign", + "block.pyrite.white_stained_trapdoor": "White Stained Trapdoor", + "block.pyrite.white_bricks": "White Bricks", + "block.pyrite.white_brick_slab": "White Brick Slab", + "block.pyrite.white_brick_stairs": "White Brick Stairs", + "block.pyrite.white_brick_wall": "White Brick Wall", + "block.pyrite.white_brick_wall_gate": "White Brick Wall Gate", + "block.pyrite.white_terracotta_bricks": "White Terracotta Bricks", + "block.pyrite.white_terracotta_brick_slab": "White Terracotta Brick Slab", + "block.pyrite.white_terracotta_brick_stairs": "White Terracotta Brick Stairs", + "block.pyrite.white_terracotta_brick_wall": "White Terracotta Brick Wall", + "block.pyrite.white_terracotta_brick_wall_gate": "White Terracotta Brick Wall Gate", + "block.pyrite.white_lamp": "White Lamp", + "block.pyrite.white_torch": "White Torch", + "block.pyrite.white_torch_lever": "White Torch Lever", + "block.pyrite.white_framed_glass": "White Framed Glass", + "block.pyrite.white_framed_glass_pane": "White Framed Glass Pane", + "block.pyrite.orange_stained_button": "Orange Stained Button", + "block.pyrite.orange_stained_stairs": "Orange Stained Stairs", + "block.pyrite.orange_stained_slab": "Orange Stained Slab", + "block.pyrite.orange_stained_pressure_plate": "Orange Stained Pressure Plate", + "block.pyrite.orange_stained_fence": "Orange Stained Fence", + "block.pyrite.orange_stained_fence_gate": "Orange Stained Fence Gate", + "block.pyrite.orange_stained_planks": "Orange Stained Planks", + "block.pyrite.orange_stained_crafting_table": "Orange Stained Crafting Table", + "block.pyrite.orange_stained_ladder": "Orange Stained Ladder", + "block.pyrite.orange_stained_door": "Orange Stained Door", + "block.pyrite.orange_stained_sign": "Orange Stained Sign", + "block.pyrite.orange_stained_hanging_sign": "Orange Stained Hanging Sign", + "block.pyrite.orange_stained_trapdoor": "Orange Stained Trapdoor", + "block.pyrite.orange_bricks": "Orange Bricks", + "block.pyrite.orange_brick_slab": "Orange Brick Slab", + "block.pyrite.orange_brick_stairs": "Orange Brick Stairs", + "block.pyrite.orange_brick_wall": "Orange Brick Wall", + "block.pyrite.orange_brick_wall_gate": "Orange Brick Wall Gate", + "block.pyrite.orange_terracotta_bricks": "Orange Terracotta Bricks", + "block.pyrite.orange_terracotta_brick_slab": "Orange Terracotta Brick Slab", + "block.pyrite.orange_terracotta_brick_stairs": "Orange Terracotta Brick Stairs", + "block.pyrite.orange_terracotta_brick_wall": "Orange Terracotta Brick Wall", + "block.pyrite.orange_terracotta_brick_wall_gate": "Orange Terracotta Brick Wall Gate", + "block.pyrite.orange_lamp": "Orange Lamp", + "block.pyrite.orange_torch": "Orange Torch", + "block.pyrite.orange_torch_lever": "Orange Torch Lever", + "block.pyrite.orange_framed_glass": "Orange Framed Glass", + "block.pyrite.orange_framed_glass_pane": "Orange Framed Glass Pane", + "block.pyrite.magenta_stained_button": "Magenta Stained Button", + "block.pyrite.magenta_stained_stairs": "Magenta Stained Stairs", + "block.pyrite.magenta_stained_slab": "Magenta Stained Slab", + "block.pyrite.magenta_stained_pressure_plate": "Magenta Stained Pressure Plate", + "block.pyrite.magenta_stained_fence": "Magenta Stained Fence", + "block.pyrite.magenta_stained_fence_gate": "Magenta Stained Fence Gate", + "block.pyrite.magenta_stained_planks": "Magenta Stained Planks", + "block.pyrite.magenta_stained_crafting_table": "Magenta Stained Crafting Table", + "block.pyrite.magenta_stained_ladder": "Magenta Stained Ladder", + "block.pyrite.magenta_stained_door": "Magenta Stained Door", + "block.pyrite.magenta_stained_sign": "Magenta Stained Sign", + "block.pyrite.magenta_stained_hanging_sign": "Magenta Stained Hanging Sign", + "block.pyrite.magenta_stained_trapdoor": "Magenta Stained Trapdoor", + "block.pyrite.magenta_bricks": "Magenta Bricks", + "block.pyrite.magenta_brick_slab": "Magenta Brick Slab", + "block.pyrite.magenta_brick_stairs": "Magenta Brick Stairs", + "block.pyrite.magenta_brick_wall": "Magenta Brick Wall", + "block.pyrite.magenta_brick_wall_gate": "Magenta Brick Wall Gate", + "block.pyrite.magenta_terracotta_bricks": "Magenta Terracotta Bricks", + "block.pyrite.magenta_terracotta_brick_slab": "Magenta Terracotta Brick Slab", + "block.pyrite.magenta_terracotta_brick_stairs": "Magenta Terracotta Brick Stairs", + "block.pyrite.magenta_terracotta_brick_wall": "Magenta Terracotta Brick Wall", + "block.pyrite.magenta_terracotta_brick_wall_gate": "Magenta Terracotta Brick Wall Gate", + "block.pyrite.magenta_lamp": "Magenta Lamp", + "block.pyrite.magenta_torch": "Magenta Torch", + "block.pyrite.magenta_torch_lever": "Magenta Torch Lever", + "block.pyrite.magenta_framed_glass": "Magenta Framed Glass", + "block.pyrite.magenta_framed_glass_pane": "Magenta Framed Glass Pane", + "block.pyrite.light_blue_stained_button": "Light Blue Stained Button", + "block.pyrite.light_blue_stained_stairs": "Light Blue Stained Stairs", + "block.pyrite.light_blue_stained_slab": "Light Blue Stained Slab", + "block.pyrite.light_blue_stained_pressure_plate": "Light Blue Stained Pressure Plate", + "block.pyrite.light_blue_stained_fence": "Light Blue Stained Fence", + "block.pyrite.light_blue_stained_fence_gate": "Light Blue Stained Fence Gate", + "block.pyrite.light_blue_stained_planks": "Light Blue Stained Planks", + "block.pyrite.light_blue_stained_crafting_table": "Light Blue Stained Crafting Table", + "block.pyrite.light_blue_stained_ladder": "Light Blue Stained Ladder", + "block.pyrite.light_blue_stained_door": "Light Blue Stained Door", + "block.pyrite.light_blue_stained_sign": "Light Blue Stained Sign", + "block.pyrite.light_blue_stained_hanging_sign": "Light Blue Stained Hanging Sign", + "block.pyrite.light_blue_stained_trapdoor": "Light Blue Stained Trapdoor", + "block.pyrite.light_blue_bricks": "Light Blue Bricks", + "block.pyrite.light_blue_brick_slab": "Light Blue Brick Slab", + "block.pyrite.light_blue_brick_stairs": "Light Blue Brick Stairs", + "block.pyrite.light_blue_brick_wall": "Light Blue Brick Wall", + "block.pyrite.light_blue_brick_wall_gate": "Light Blue Brick Wall Gate", + "block.pyrite.light_blue_terracotta_bricks": "Light Blue Terracotta Bricks", + "block.pyrite.light_blue_terracotta_brick_slab": "Light Blue Terracotta Brick Slab", + "block.pyrite.light_blue_terracotta_brick_stairs": "Light Blue Terracotta Brick Stairs", + "block.pyrite.light_blue_terracotta_brick_wall": "Light Blue Terracotta Brick Wall", + "block.pyrite.light_blue_terracotta_brick_wall_gate": "Light Blue Terracotta Brick Wall Gate", + "block.pyrite.light_blue_lamp": "Light Blue Lamp", + "block.pyrite.light_blue_torch": "Light Blue Torch", + "block.pyrite.light_blue_torch_lever": "Light Blue Torch Lever", + "block.pyrite.light_blue_framed_glass": "Light Blue Framed Glass", + "block.pyrite.light_blue_framed_glass_pane": "Light Blue Framed Glass Pane", + "block.pyrite.yellow_stained_button": "Yellow Stained Button", + "block.pyrite.yellow_stained_stairs": "Yellow Stained Stairs", + "block.pyrite.yellow_stained_slab": "Yellow Stained Slab", + "block.pyrite.yellow_stained_pressure_plate": "Yellow Stained Pressure Plate", + "block.pyrite.yellow_stained_fence": "Yellow Stained Fence", + "block.pyrite.yellow_stained_fence_gate": "Yellow Stained Fence Gate", + "block.pyrite.yellow_stained_planks": "Yellow Stained Planks", + "block.pyrite.yellow_stained_crafting_table": "Yellow Stained Crafting Table", + "block.pyrite.yellow_stained_ladder": "Yellow Stained Ladder", + "block.pyrite.yellow_stained_door": "Yellow Stained Door", + "block.pyrite.yellow_stained_sign": "Yellow Stained Sign", + "block.pyrite.yellow_stained_hanging_sign": "Yellow Stained Hanging Sign", + "block.pyrite.yellow_stained_trapdoor": "Yellow Stained Trapdoor", + "block.pyrite.yellow_bricks": "Yellow Bricks", + "block.pyrite.yellow_brick_slab": "Yellow Brick Slab", + "block.pyrite.yellow_brick_stairs": "Yellow Brick Stairs", + "block.pyrite.yellow_brick_wall": "Yellow Brick Wall", + "block.pyrite.yellow_brick_wall_gate": "Yellow Brick Wall Gate", + "block.pyrite.yellow_terracotta_bricks": "Yellow Terracotta Bricks", + "block.pyrite.yellow_terracotta_brick_slab": "Yellow Terracotta Brick Slab", + "block.pyrite.yellow_terracotta_brick_stairs": "Yellow Terracotta Brick Stairs", + "block.pyrite.yellow_terracotta_brick_wall": "Yellow Terracotta Brick Wall", + "block.pyrite.yellow_terracotta_brick_wall_gate": "Yellow Terracotta Brick Wall Gate", + "block.pyrite.yellow_lamp": "Yellow Lamp", + "block.pyrite.yellow_torch": "Yellow Torch", + "block.pyrite.yellow_torch_lever": "Yellow Torch Lever", + "block.pyrite.yellow_framed_glass": "Yellow Framed Glass", + "block.pyrite.yellow_framed_glass_pane": "Yellow Framed Glass Pane", + "block.pyrite.lime_stained_button": "Lime Stained Button", + "block.pyrite.lime_stained_stairs": "Lime Stained Stairs", + "block.pyrite.lime_stained_slab": "Lime Stained Slab", + "block.pyrite.lime_stained_pressure_plate": "Lime Stained Pressure Plate", + "block.pyrite.lime_stained_fence": "Lime Stained Fence", + "block.pyrite.lime_stained_fence_gate": "Lime Stained Fence Gate", + "block.pyrite.lime_stained_planks": "Lime Stained Planks", + "block.pyrite.lime_stained_crafting_table": "Lime Stained Crafting Table", + "block.pyrite.lime_stained_ladder": "Lime Stained Ladder", + "block.pyrite.lime_stained_door": "Lime Stained Door", + "block.pyrite.lime_stained_sign": "Lime Stained Sign", + "block.pyrite.lime_stained_hanging_sign": "Lime Stained Hanging Sign", + "block.pyrite.lime_stained_trapdoor": "Lime Stained Trapdoor", + "block.pyrite.lime_bricks": "Lime Bricks", + "block.pyrite.lime_brick_slab": "Lime Brick Slab", + "block.pyrite.lime_brick_stairs": "Lime Brick Stairs", + "block.pyrite.lime_brick_wall": "Lime Brick Wall", + "block.pyrite.lime_brick_wall_gate": "Lime Brick Wall Gate", + "block.pyrite.lime_terracotta_bricks": "Lime Terracotta Bricks", + "block.pyrite.lime_terracotta_brick_slab": "Lime Terracotta Brick Slab", + "block.pyrite.lime_terracotta_brick_stairs": "Lime Terracotta Brick Stairs", + "block.pyrite.lime_terracotta_brick_wall": "Lime Terracotta Brick Wall", + "block.pyrite.lime_terracotta_brick_wall_gate": "Lime Terracotta Brick Wall Gate", + "block.pyrite.lime_lamp": "Lime Lamp", + "block.pyrite.lime_torch": "Lime Torch", + "block.pyrite.lime_torch_lever": "Lime Torch Lever", + "block.pyrite.lime_framed_glass": "Lime Framed Glass", + "block.pyrite.lime_framed_glass_pane": "Lime Framed Glass Pane", + "block.pyrite.pink_stained_button": "Pink Stained Button", + "block.pyrite.pink_stained_stairs": "Pink Stained Stairs", + "block.pyrite.pink_stained_slab": "Pink Stained Slab", + "block.pyrite.pink_stained_pressure_plate": "Pink Stained Pressure Plate", + "block.pyrite.pink_stained_fence": "Pink Stained Fence", + "block.pyrite.pink_stained_fence_gate": "Pink Stained Fence Gate", + "block.pyrite.pink_stained_planks": "Pink Stained Planks", + "block.pyrite.pink_stained_crafting_table": "Pink Stained Crafting Table", + "block.pyrite.pink_stained_ladder": "Pink Stained Ladder", + "block.pyrite.pink_stained_door": "Pink Stained Door", + "block.pyrite.pink_stained_sign": "Pink Stained Sign", + "block.pyrite.pink_stained_hanging_sign": "Pink Stained Hanging Sign", + "block.pyrite.pink_stained_trapdoor": "Pink Stained Trapdoor", + "block.pyrite.pink_bricks": "Pink Bricks", + "block.pyrite.pink_brick_slab": "Pink Brick Slab", + "block.pyrite.pink_brick_stairs": "Pink Brick Stairs", + "block.pyrite.pink_brick_wall": "Pink Brick Wall", + "block.pyrite.pink_brick_wall_gate": "Pink Brick Wall Gate", + "block.pyrite.pink_terracotta_bricks": "Pink Terracotta Bricks", + "block.pyrite.pink_terracotta_brick_slab": "Pink Terracotta Brick Slab", + "block.pyrite.pink_terracotta_brick_stairs": "Pink Terracotta Brick Stairs", + "block.pyrite.pink_terracotta_brick_wall": "Pink Terracotta Brick Wall", + "block.pyrite.pink_terracotta_brick_wall_gate": "Pink Terracotta Brick Wall Gate", + "block.pyrite.pink_lamp": "Pink Lamp", + "block.pyrite.pink_torch": "Pink Torch", + "block.pyrite.pink_torch_lever": "Pink Torch Lever", + "block.pyrite.pink_framed_glass": "Pink Framed Glass", + "block.pyrite.pink_framed_glass_pane": "Pink Framed Glass Pane", + "block.pyrite.gray_stained_button": "Gray Stained Button", + "block.pyrite.gray_stained_stairs": "Gray Stained Stairs", + "block.pyrite.gray_stained_slab": "Gray Stained Slab", + "block.pyrite.gray_stained_pressure_plate": "Gray Stained Pressure Plate", + "block.pyrite.gray_stained_fence": "Gray Stained Fence", + "block.pyrite.gray_stained_fence_gate": "Gray Stained Fence Gate", + "block.pyrite.gray_stained_planks": "Gray Stained Planks", + "block.pyrite.gray_stained_crafting_table": "Gray Stained Crafting Table", + "block.pyrite.gray_stained_ladder": "Gray Stained Ladder", + "block.pyrite.gray_stained_door": "Gray Stained Door", + "block.pyrite.gray_stained_sign": "Gray Stained Sign", + "block.pyrite.gray_stained_hanging_sign": "Gray Stained Hanging Sign", + "block.pyrite.gray_stained_trapdoor": "Gray Stained Trapdoor", + "block.pyrite.gray_bricks": "Gray Bricks", + "block.pyrite.gray_brick_slab": "Gray Brick Slab", + "block.pyrite.gray_brick_stairs": "Gray Brick Stairs", + "block.pyrite.gray_brick_wall": "Gray Brick Wall", + "block.pyrite.gray_brick_wall_gate": "Gray Brick Wall Gate", + "block.pyrite.gray_terracotta_bricks": "Gray Terracotta Bricks", + "block.pyrite.gray_terracotta_brick_slab": "Gray Terracotta Brick Slab", + "block.pyrite.gray_terracotta_brick_stairs": "Gray Terracotta Brick Stairs", + "block.pyrite.gray_terracotta_brick_wall": "Gray Terracotta Brick Wall", + "block.pyrite.gray_terracotta_brick_wall_gate": "Gray Terracotta Brick Wall Gate", + "block.pyrite.gray_lamp": "Gray Lamp", + "block.pyrite.gray_torch": "Gray Torch", + "block.pyrite.gray_torch_lever": "Gray Torch Lever", + "block.pyrite.gray_framed_glass": "Gray Framed Glass", + "block.pyrite.gray_framed_glass_pane": "Gray Framed Glass Pane", + "block.pyrite.light_gray_stained_button": "Light Gray Stained Button", + "block.pyrite.light_gray_stained_stairs": "Light Gray Stained Stairs", + "block.pyrite.light_gray_stained_slab": "Light Gray Stained Slab", + "block.pyrite.light_gray_stained_pressure_plate": "Light Gray Stained Pressure Plate", + "block.pyrite.light_gray_stained_fence": "Light Gray Stained Fence", + "block.pyrite.light_gray_stained_fence_gate": "Light Gray Stained Fence Gate", + "block.pyrite.light_gray_stained_planks": "Light Gray Stained Planks", + "block.pyrite.light_gray_stained_crafting_table": "Light Gray Stained Crafting Table", + "block.pyrite.light_gray_stained_ladder": "Light Gray Stained Ladder", + "block.pyrite.light_gray_stained_door": "Light Gray Stained Door", + "block.pyrite.light_gray_stained_sign": "Light Gray Stained Sign", + "block.pyrite.light_gray_stained_hanging_sign": "Light Gray Stained Hanging Sign", + "block.pyrite.light_gray_stained_trapdoor": "Light Gray Stained Trapdoor", + "block.pyrite.light_gray_bricks": "Light Gray Bricks", + "block.pyrite.light_gray_brick_slab": "Light Gray Brick Slab", + "block.pyrite.light_gray_brick_stairs": "Light Gray Brick Stairs", + "block.pyrite.light_gray_brick_wall": "Light Gray Brick Wall", + "block.pyrite.light_gray_brick_wall_gate": "Light Gray Brick Wall Gate", + "block.pyrite.light_gray_terracotta_bricks": "Light Gray Terracotta Bricks", + "block.pyrite.light_gray_terracotta_brick_slab": "Light Gray Terracotta Brick Slab", + "block.pyrite.light_gray_terracotta_brick_stairs": "Light Gray Terracotta Brick Stairs", + "block.pyrite.light_gray_terracotta_brick_wall": "Light Gray Terracotta Brick Wall", + "block.pyrite.light_gray_terracotta_brick_wall_gate": "Light Gray Terracotta Brick Wall Gate", + "block.pyrite.light_gray_lamp": "Light Gray Lamp", + "block.pyrite.light_gray_torch": "Light Gray Torch", + "block.pyrite.light_gray_torch_lever": "Light Gray Torch Lever", + "block.pyrite.light_gray_framed_glass": "Light Gray Framed Glass", + "block.pyrite.light_gray_framed_glass_pane": "Light Gray Framed Glass Pane", + "block.pyrite.cyan_stained_button": "Cyan Stained Button", + "block.pyrite.cyan_stained_stairs": "Cyan Stained Stairs", + "block.pyrite.cyan_stained_slab": "Cyan Stained Slab", + "block.pyrite.cyan_stained_pressure_plate": "Cyan Stained Pressure Plate", + "block.pyrite.cyan_stained_fence": "Cyan Stained Fence", + "block.pyrite.cyan_stained_fence_gate": "Cyan Stained Fence Gate", + "block.pyrite.cyan_stained_planks": "Cyan Stained Planks", + "block.pyrite.cyan_stained_crafting_table": "Cyan Stained Crafting Table", + "block.pyrite.cyan_stained_ladder": "Cyan Stained Ladder", + "block.pyrite.cyan_stained_door": "Cyan Stained Door", + "block.pyrite.cyan_stained_sign": "Cyan Stained Sign", + "block.pyrite.cyan_stained_hanging_sign": "Cyan Stained Hanging Sign", + "block.pyrite.cyan_stained_trapdoor": "Cyan Stained Trapdoor", + "block.pyrite.cyan_bricks": "Cyan Bricks", + "block.pyrite.cyan_brick_slab": "Cyan Brick Slab", + "block.pyrite.cyan_brick_stairs": "Cyan Brick Stairs", + "block.pyrite.cyan_brick_wall": "Cyan Brick Wall", + "block.pyrite.cyan_brick_wall_gate": "Cyan Brick Wall Gate", + "block.pyrite.cyan_terracotta_bricks": "Cyan Terracotta Bricks", + "block.pyrite.cyan_terracotta_brick_slab": "Cyan Terracotta Brick Slab", + "block.pyrite.cyan_terracotta_brick_stairs": "Cyan Terracotta Brick Stairs", + "block.pyrite.cyan_terracotta_brick_wall": "Cyan Terracotta Brick Wall", + "block.pyrite.cyan_terracotta_brick_wall_gate": "Cyan Terracotta Brick Wall Gate", + "block.pyrite.cyan_lamp": "Cyan Lamp", + "block.pyrite.cyan_torch": "Cyan Torch", + "block.pyrite.cyan_torch_lever": "Cyan Torch Lever", + "block.pyrite.cyan_framed_glass": "Cyan Framed Glass", + "block.pyrite.cyan_framed_glass_pane": "Cyan Framed Glass Pane", + "block.pyrite.purple_stained_button": "Purple Stained Button", + "block.pyrite.purple_stained_stairs": "Purple Stained Stairs", + "block.pyrite.purple_stained_slab": "Purple Stained Slab", + "block.pyrite.purple_stained_pressure_plate": "Purple Stained Pressure Plate", + "block.pyrite.purple_stained_fence": "Purple Stained Fence", + "block.pyrite.purple_stained_fence_gate": "Purple Stained Fence Gate", + "block.pyrite.purple_stained_planks": "Purple Stained Planks", + "block.pyrite.purple_stained_crafting_table": "Purple Stained Crafting Table", + "block.pyrite.purple_stained_ladder": "Purple Stained Ladder", + "block.pyrite.purple_stained_door": "Purple Stained Door", + "block.pyrite.purple_stained_sign": "Purple Stained Sign", + "block.pyrite.purple_stained_hanging_sign": "Purple Stained Hanging Sign", + "block.pyrite.purple_stained_trapdoor": "Purple Stained Trapdoor", + "block.pyrite.purple_bricks": "Purple Bricks", + "block.pyrite.purple_brick_slab": "Purple Brick Slab", + "block.pyrite.purple_brick_stairs": "Purple Brick Stairs", + "block.pyrite.purple_brick_wall": "Purple Brick Wall", + "block.pyrite.purple_brick_wall_gate": "Purple Brick Wall Gate", + "block.pyrite.purple_terracotta_bricks": "Purple Terracotta Bricks", + "block.pyrite.purple_terracotta_brick_slab": "Purple Terracotta Brick Slab", + "block.pyrite.purple_terracotta_brick_stairs": "Purple Terracotta Brick Stairs", + "block.pyrite.purple_terracotta_brick_wall": "Purple Terracotta Brick Wall", + "block.pyrite.purple_terracotta_brick_wall_gate": "Purple Terracotta Brick Wall Gate", + "block.pyrite.purple_lamp": "Purple Lamp", + "block.pyrite.purple_torch": "Purple Torch", + "block.pyrite.purple_torch_lever": "Purple Torch Lever", + "block.pyrite.purple_framed_glass": "Purple Framed Glass", + "block.pyrite.purple_framed_glass_pane": "Purple Framed Glass Pane", + "block.pyrite.blue_stained_button": "Blue Stained Button", + "block.pyrite.blue_stained_stairs": "Blue Stained Stairs", + "block.pyrite.blue_stained_slab": "Blue Stained Slab", + "block.pyrite.blue_stained_pressure_plate": "Blue Stained Pressure Plate", + "block.pyrite.blue_stained_fence": "Blue Stained Fence", + "block.pyrite.blue_stained_fence_gate": "Blue Stained Fence Gate", + "block.pyrite.blue_stained_planks": "Blue Stained Planks", + "block.pyrite.blue_stained_crafting_table": "Blue Stained Crafting Table", + "block.pyrite.blue_stained_ladder": "Blue Stained Ladder", + "block.pyrite.blue_stained_door": "Blue Stained Door", + "block.pyrite.blue_stained_sign": "Blue Stained Sign", + "block.pyrite.blue_stained_hanging_sign": "Blue Stained Hanging Sign", + "block.pyrite.blue_stained_trapdoor": "Blue Stained Trapdoor", + "block.pyrite.blue_bricks": "Blue Bricks", + "block.pyrite.blue_brick_slab": "Blue Brick Slab", + "block.pyrite.blue_brick_stairs": "Blue Brick Stairs", + "block.pyrite.blue_brick_wall": "Blue Brick Wall", + "block.pyrite.blue_brick_wall_gate": "Blue Brick Wall Gate", + "block.pyrite.blue_terracotta_bricks": "Blue Terracotta Bricks", + "block.pyrite.blue_terracotta_brick_slab": "Blue Terracotta Brick Slab", + "block.pyrite.blue_terracotta_brick_stairs": "Blue Terracotta Brick Stairs", + "block.pyrite.blue_terracotta_brick_wall": "Blue Terracotta Brick Wall", + "block.pyrite.blue_terracotta_brick_wall_gate": "Blue Terracotta Brick Wall Gate", + "block.pyrite.blue_lamp": "Blue Lamp", + "block.pyrite.blue_torch": "Blue Torch", + "block.pyrite.blue_torch_lever": "Blue Torch Lever", + "block.pyrite.blue_framed_glass": "Blue Framed Glass", + "block.pyrite.blue_framed_glass_pane": "Blue Framed Glass Pane", + "block.pyrite.brown_stained_button": "Brown Stained Button", + "block.pyrite.brown_stained_stairs": "Brown Stained Stairs", + "block.pyrite.brown_stained_slab": "Brown Stained Slab", + "block.pyrite.brown_stained_pressure_plate": "Brown Stained Pressure Plate", + "block.pyrite.brown_stained_fence": "Brown Stained Fence", + "block.pyrite.brown_stained_fence_gate": "Brown Stained Fence Gate", + "block.pyrite.brown_stained_planks": "Brown Stained Planks", + "block.pyrite.brown_stained_crafting_table": "Brown Stained Crafting Table", + "block.pyrite.brown_stained_ladder": "Brown Stained Ladder", + "block.pyrite.brown_stained_door": "Brown Stained Door", + "block.pyrite.brown_stained_sign": "Brown Stained Sign", + "block.pyrite.brown_stained_hanging_sign": "Brown Stained Hanging Sign", + "block.pyrite.brown_stained_trapdoor": "Brown Stained Trapdoor", + "block.pyrite.brown_bricks": "Brown Bricks", + "block.pyrite.brown_brick_slab": "Brown Brick Slab", + "block.pyrite.brown_brick_stairs": "Brown Brick Stairs", + "block.pyrite.brown_brick_wall": "Brown Brick Wall", + "block.pyrite.brown_brick_wall_gate": "Brown Brick Wall Gate", + "block.pyrite.brown_terracotta_bricks": "Brown Terracotta Bricks", + "block.pyrite.brown_terracotta_brick_slab": "Brown Terracotta Brick Slab", + "block.pyrite.brown_terracotta_brick_stairs": "Brown Terracotta Brick Stairs", + "block.pyrite.brown_terracotta_brick_wall": "Brown Terracotta Brick Wall", + "block.pyrite.brown_terracotta_brick_wall_gate": "Brown Terracotta Brick Wall Gate", + "block.pyrite.brown_lamp": "Brown Lamp", + "block.pyrite.brown_torch": "Brown Torch", + "block.pyrite.brown_torch_lever": "Brown Torch Lever", + "block.pyrite.brown_framed_glass": "Brown Framed Glass", + "block.pyrite.brown_framed_glass_pane": "Brown Framed Glass Pane", + "block.pyrite.green_stained_button": "Green Stained Button", + "block.pyrite.green_stained_stairs": "Green Stained Stairs", + "block.pyrite.green_stained_slab": "Green Stained Slab", + "block.pyrite.green_stained_pressure_plate": "Green Stained Pressure Plate", + "block.pyrite.green_stained_fence": "Green Stained Fence", + "block.pyrite.green_stained_fence_gate": "Green Stained Fence Gate", + "block.pyrite.green_stained_planks": "Green Stained Planks", + "block.pyrite.green_stained_crafting_table": "Green Stained Crafting Table", + "block.pyrite.green_stained_ladder": "Green Stained Ladder", + "block.pyrite.green_stained_door": "Green Stained Door", + "block.pyrite.green_stained_sign": "Green Stained Sign", + "block.pyrite.green_stained_hanging_sign": "Green Stained Hanging Sign", + "block.pyrite.green_stained_trapdoor": "Green Stained Trapdoor", + "block.pyrite.green_bricks": "Green Bricks", + "block.pyrite.green_brick_slab": "Green Brick Slab", + "block.pyrite.green_brick_stairs": "Green Brick Stairs", + "block.pyrite.green_brick_wall": "Green Brick Wall", + "block.pyrite.green_brick_wall_gate": "Green Brick Wall Gate", + "block.pyrite.green_terracotta_bricks": "Green Terracotta Bricks", + "block.pyrite.green_terracotta_brick_slab": "Green Terracotta Brick Slab", + "block.pyrite.green_terracotta_brick_stairs": "Green Terracotta Brick Stairs", + "block.pyrite.green_terracotta_brick_wall": "Green Terracotta Brick Wall", + "block.pyrite.green_terracotta_brick_wall_gate": "Green Terracotta Brick Wall Gate", + "block.pyrite.green_lamp": "Green Lamp", + "block.pyrite.green_torch": "Green Torch", + "block.pyrite.green_torch_lever": "Green Torch Lever", + "block.pyrite.green_framed_glass": "Green Framed Glass", + "block.pyrite.green_framed_glass_pane": "Green Framed Glass Pane", + "block.pyrite.red_stained_button": "Red Stained Button", + "block.pyrite.red_stained_stairs": "Red Stained Stairs", + "block.pyrite.red_stained_slab": "Red Stained Slab", + "block.pyrite.red_stained_pressure_plate": "Red Stained Pressure Plate", + "block.pyrite.red_stained_fence": "Red Stained Fence", + "block.pyrite.red_stained_fence_gate": "Red Stained Fence Gate", + "block.pyrite.red_stained_planks": "Red Stained Planks", + "block.pyrite.red_stained_crafting_table": "Red Stained Crafting Table", + "block.pyrite.red_stained_ladder": "Red Stained Ladder", + "block.pyrite.red_stained_door": "Red Stained Door", + "block.pyrite.red_stained_sign": "Red Stained Sign", + "block.pyrite.red_stained_hanging_sign": "Red Stained Hanging Sign", + "block.pyrite.red_stained_trapdoor": "Red Stained Trapdoor", + "block.pyrite.red_bricks": "Red Bricks", + "block.pyrite.red_brick_slab": "Red Brick Slab", + "block.pyrite.red_brick_stairs": "Red Brick Stairs", + "block.pyrite.red_brick_wall": "Red Brick Wall", + "block.pyrite.red_brick_wall_gate": "Red Brick Wall Gate", + "block.pyrite.red_terracotta_bricks": "Red Terracotta Bricks", + "block.pyrite.red_terracotta_brick_slab": "Red Terracotta Brick Slab", + "block.pyrite.red_terracotta_brick_stairs": "Red Terracotta Brick Stairs", + "block.pyrite.red_terracotta_brick_wall": "Red Terracotta Brick Wall", + "block.pyrite.red_terracotta_brick_wall_gate": "Red Terracotta Brick Wall Gate", + "block.pyrite.red_lamp": "Red Lamp", + "block.pyrite.red_torch": "Red Torch", + "block.pyrite.red_torch_lever": "Red Torch Lever", + "block.pyrite.red_framed_glass": "Red Framed Glass", + "block.pyrite.red_framed_glass_pane": "Red Framed Glass Pane", + "block.pyrite.black_stained_button": "Black Stained Button", + "block.pyrite.black_stained_stairs": "Black Stained Stairs", + "block.pyrite.black_stained_slab": "Black Stained Slab", + "block.pyrite.black_stained_pressure_plate": "Black Stained Pressure Plate", + "block.pyrite.black_stained_fence": "Black Stained Fence", + "block.pyrite.black_stained_fence_gate": "Black Stained Fence Gate", + "block.pyrite.black_stained_planks": "Black Stained Planks", + "block.pyrite.black_stained_crafting_table": "Black Stained Crafting Table", + "block.pyrite.black_stained_ladder": "Black Stained Ladder", + "block.pyrite.black_stained_door": "Black Stained Door", + "block.pyrite.black_stained_sign": "Black Stained Sign", + "block.pyrite.black_stained_hanging_sign": "Black Stained Hanging Sign", + "block.pyrite.black_stained_trapdoor": "Black Stained Trapdoor", + "block.pyrite.black_bricks": "Black Bricks", + "block.pyrite.black_brick_slab": "Black Brick Slab", + "block.pyrite.black_brick_stairs": "Black Brick Stairs", + "block.pyrite.black_brick_wall": "Black Brick Wall", + "block.pyrite.black_brick_wall_gate": "Black Brick Wall Gate", + "block.pyrite.black_terracotta_bricks": "Black Terracotta Bricks", + "block.pyrite.black_terracotta_brick_slab": "Black Terracotta Brick Slab", + "block.pyrite.black_terracotta_brick_stairs": "Black Terracotta Brick Stairs", + "block.pyrite.black_terracotta_brick_wall": "Black Terracotta Brick Wall", + "block.pyrite.black_terracotta_brick_wall_gate": "Black Terracotta Brick Wall Gate", + "block.pyrite.black_lamp": "Black Lamp", + "block.pyrite.black_torch": "Black Torch", + "block.pyrite.black_torch_lever": "Black Torch Lever", + "block.pyrite.black_framed_glass": "Black Framed Glass", + "block.pyrite.black_framed_glass_pane": "Black Framed Glass Pane", + "block.pyrite.glow_stained_button": "Glow Stained Button", + "block.pyrite.glow_stained_stairs": "Glow Stained Stairs", + "block.pyrite.glow_stained_slab": "Glow Stained Slab", + "block.pyrite.glow_stained_pressure_plate": "Glow Stained Pressure Plate", + "block.pyrite.glow_stained_fence": "Glow Stained Fence", + "block.pyrite.glow_stained_fence_gate": "Glow Stained Fence Gate", + "block.pyrite.glow_stained_planks": "Glow Stained Planks", + "block.pyrite.glow_stained_crafting_table": "Glow Stained Crafting Table", + "block.pyrite.glow_stained_ladder": "Glow Stained Ladder", + "block.pyrite.glow_stained_door": "Glow Stained Door", + "block.pyrite.glow_stained_sign": "Glow Stained Sign", + "block.pyrite.glow_stained_hanging_sign": "Glow Stained Hanging Sign", + "block.pyrite.glow_stained_trapdoor": "Glow Stained Trapdoor", + "block.pyrite.glow_bricks": "Glow Bricks", + "block.pyrite.glow_brick_slab": "Glow Brick Slab", + "block.pyrite.glow_brick_stairs": "Glow Brick Stairs", + "block.pyrite.glow_brick_wall": "Glow Brick Wall", + "block.pyrite.glow_brick_wall_gate": "Glow Brick Wall Gate", + "block.pyrite.glow_terracotta_bricks": "Glow Terracotta Bricks", + "block.pyrite.glow_terracotta_brick_slab": "Glow Terracotta Brick Slab", + "block.pyrite.glow_terracotta_brick_stairs": "Glow Terracotta Brick Stairs", + "block.pyrite.glow_terracotta_brick_wall": "Glow Terracotta Brick Wall", + "block.pyrite.glow_terracotta_brick_wall_gate": "Glow Terracotta Brick Wall Gate", + "block.pyrite.glow_lamp": "Glow Lamp", + "block.pyrite.glow_torch": "Glow Torch", + "block.pyrite.glow_torch_lever": "Glow Torch Lever", + "block.pyrite.glow_framed_glass": "Glow Framed Glass", + "block.pyrite.glow_framed_glass_pane": "Glow Framed Glass Pane", + "block.pyrite.dragon_stained_button": "Dragon Stained Button", + "block.pyrite.dragon_stained_stairs": "Dragon Stained Stairs", + "block.pyrite.dragon_stained_slab": "Dragon Stained Slab", + "block.pyrite.dragon_stained_pressure_plate": "Dragon Stained Pressure Plate", + "block.pyrite.dragon_stained_fence": "Dragon Stained Fence", + "block.pyrite.dragon_stained_fence_gate": "Dragon Stained Fence Gate", + "block.pyrite.dragon_stained_planks": "Dragon Stained Planks", + "block.pyrite.dragon_stained_crafting_table": "Dragon Stained Crafting Table", + "block.pyrite.dragon_stained_ladder": "Dragon Stained Ladder", + "block.pyrite.dragon_stained_door": "Dragon Stained Door", + "block.pyrite.dragon_stained_sign": "Dragon Stained Sign", + "block.pyrite.dragon_stained_hanging_sign": "Dragon Stained Hanging Sign", + "block.pyrite.dragon_stained_trapdoor": "Dragon Stained Trapdoor", + "block.pyrite.dragon_bricks": "Dragon Bricks", + "block.pyrite.dragon_brick_slab": "Dragon Brick Slab", + "block.pyrite.dragon_brick_stairs": "Dragon Brick Stairs", + "block.pyrite.dragon_brick_wall": "Dragon Brick Wall", + "block.pyrite.dragon_brick_wall_gate": "Dragon Brick Wall Gate", + "block.pyrite.dragon_terracotta_bricks": "Dragon Terracotta Bricks", + "block.pyrite.dragon_terracotta_brick_slab": "Dragon Terracotta Brick Slab", + "block.pyrite.dragon_terracotta_brick_stairs": "Dragon Terracotta Brick Stairs", + "block.pyrite.dragon_terracotta_brick_wall": "Dragon Terracotta Brick Wall", + "block.pyrite.dragon_terracotta_brick_wall_gate": "Dragon Terracotta Brick Wall Gate", + "block.pyrite.dragon_lamp": "Dragon Lamp", + "block.pyrite.dragon_torch": "Dragon Torch", + "block.pyrite.dragon_torch_lever": "Dragon Torch Lever", + "block.pyrite.dragon_framed_glass": "Dragon Framed Glass", + "block.pyrite.dragon_framed_glass_pane": "Dragon Framed Glass Pane", + "block.pyrite.star_stained_button": "Star Stained Button", + "block.pyrite.star_stained_stairs": "Star Stained Stairs", + "block.pyrite.star_stained_slab": "Star Stained Slab", + "block.pyrite.star_stained_pressure_plate": "Star Stained Pressure Plate", + "block.pyrite.star_stained_fence": "Star Stained Fence", + "block.pyrite.star_stained_fence_gate": "Star Stained Fence Gate", + "block.pyrite.star_stained_planks": "Star Stained Planks", + "block.pyrite.star_stained_crafting_table": "Star Stained Crafting Table", + "block.pyrite.star_stained_ladder": "Star Stained Ladder", + "block.pyrite.star_stained_door": "Star Stained Door", + "block.pyrite.star_stained_sign": "Star Stained Sign", + "block.pyrite.star_stained_hanging_sign": "Star Stained Hanging Sign", + "block.pyrite.star_stained_trapdoor": "Star Stained Trapdoor", + "block.pyrite.star_bricks": "Star Bricks", + "block.pyrite.star_brick_slab": "Star Brick Slab", + "block.pyrite.star_brick_stairs": "Star Brick Stairs", + "block.pyrite.star_brick_wall": "Star Brick Wall", + "block.pyrite.star_brick_wall_gate": "Star Brick Wall Gate", + "block.pyrite.star_terracotta_bricks": "Star Terracotta Bricks", + "block.pyrite.star_terracotta_brick_slab": "Star Terracotta Brick Slab", + "block.pyrite.star_terracotta_brick_stairs": "Star Terracotta Brick Stairs", + "block.pyrite.star_terracotta_brick_wall": "Star Terracotta Brick Wall", + "block.pyrite.star_terracotta_brick_wall_gate": "Star Terracotta Brick Wall Gate", + "block.pyrite.star_lamp": "Star Lamp", + "block.pyrite.star_torch": "Star Torch", + "block.pyrite.star_torch_lever": "Star Torch Lever", + "block.pyrite.star_framed_glass": "Star Framed Glass", + "block.pyrite.star_framed_glass_pane": "Star Framed Glass Pane", + "block.pyrite.honey_stained_button": "Honey Stained Button", + "block.pyrite.honey_stained_stairs": "Honey Stained Stairs", + "block.pyrite.honey_stained_slab": "Honey Stained Slab", + "block.pyrite.honey_stained_pressure_plate": "Honey Stained Pressure Plate", + "block.pyrite.honey_stained_fence": "Honey Stained Fence", + "block.pyrite.honey_stained_fence_gate": "Honey Stained Fence Gate", + "block.pyrite.honey_stained_planks": "Honey Stained Planks", + "block.pyrite.honey_stained_crafting_table": "Honey Stained Crafting Table", + "block.pyrite.honey_stained_ladder": "Honey Stained Ladder", + "block.pyrite.honey_stained_door": "Honey Stained Door", + "block.pyrite.honey_stained_sign": "Honey Stained Sign", + "block.pyrite.honey_stained_hanging_sign": "Honey Stained Hanging Sign", + "block.pyrite.honey_stained_trapdoor": "Honey Stained Trapdoor", + "block.pyrite.honey_bricks": "Honey Bricks", + "block.pyrite.honey_brick_slab": "Honey Brick Slab", + "block.pyrite.honey_brick_stairs": "Honey Brick Stairs", + "block.pyrite.honey_brick_wall": "Honey Brick Wall", + "block.pyrite.honey_brick_wall_gate": "Honey Brick Wall Gate", + "block.pyrite.honey_terracotta_bricks": "Honey Terracotta Bricks", + "block.pyrite.honey_terracotta_brick_slab": "Honey Terracotta Brick Slab", + "block.pyrite.honey_terracotta_brick_stairs": "Honey Terracotta Brick Stairs", + "block.pyrite.honey_terracotta_brick_wall": "Honey Terracotta Brick Wall", + "block.pyrite.honey_terracotta_brick_wall_gate": "Honey Terracotta Brick Wall Gate", + "block.pyrite.honey_lamp": "Honey Lamp", + "block.pyrite.honey_torch": "Honey Torch", + "block.pyrite.honey_torch_lever": "Honey Torch Lever", + "block.pyrite.honey_framed_glass": "Honey Framed Glass", + "block.pyrite.honey_framed_glass_pane": "Honey Framed Glass Pane", + "block.pyrite.nostalgia_stained_button": "Nostalgia Stained Button", + "block.pyrite.nostalgia_stained_stairs": "Nostalgia Stained Stairs", + "block.pyrite.nostalgia_stained_slab": "Nostalgia Stained Slab", + "block.pyrite.nostalgia_stained_pressure_plate": "Nostalgia Stained Pressure Plate", + "block.pyrite.nostalgia_stained_fence": "Nostalgia Stained Fence", + "block.pyrite.nostalgia_stained_fence_gate": "Nostalgia Stained Fence Gate", + "block.pyrite.nostalgia_stained_planks": "Nostalgia Stained Planks", + "block.pyrite.nostalgia_stained_crafting_table": "Nostalgia Stained Crafting Table", + "block.pyrite.nostalgia_stained_ladder": "Nostalgia Stained Ladder", + "block.pyrite.nostalgia_stained_door": "Nostalgia Stained Door", + "block.pyrite.nostalgia_stained_sign": "Nostalgia Stained Sign", + "block.pyrite.nostalgia_stained_hanging_sign": "Nostalgia Stained Hanging Sign", + "block.pyrite.nostalgia_stained_trapdoor": "Nostalgia Stained Trapdoor", + "block.pyrite.nostalgia_bricks": "Nostalgia Bricks", + "block.pyrite.nostalgia_brick_slab": "Nostalgia Brick Slab", + "block.pyrite.nostalgia_brick_stairs": "Nostalgia Brick Stairs", + "block.pyrite.nostalgia_brick_wall": "Nostalgia Brick Wall", + "block.pyrite.nostalgia_brick_wall_gate": "Nostalgia Brick Wall Gate", + "block.pyrite.nostalgia_terracotta_bricks": "Nostalgia Terracotta Bricks", + "block.pyrite.nostalgia_terracotta_brick_slab": "Nostalgia Terracotta Brick Slab", + "block.pyrite.nostalgia_terracotta_brick_stairs": "Nostalgia Terracotta Brick Stairs", + "block.pyrite.nostalgia_terracotta_brick_wall": "Nostalgia Terracotta Brick Wall", + "block.pyrite.nostalgia_terracotta_brick_wall_gate": "Nostalgia Terracotta Brick Wall Gate", + "block.pyrite.nostalgia_lamp": "Nostalgia Lamp", + "block.pyrite.nostalgia_torch": "Nostalgia Torch", + "block.pyrite.nostalgia_torch_lever": "Nostalgia Torch Lever", + "block.pyrite.nostalgia_framed_glass": "Nostalgia Framed Glass", + "block.pyrite.nostalgia_framed_glass_pane": "Nostalgia Framed Glass Pane", + "block.pyrite.rose_stained_button": "Rose Stained Button", + "block.pyrite.rose_stained_stairs": "Rose Stained Stairs", + "block.pyrite.rose_stained_slab": "Rose Stained Slab", + "block.pyrite.rose_stained_pressure_plate": "Rose Stained Pressure Plate", + "block.pyrite.rose_stained_fence": "Rose Stained Fence", + "block.pyrite.rose_stained_fence_gate": "Rose Stained Fence Gate", + "block.pyrite.rose_stained_planks": "Rose Stained Planks", + "block.pyrite.rose_stained_crafting_table": "Rose Stained Crafting Table", + "block.pyrite.rose_stained_ladder": "Rose Stained Ladder", + "block.pyrite.rose_stained_door": "Rose Stained Door", + "block.pyrite.rose_stained_sign": "Rose Stained Sign", + "block.pyrite.rose_stained_hanging_sign": "Rose Stained Hanging Sign", + "block.pyrite.rose_stained_trapdoor": "Rose Stained Trapdoor", + "block.pyrite.rose_bricks": "Rose Bricks", + "block.pyrite.rose_brick_slab": "Rose Brick Slab", + "block.pyrite.rose_brick_stairs": "Rose Brick Stairs", + "block.pyrite.rose_brick_wall": "Rose Brick Wall", + "block.pyrite.rose_brick_wall_gate": "Rose Brick Wall Gate", + "block.pyrite.rose_terracotta_bricks": "Rose Terracotta Bricks", + "block.pyrite.rose_terracotta_brick_slab": "Rose Terracotta Brick Slab", + "block.pyrite.rose_terracotta_brick_stairs": "Rose Terracotta Brick Stairs", + "block.pyrite.rose_terracotta_brick_wall": "Rose Terracotta Brick Wall", + "block.pyrite.rose_terracotta_brick_wall_gate": "Rose Terracotta Brick Wall Gate", + "block.pyrite.rose_lamp": "Rose Lamp", + "block.pyrite.rose_torch": "Rose Torch", + "block.pyrite.rose_torch_lever": "Rose Torch Lever", + "block.pyrite.rose_framed_glass": "Rose Framed Glass", + "block.pyrite.rose_framed_glass_pane": "Rose Framed Glass Pane", + "block.pyrite.poisonous_stained_button": "Poisonous Stained Button", + "block.pyrite.poisonous_stained_stairs": "Poisonous Stained Stairs", + "block.pyrite.poisonous_stained_slab": "Poisonous Stained Slab", + "block.pyrite.poisonous_stained_pressure_plate": "Poisonous Stained Pressure Plate", + "block.pyrite.poisonous_stained_fence": "Poisonous Stained Fence", + "block.pyrite.poisonous_stained_fence_gate": "Poisonous Stained Fence Gate", + "block.pyrite.poisonous_stained_planks": "Poisonous Stained Planks", + "block.pyrite.poisonous_stained_crafting_table": "Poisonous Stained Crafting Table", + "block.pyrite.poisonous_stained_ladder": "Poisonous Stained Ladder", + "block.pyrite.poisonous_stained_door": "Poisonous Stained Door", + "block.pyrite.poisonous_stained_sign": "Poisonous Stained Sign", + "block.pyrite.poisonous_stained_hanging_sign": "Poisonous Stained Hanging Sign", + "block.pyrite.poisonous_stained_trapdoor": "Poisonous Stained Trapdoor", + "block.pyrite.poisonous_bricks": "Poisonous Bricks", + "block.pyrite.poisonous_brick_slab": "Poisonous Brick Slab", + "block.pyrite.poisonous_brick_stairs": "Poisonous Brick Stairs", + "block.pyrite.poisonous_brick_wall": "Poisonous Brick Wall", + "block.pyrite.poisonous_brick_wall_gate": "Poisonous Brick Wall Gate", + "block.pyrite.poisonous_terracotta_bricks": "Poisonous Terracotta Bricks", + "block.pyrite.poisonous_terracotta_brick_slab": "Poisonous Terracotta Brick Slab", + "block.pyrite.poisonous_terracotta_brick_stairs": "Poisonous Terracotta Brick Stairs", + "block.pyrite.poisonous_terracotta_brick_wall": "Poisonous Terracotta Brick Wall", + "block.pyrite.poisonous_terracotta_brick_wall_gate": "Poisonous Terracotta Brick Wall Gate", + "block.pyrite.poisonous_lamp": "Poisonous Lamp", + "block.pyrite.poisonous_torch": "Poisonous Torch", + "block.pyrite.poisonous_torch_lever": "Poisonous Torch Lever", + "block.pyrite.poisonous_framed_glass": "Poisonous Framed Glass", + "block.pyrite.poisonous_framed_glass_pane": "Poisonous Framed Glass Pane", + "block.pyrite.spruce_crafting_table": "Spruce Crafting Table", + "block.pyrite.birch_crafting_table": "Birch Crafting Table", + "block.pyrite.jungle_crafting_table": "Jungle Crafting Table", + "block.pyrite.acacia_crafting_table": "Acacia Crafting Table", + "block.pyrite.dark_oak_crafting_table": "Dark Oak Crafting Table", + "block.pyrite.mangrove_crafting_table": "Mangrove Crafting Table", + "block.pyrite.cherry_crafting_table": "Cherry Crafting Table", + "block.pyrite.bamboo_crafting_table": "Bamboo Crafting Table", + "block.pyrite.crimson_crafting_table": "Crimson Crafting Table", + "block.pyrite.warped_crafting_table": "Warped Crafting Table", + "block.pyrite.skyroot_crafting_table": "Skyroot Crafting Table", + "block.pyrite.holystone_wall_gate": "Holystone Wall Gate", + "block.pyrite.mossy_holystone_wall_gate": "Mossy Holystone Wall Gate", + "block.pyrite.holystone_brick_wall_gate": "Holystone Brick Wall Gate", + "block.pyrite.icestone_wall_gate": "Icestone Wall Gate", + "block.pyrite.aerogel_wall_gate": "Aerogel Wall Gate", + "block.pyrite.carved_wall_gate": "Carved Wall Gate", + "block.pyrite.angelic_wall_gate": "Angelic Wall Gate", + "block.pyrite.hellfire_wall_gate": "Hellfire Wall Gate", + "block.pyrite.red_mushroom_button": "Red Mushroom Button", + "block.pyrite.red_mushroom_stairs": "Red Mushroom Stairs", + "block.pyrite.red_mushroom_slab": "Red Mushroom Slab", + "block.pyrite.red_mushroom_pressure_plate": "Red Mushroom Pressure Plate", + "block.pyrite.red_mushroom_fence": "Red Mushroom Fence", + "block.pyrite.red_mushroom_fence_gate": "Red Mushroom Fence Gate", + "block.pyrite.red_mushroom_planks": "Red Mushroom Planks", + "block.pyrite.red_mushroom_crafting_table": "Red Mushroom Crafting Table", + "block.pyrite.red_mushroom_ladder": "Red Mushroom Ladder", + "block.pyrite.red_mushroom_door": "Red Mushroom Door", + "block.pyrite.red_mushroom_sign": "Red Mushroom Sign", + "block.pyrite.red_mushroom_hanging_sign": "Red Mushroom Hanging Sign", + "block.pyrite.red_mushroom_trapdoor": "Red Mushroom Trapdoor", + "block.pyrite.red_mushroom_stem": "Red Mushroom Stem", + "block.pyrite.brown_mushroom_button": "Brown Mushroom Button", + "block.pyrite.brown_mushroom_stairs": "Brown Mushroom Stairs", + "block.pyrite.brown_mushroom_slab": "Brown Mushroom Slab", + "block.pyrite.brown_mushroom_pressure_plate": "Brown Mushroom Pressure Plate", + "block.pyrite.brown_mushroom_fence": "Brown Mushroom Fence", + "block.pyrite.brown_mushroom_fence_gate": "Brown Mushroom Fence Gate", + "block.pyrite.brown_mushroom_planks": "Brown Mushroom Planks", + "block.pyrite.brown_mushroom_crafting_table": "Brown Mushroom Crafting Table", + "block.pyrite.brown_mushroom_ladder": "Brown Mushroom Ladder", + "block.pyrite.brown_mushroom_door": "Brown Mushroom Door", + "block.pyrite.brown_mushroom_sign": "Brown Mushroom Sign", + "block.pyrite.brown_mushroom_hanging_sign": "Brown Mushroom Hanging Sign", + "block.pyrite.brown_mushroom_trapdoor": "Brown Mushroom Trapdoor", + "block.pyrite.brown_mushroom_stem": "Brown Mushroom Stem", + "block.pyrite.cobblestone_bricks": "Cobblestone Bricks", + "block.pyrite.cobblestone_brick_slab": "Cobblestone Brick Slab", + "block.pyrite.cobblestone_brick_stairs": "Cobblestone Brick Stairs", + "block.pyrite.cobblestone_brick_wall": "Cobblestone Brick Wall", + "block.pyrite.cobblestone_brick_wall_gate": "Cobblestone Brick Wall Gate", + "block.pyrite.mossy_cobblestone_bricks": "Mossy Cobblestone Bricks", + "block.pyrite.mossy_cobblestone_brick_slab": "Mossy Cobblestone Brick Slab", + "block.pyrite.mossy_cobblestone_brick_stairs": "Mossy Cobblestone Brick Stairs", + "block.pyrite.mossy_cobblestone_brick_wall": "Mossy Cobblestone Brick Wall", + "block.pyrite.mossy_cobblestone_brick_wall_gate": "Mossy Cobblestone Brick Wall Gate", + "block.pyrite.smooth_stone_bricks": "Smooth Stone Bricks", + "block.pyrite.smooth_stone_brick_slab": "Smooth Stone Brick Slab", + "block.pyrite.smooth_stone_brick_stairs": "Smooth Stone Brick Stairs", + "block.pyrite.smooth_stone_brick_wall": "Smooth Stone Brick Wall", + "block.pyrite.smooth_stone_brick_wall_gate": "Smooth Stone Brick Wall Gate", + "block.pyrite.mossy_smooth_stone_bricks": "Mossy Smooth Stone Bricks", + "block.pyrite.mossy_smooth_stone_brick_slab": "Mossy Smooth Stone Brick Slab", + "block.pyrite.mossy_smooth_stone_brick_stairs": "Mossy Smooth Stone Brick Stairs", + "block.pyrite.mossy_smooth_stone_brick_wall": "Mossy Smooth Stone Brick Wall", + "block.pyrite.mossy_smooth_stone_brick_wall_gate": "Mossy Smooth Stone Brick Wall Gate", + "block.pyrite.granite_bricks": "Granite Bricks", + "block.pyrite.granite_brick_slab": "Granite Brick Slab", + "block.pyrite.granite_brick_stairs": "Granite Brick Stairs", + "block.pyrite.granite_brick_wall": "Granite Brick Wall", + "block.pyrite.granite_brick_wall_gate": "Granite Brick Wall Gate", + "block.pyrite.mossy_granite_bricks": "Mossy Granite Bricks", + "block.pyrite.mossy_granite_brick_slab": "Mossy Granite Brick Slab", + "block.pyrite.mossy_granite_brick_stairs": "Mossy Granite Brick Stairs", + "block.pyrite.mossy_granite_brick_wall": "Mossy Granite Brick Wall", + "block.pyrite.mossy_granite_brick_wall_gate": "Mossy Granite Brick Wall Gate", + "block.pyrite.andesite_bricks": "Andesite Bricks", + "block.pyrite.andesite_brick_slab": "Andesite Brick Slab", + "block.pyrite.andesite_brick_stairs": "Andesite Brick Stairs", + "block.pyrite.andesite_brick_wall": "Andesite Brick Wall", + "block.pyrite.andesite_brick_wall_gate": "Andesite Brick Wall Gate", + "block.pyrite.mossy_andesite_bricks": "Mossy Andesite Bricks", + "block.pyrite.mossy_andesite_brick_slab": "Mossy Andesite Brick Slab", + "block.pyrite.mossy_andesite_brick_stairs": "Mossy Andesite Brick Stairs", + "block.pyrite.mossy_andesite_brick_wall": "Mossy Andesite Brick Wall", + "block.pyrite.mossy_andesite_brick_wall_gate": "Mossy Andesite Brick Wall Gate", + "block.pyrite.diorite_bricks": "Diorite Bricks", + "block.pyrite.diorite_brick_slab": "Diorite Brick Slab", + "block.pyrite.diorite_brick_stairs": "Diorite Brick Stairs", + "block.pyrite.diorite_brick_wall": "Diorite Brick Wall", + "block.pyrite.diorite_brick_wall_gate": "Diorite Brick Wall Gate", + "block.pyrite.mossy_diorite_bricks": "Mossy Diorite Bricks", + "block.pyrite.mossy_diorite_brick_slab": "Mossy Diorite Brick Slab", + "block.pyrite.mossy_diorite_brick_stairs": "Mossy Diorite Brick Stairs", + "block.pyrite.mossy_diorite_brick_wall": "Mossy Diorite Brick Wall", + "block.pyrite.mossy_diorite_brick_wall_gate": "Mossy Diorite Brick Wall Gate", + "block.pyrite.calcite_bricks": "Calcite Bricks", + "block.pyrite.calcite_brick_slab": "Calcite Brick Slab", + "block.pyrite.calcite_brick_stairs": "Calcite Brick Stairs", + "block.pyrite.calcite_brick_wall": "Calcite Brick Wall", + "block.pyrite.calcite_brick_wall_gate": "Calcite Brick Wall Gate", + "block.pyrite.mossy_calcite_bricks": "Mossy Calcite Bricks", + "block.pyrite.mossy_calcite_brick_slab": "Mossy Calcite Brick Slab", + "block.pyrite.mossy_calcite_brick_stairs": "Mossy Calcite Brick Stairs", + "block.pyrite.mossy_calcite_brick_wall": "Mossy Calcite Brick Wall", + "block.pyrite.mossy_calcite_brick_wall_gate": "Mossy Calcite Brick Wall Gate", + "block.pyrite.mossy_deepslate_bricks": "Mossy Deepslate Bricks", + "block.pyrite.mossy_deepslate_brick_slab": "Mossy Deepslate Brick Slab", + "block.pyrite.mossy_deepslate_brick_stairs": "Mossy Deepslate Brick Stairs", + "block.pyrite.mossy_deepslate_brick_wall": "Mossy Deepslate Brick Wall", + "block.pyrite.mossy_deepslate_brick_wall_gate": "Mossy Deepslate Brick Wall Gate", + "block.pyrite.nostalgia_cobblestone": "Nostalgia Cobblestone", + "block.pyrite.nostalgia_mossy_cobblestone": "Nostalgia Mossy Cobblestone", + "block.pyrite.nostalgia_netherrack": "Nostalgia Netherrack", + "block.pyrite.nostalgia_gravel": "Nostalgia Gravel", + "block.pyrite.nostalgia_grass_block": "Nostalgia Grass Block", + "block.pyrite.framed_glass": "Framed Glass", + "block.pyrite.framed_glass_pane": "Framed Glass Pane", + "block.pyrite.nostalgia_grass_turf": "Nostalgia Grass Turf", + "block.pyrite.nostalgia_grass_slab": "Nostalgia Grass Slab", + "block.pyrite.nostalgia_grass_stairs": "Nostalgia Grass Stairs", + "block.pyrite.nostalgia_grass_carpet": "Nostalgia Grass Carpet", + "block.pyrite.podzol_turf": "Podzol Turf", + "block.pyrite.podzol_slab": "Podzol Slab", + "block.pyrite.podzol_stairs": "Podzol Stairs", + "block.pyrite.podzol_carpet": "Podzol Carpet", + "block.pyrite.grass_turf": "Grass Turf", + "block.pyrite.grass_slab": "Grass Slab", + "block.pyrite.grass_stairs": "Grass Stairs", + "block.pyrite.grass_carpet": "Grass Carpet", + "block.pyrite.mycelium_turf": "Mycelium Turf", + "block.pyrite.mycelium_slab": "Mycelium Slab", + "block.pyrite.mycelium_stairs": "Mycelium Stairs", + "block.pyrite.mycelium_carpet": "Mycelium Carpet", + "block.pyrite.path_turf": "Path Turf", + "block.pyrite.path_slab": "Path Slab", + "block.pyrite.path_stairs": "Path Stairs", + "block.pyrite.path_carpet": "Path Carpet", + "block.pyrite.white_concrete_slab": "White Concrete Slab", + "block.pyrite.white_concrete_stairs": "White Concrete Stairs", + "block.pyrite.orange_concrete_slab": "Orange Concrete Slab", + "block.pyrite.orange_concrete_stairs": "Orange Concrete Stairs", + "block.pyrite.magenta_concrete_slab": "Magenta Concrete Slab", + "block.pyrite.magenta_concrete_stairs": "Magenta Concrete Stairs", + "block.pyrite.light_blue_concrete_slab": "Light Blue Concrete Slab", + "block.pyrite.light_blue_concrete_stairs": "Light Blue Concrete Stairs", + "block.pyrite.yellow_concrete_slab": "Yellow Concrete Slab", + "block.pyrite.yellow_concrete_stairs": "Yellow Concrete Stairs", + "block.pyrite.lime_concrete_slab": "Lime Concrete Slab", + "block.pyrite.lime_concrete_stairs": "Lime Concrete Stairs", + "block.pyrite.pink_concrete_slab": "Pink Concrete Slab", + "block.pyrite.pink_concrete_stairs": "Pink Concrete Stairs", + "block.pyrite.gray_concrete_slab": "Gray Concrete Slab", + "block.pyrite.gray_concrete_stairs": "Gray Concrete Stairs", + "block.pyrite.light_gray_concrete_slab": "Light Gray Concrete Slab", + "block.pyrite.light_gray_concrete_stairs": "Light Gray Concrete Stairs", + "block.pyrite.cyan_concrete_slab": "Cyan Concrete Slab", + "block.pyrite.cyan_concrete_stairs": "Cyan Concrete Stairs", + "block.pyrite.purple_concrete_slab": "Purple Concrete Slab", + "block.pyrite.purple_concrete_stairs": "Purple Concrete Stairs", + "block.pyrite.blue_concrete_slab": "Blue Concrete Slab", + "block.pyrite.blue_concrete_stairs": "Blue Concrete Stairs", + "block.pyrite.brown_concrete_slab": "Brown Concrete Slab", + "block.pyrite.brown_concrete_stairs": "Brown Concrete Stairs", + "block.pyrite.green_concrete_slab": "Green Concrete Slab", + "block.pyrite.green_concrete_stairs": "Green Concrete Stairs", + "block.pyrite.red_concrete_slab": "Red Concrete Slab", + "block.pyrite.red_concrete_stairs": "Red Concrete Stairs", + "block.pyrite.black_concrete_slab": "Black Concrete Slab", + "block.pyrite.black_concrete_stairs": "Black Concrete Stairs", + "item.pyrite.glow_dye": "Glow Dye", + "block.pyrite.glow_wool": "Glow Wool", + "block.pyrite.glow_carpet": "Glow Carpet", + "block.pyrite.glow_terracotta": "Glow Terracotta", + "block.pyrite.glow_concrete": "Glow Concrete", + "block.pyrite.glow_concrete_powder": "Glow Concrete Powder", + "block.pyrite.glow_concrete_slab": "Glow Concrete Slab", + "block.pyrite.glow_concrete_stairs": "Glow Concrete Stairs", + "item.pyrite.dragon_dye": "Dragon Dye", + "block.pyrite.dragon_wool": "Dragon Wool", + "block.pyrite.dragon_carpet": "Dragon Carpet", + "block.pyrite.dragon_terracotta": "Dragon Terracotta", + "block.pyrite.dragon_concrete": "Dragon Concrete", + "block.pyrite.dragon_concrete_powder": "Dragon Concrete Powder", + "block.pyrite.dragon_concrete_slab": "Dragon Concrete Slab", + "block.pyrite.dragon_concrete_stairs": "Dragon Concrete Stairs", + "item.pyrite.star_dye": "Star Dye", + "block.pyrite.star_wool": "Star Wool", + "block.pyrite.star_carpet": "Star Carpet", + "block.pyrite.star_terracotta": "Star Terracotta", + "block.pyrite.star_concrete": "Star Concrete", + "block.pyrite.star_concrete_powder": "Star Concrete Powder", + "block.pyrite.star_concrete_slab": "Star Concrete Slab", + "block.pyrite.star_concrete_stairs": "Star Concrete Stairs", + "item.pyrite.honey_dye": "Honey Dye", + "block.pyrite.honey_wool": "Honey Wool", + "block.pyrite.honey_carpet": "Honey Carpet", + "block.pyrite.honey_terracotta": "Honey Terracotta", + "block.pyrite.honey_concrete": "Honey Concrete", + "block.pyrite.honey_concrete_powder": "Honey Concrete Powder", + "block.pyrite.honey_concrete_slab": "Honey Concrete Slab", + "block.pyrite.honey_concrete_stairs": "Honey Concrete Stairs", + "item.pyrite.nostalgia_dye": "Nostalgia Dye", + "block.pyrite.nostalgia_wool": "Nostalgia Wool", + "block.pyrite.nostalgia_carpet": "Nostalgia Carpet", + "block.pyrite.nostalgia_terracotta": "Nostalgia Terracotta", + "block.pyrite.nostalgia_concrete": "Nostalgia Concrete", + "block.pyrite.nostalgia_concrete_powder": "Nostalgia Concrete Powder", + "block.pyrite.nostalgia_concrete_slab": "Nostalgia Concrete Slab", + "block.pyrite.nostalgia_concrete_stairs": "Nostalgia Concrete Stairs", + "item.pyrite.rose_dye": "Rose Dye", + "block.pyrite.rose_wool": "Rose Wool", + "block.pyrite.rose_carpet": "Rose Carpet", + "block.pyrite.rose_terracotta": "Rose Terracotta", + "block.pyrite.rose_concrete": "Rose Concrete", + "block.pyrite.rose_concrete_powder": "Rose Concrete Powder", + "block.pyrite.rose_concrete_slab": "Rose Concrete Slab", + "block.pyrite.rose_concrete_stairs": "Rose Concrete Stairs", + "item.pyrite.poisonous_dye": "Poisonous Dye", + "block.pyrite.poisonous_wool": "Poisonous Wool", + "block.pyrite.poisonous_carpet": "Poisonous Carpet", + "block.pyrite.poisonous_terracotta": "Poisonous Terracotta", + "block.pyrite.poisonous_concrete": "Poisonous Concrete", + "block.pyrite.poisonous_concrete_powder": "Poisonous Concrete Powder", + "block.pyrite.poisonous_concrete_slab": "Poisonous Concrete Slab", + "block.pyrite.poisonous_concrete_stairs": "Poisonous Concrete Stairs", + "block.pyrite.glowstone_lamp": "Glowstone Lamp", + "block.pyrite.lit_redstone_lamp": "Lit Redstone Lamp", + "block.pyrite.glowing_obsidian": "Glowing Obsidian", + "block.pyrite.nostalgia_glowing_obsidian": "Nostalgia Glowing Obsidian", + "block.pyrite.locked_chest": "Locked Chest", + "block.pyrite.charred_nether_bricks": "Charred Nether Bricks", + "block.pyrite.charred_nether_brick_slab": "Charred Nether Brick Slab", + "block.pyrite.charred_nether_brick_stairs": "Charred Nether Brick Stairs", + "block.pyrite.charred_nether_brick_wall": "Charred Nether Brick Wall", + "block.pyrite.charred_nether_brick_wall_gate": "Charred Nether Brick Wall Gate", + "block.pyrite.blue_nether_bricks": "Blue Nether Bricks", + "block.pyrite.blue_nether_brick_slab": "Blue Nether Brick Slab", + "block.pyrite.blue_nether_brick_stairs": "Blue Nether Brick Stairs", + "block.pyrite.blue_nether_brick_wall": "Blue Nether Brick Wall", + "block.pyrite.blue_nether_brick_wall_gate": "Blue Nether Brick Wall Gate", + "block.pyrite.cobblestone_wall_gate": "Cobblestone Wall Gate", + "block.pyrite.mossy_cobblestone_wall_gate": "Mossy Cobblestone Wall Gate", + "block.pyrite.stone_brick_wall_gate": "Stone Brick Wall Gate", + "block.pyrite.mossy_stone_brick_wall_gate": "Mossy Stone Brick Wall Gate", + "block.pyrite.granite_wall_gate": "Granite Wall Gate", + "block.pyrite.diorite_wall_gate": "Diorite Wall Gate", + "block.pyrite.andesite_wall_gate": "Andesite Wall Gate", + "block.pyrite.cobbled_deepslate_wall_gate": "Cobbled Deepslate Wall Gate", + "block.pyrite.polished_deepslate_wall_gate": "Polished Deepslate Wall Gate", + "block.pyrite.deepslate_brick_wall_gate": "Deepslate Brick Wall Gate", + "block.pyrite.deepslate_tile_wall_gate": "Deepslate Tile Wall Gate", + "block.pyrite.brick_wall_gate": "Brick Wall Gate", + "block.pyrite.mud_brick_wall_gate": "Mud Brick Wall Gate", + "block.pyrite.sandstone_wall_gate": "Sandstone Wall Gate", + "block.pyrite.red_sandstone_wall_gate": "Red Sandstone Wall Gate", + "block.pyrite.prismarine_wall_gate": "Prismarine Wall Gate", + "block.pyrite.nether_brick_wall_gate": "Nether Brick Wall Gate", + "block.pyrite.red_nether_brick_wall_gate": "Red Nether Brick Wall Gate", + "block.pyrite.blackstone_wall_gate": "Blackstone Wall Gate", + "block.pyrite.polished_blackstone_wall_gate": "Polished Blackstone Wall Gate", + "block.pyrite.polished_blackstone_brick_wall_gate": "Polished Blackstone Brick Wall Gate", + "block.pyrite.end_stone_brick_wall_gate": "End Stone Brick Wall Gate", + "block.pyrite.cut_iron": "Cut Iron", + "block.pyrite.cut_iron_slab": "Cut Iron Slab", + "block.pyrite.cut_iron_stairs": "Cut Iron Stairs", + "block.pyrite.cut_iron_wall": "Cut Iron Wall", + "block.pyrite.cut_iron_wall_gate": "Cut Iron Wall Gate", + "block.pyrite.smooth_iron": "Smooth Iron", + "block.pyrite.smooth_iron_slab": "Smooth Iron Slab", + "block.pyrite.smooth_iron_stairs": "Smooth Iron Stairs", + "block.pyrite.smooth_iron_wall": "Smooth Iron Wall", + "block.pyrite.smooth_iron_wall_gate": "Smooth Iron Wall Gate", + "block.pyrite.iron_bricks": "Iron Bricks", + "block.pyrite.iron_pillar": "Iron Pillar", + "block.pyrite.chiseled_iron_block": "Chiseled Iron Block", + "block.pyrite.nostalgia_iron_block": "Nostalgia Iron Block", + "block.pyrite.iron_button": "Iron Button", + "block.pyrite.cut_gold": "Cut Gold", + "block.pyrite.cut_gold_slab": "Cut Gold Slab", + "block.pyrite.cut_gold_stairs": "Cut Gold Stairs", + "block.pyrite.cut_gold_wall": "Cut Gold Wall", + "block.pyrite.cut_gold_wall_gate": "Cut Gold Wall Gate", + "block.pyrite.smooth_gold": "Smooth Gold", + "block.pyrite.smooth_gold_slab": "Smooth Gold Slab", + "block.pyrite.smooth_gold_stairs": "Smooth Gold Stairs", + "block.pyrite.smooth_gold_wall": "Smooth Gold Wall", + "block.pyrite.smooth_gold_wall_gate": "Smooth Gold Wall Gate", + "block.pyrite.gold_bricks": "Gold Bricks", + "block.pyrite.gold_pillar": "Gold Pillar", + "block.pyrite.gold_bars": "Gold Bars", + "block.pyrite.chiseled_gold_block": "Chiseled Gold Block", + "block.pyrite.gold_door": "Gold Door", + "block.pyrite.gold_trapdoor": "Gold Trapdoor", + "block.pyrite.nostalgia_gold_block": "Nostalgia Gold Block", + "block.pyrite.gold_button": "Gold Button", + "block.pyrite.cut_emerald": "Cut Emerald", + "block.pyrite.cut_emerald_slab": "Cut Emerald Slab", + "block.pyrite.cut_emerald_stairs": "Cut Emerald Stairs", + "block.pyrite.cut_emerald_wall": "Cut Emerald Wall", + "block.pyrite.cut_emerald_wall_gate": "Cut Emerald Wall Gate", + "block.pyrite.smooth_emerald": "Smooth Emerald", + "block.pyrite.smooth_emerald_slab": "Smooth Emerald Slab", + "block.pyrite.smooth_emerald_stairs": "Smooth Emerald Stairs", + "block.pyrite.smooth_emerald_wall": "Smooth Emerald Wall", + "block.pyrite.smooth_emerald_wall_gate": "Smooth Emerald Wall Gate", + "block.pyrite.emerald_bricks": "Emerald Bricks", + "block.pyrite.emerald_pillar": "Emerald Pillar", + "block.pyrite.emerald_bars": "Emerald Bars", + "block.pyrite.chiseled_emerald_block": "Chiseled Emerald Block", + "block.pyrite.emerald_door": "Emerald Door", + "block.pyrite.emerald_trapdoor": "Emerald Trapdoor", + "block.pyrite.nostalgia_emerald_block": "Nostalgia Emerald Block", + "block.pyrite.emerald_button": "Emerald Button", + "block.pyrite.emerald_pressure_plate": "Emerald Pressure Plate", + "block.pyrite.cut_diamond": "Cut Diamond", + "block.pyrite.cut_diamond_slab": "Cut Diamond Slab", + "block.pyrite.cut_diamond_stairs": "Cut Diamond Stairs", + "block.pyrite.cut_diamond_wall": "Cut Diamond Wall", + "block.pyrite.cut_diamond_wall_gate": "Cut Diamond Wall Gate", + "block.pyrite.smooth_diamond": "Smooth Diamond", + "block.pyrite.smooth_diamond_slab": "Smooth Diamond Slab", + "block.pyrite.smooth_diamond_stairs": "Smooth Diamond Stairs", + "block.pyrite.smooth_diamond_wall": "Smooth Diamond Wall", + "block.pyrite.smooth_diamond_wall_gate": "Smooth Diamond Wall Gate", + "block.pyrite.diamond_bricks": "Diamond Bricks", + "block.pyrite.diamond_pillar": "Diamond Pillar", + "block.pyrite.diamond_bars": "Diamond Bars", + "block.pyrite.chiseled_diamond_block": "Chiseled Diamond Block", + "block.pyrite.diamond_door": "Diamond Door", + "block.pyrite.diamond_trapdoor": "Diamond Trapdoor", + "block.pyrite.nostalgia_diamond_block": "Nostalgia Diamond Block", + "block.pyrite.diamond_button": "Diamond Button", + "block.pyrite.diamond_pressure_plate": "Diamond Pressure Plate", + "block.pyrite.cut_netherite": "Cut Netherite", + "block.pyrite.cut_netherite_slab": "Cut Netherite Slab", + "block.pyrite.cut_netherite_stairs": "Cut Netherite Stairs", + "block.pyrite.cut_netherite_wall": "Cut Netherite Wall", + "block.pyrite.cut_netherite_wall_gate": "Cut Netherite Wall Gate", + "block.pyrite.smooth_netherite": "Smooth Netherite", + "block.pyrite.smooth_netherite_slab": "Smooth Netherite Slab", + "block.pyrite.smooth_netherite_stairs": "Smooth Netherite Stairs", + "block.pyrite.smooth_netherite_wall": "Smooth Netherite Wall", + "block.pyrite.smooth_netherite_wall_gate": "Smooth Netherite Wall Gate", + "block.pyrite.netherite_bricks": "Netherite Bricks", + "block.pyrite.netherite_pillar": "Netherite Pillar", + "block.pyrite.netherite_bars": "Netherite Bars", + "block.pyrite.chiseled_netherite_block": "Chiseled Netherite Block", + "block.pyrite.netherite_door": "Netherite Door", + "block.pyrite.netherite_trapdoor": "Netherite Trapdoor", + "block.pyrite.nostalgia_netherite_block": "Nostalgia Netherite Block", + "block.pyrite.netherite_button": "Netherite Button", + "block.pyrite.netherite_pressure_plate": "Netherite Pressure Plate", + "block.pyrite.cut_quartz": "Cut Quartz", + "block.pyrite.cut_quartz_slab": "Cut Quartz Slab", + "block.pyrite.cut_quartz_stairs": "Cut Quartz Stairs", + "block.pyrite.cut_quartz_wall": "Cut Quartz Wall", + "block.pyrite.cut_quartz_wall_gate": "Cut Quartz Wall Gate", + "block.pyrite.smooth_quartz_wall": "Smooth Quartz Wall", + "block.pyrite.smooth_quartz_wall_gate": "Smooth Quartz Wall Gate", + "block.pyrite.quartz_bars": "Quartz Bars", + "block.pyrite.quartz_door": "Quartz Door", + "block.pyrite.quartz_trapdoor": "Quartz Trapdoor", + "block.pyrite.nostalgia_quartz_block": "Nostalgia Quartz Block", + "block.pyrite.quartz_button": "Quartz Button", + "block.pyrite.quartz_pressure_plate": "Quartz Pressure Plate", + "block.pyrite.cut_amethyst": "Cut Amethyst", + "block.pyrite.cut_amethyst_slab": "Cut Amethyst Slab", + "block.pyrite.cut_amethyst_stairs": "Cut Amethyst Stairs", + "block.pyrite.cut_amethyst_wall": "Cut Amethyst Wall", + "block.pyrite.cut_amethyst_wall_gate": "Cut Amethyst Wall Gate", + "block.pyrite.smooth_amethyst": "Smooth Amethyst", + "block.pyrite.smooth_amethyst_slab": "Smooth Amethyst Slab", + "block.pyrite.smooth_amethyst_stairs": "Smooth Amethyst Stairs", + "block.pyrite.smooth_amethyst_wall": "Smooth Amethyst Wall", + "block.pyrite.smooth_amethyst_wall_gate": "Smooth Amethyst Wall Gate", + "block.pyrite.amethyst_bricks": "Amethyst Bricks", + "block.pyrite.amethyst_pillar": "Amethyst Pillar", + "block.pyrite.amethyst_bars": "Amethyst Bars", + "block.pyrite.chiseled_amethyst_block": "Chiseled Amethyst Block", + "block.pyrite.amethyst_door": "Amethyst Door", + "block.pyrite.amethyst_trapdoor": "Amethyst Trapdoor", + "block.pyrite.nostalgia_amethyst_block": "Nostalgia Amethyst Block", + "block.pyrite.amethyst_button": "Amethyst Button", + "block.pyrite.amethyst_pressure_plate": "Amethyst Pressure Plate", + "block.pyrite.cut_lapis": "Cut Lapis", + "block.pyrite.cut_lapis_slab": "Cut Lapis Slab", + "block.pyrite.cut_lapis_stairs": "Cut Lapis Stairs", + "block.pyrite.cut_lapis_wall": "Cut Lapis Wall", + "block.pyrite.cut_lapis_wall_gate": "Cut Lapis Wall Gate", + "block.pyrite.smooth_lapis": "Smooth Lapis", + "block.pyrite.smooth_lapis_slab": "Smooth Lapis Slab", + "block.pyrite.smooth_lapis_stairs": "Smooth Lapis Stairs", + "block.pyrite.smooth_lapis_wall": "Smooth Lapis Wall", + "block.pyrite.smooth_lapis_wall_gate": "Smooth Lapis Wall Gate", + "block.pyrite.lapis_bricks": "Lapis Bricks", + "block.pyrite.lapis_pillar": "Lapis Pillar", + "block.pyrite.lapis_bars": "Lapis Bars", + "block.pyrite.chiseled_lapis_block": "Chiseled Lapis Block", + "block.pyrite.lapis_door": "Lapis Door", + "block.pyrite.lapis_trapdoor": "Lapis Trapdoor", + "block.pyrite.nostalgia_lapis_block": "Nostalgia Lapis Block", + "block.pyrite.lapis_button": "Lapis Button", + "block.pyrite.lapis_pressure_plate": "Lapis Pressure Plate", + "block.pyrite.cut_redstone": "Cut Redstone", + "block.pyrite.cut_redstone_slab": "Cut Redstone Slab", + "block.pyrite.cut_redstone_stairs": "Cut Redstone Stairs", + "block.pyrite.cut_redstone_wall": "Cut Redstone Wall", + "block.pyrite.cut_redstone_wall_gate": "Cut Redstone Wall Gate", + "block.pyrite.smooth_redstone": "Smooth Redstone", + "block.pyrite.smooth_redstone_slab": "Smooth Redstone Slab", + "block.pyrite.smooth_redstone_stairs": "Smooth Redstone Stairs", + "block.pyrite.smooth_redstone_wall": "Smooth Redstone Wall", + "block.pyrite.smooth_redstone_wall_gate": "Smooth Redstone Wall Gate", + "block.pyrite.redstone_bricks": "Redstone Bricks", + "block.pyrite.redstone_pillar": "Redstone Pillar", + "block.pyrite.redstone_bars": "Redstone Bars", + "block.pyrite.chiseled_redstone_block": "Chiseled Redstone Block", + "block.pyrite.redstone_door": "Redstone Door", + "block.pyrite.redstone_trapdoor": "Redstone Trapdoor", + "block.pyrite.nostalgia_redstone_block": "Nostalgia Redstone Block", + "block.pyrite.redstone_button": "Redstone Button", + "block.pyrite.redstone_pressure_plate": "Redstone Pressure Plate", + "block.pyrite.cut_copper_wall": "Cut Copper Wall", + "block.pyrite.cut_copper_wall_gate": "Cut Copper Wall Gate", + "block.pyrite.smooth_copper": "Smooth Copper", + "block.pyrite.smooth_copper_slab": "Smooth Copper Slab", + "block.pyrite.smooth_copper_stairs": "Smooth Copper Stairs", + "block.pyrite.smooth_copper_wall": "Smooth Copper Wall", + "block.pyrite.smooth_copper_wall_gate": "Smooth Copper Wall Gate", + "block.pyrite.copper_bricks": "Copper Bricks", + "block.pyrite.copper_pillar": "Copper Pillar", + "block.pyrite.copper_bars": "Copper Bars", + "block.pyrite.chiseled_copper_block": "Chiseled Copper Block", + "block.pyrite.copper_door": "Copper Door", + "block.pyrite.copper_trapdoor": "Copper Trapdoor", + "block.pyrite.nostalgia_copper_block": "Nostalgia Copper Block", + "block.pyrite.copper_button": "Copper Button", + "block.pyrite.copper_pressure_plate": "Copper Pressure Plate", + "block.pyrite.cut_exposed_copper_wall": "Cut Exposed Copper Wall", + "block.pyrite.cut_exposed_copper_wall_gate": "Cut Exposed Copper Wall Gate", + "block.pyrite.smooth_exposed_copper": "Smooth Exposed Copper", + "block.pyrite.smooth_exposed_copper_slab": "Smooth Exposed Copper Slab", + "block.pyrite.smooth_exposed_copper_stairs": "Smooth Exposed Copper Stairs", + "block.pyrite.smooth_exposed_copper_wall": "Smooth Exposed Copper Wall", + "block.pyrite.smooth_exposed_copper_wall_gate": "Smooth Exposed Copper Wall Gate", + "block.pyrite.exposed_copper_bricks": "Exposed Copper Bricks", + "block.pyrite.exposed_copper_pillar": "Exposed Copper Pillar", + "block.pyrite.exposed_copper_bars": "Exposed Copper Bars", + "block.pyrite.chiseled_exposed_copper_block": "Chiseled Exposed Copper Block", + "block.pyrite.exposed_copper_door": "Exposed Copper Door", + "block.pyrite.exposed_copper_trapdoor": "Exposed Copper Trapdoor", + "block.pyrite.nostalgia_exposed_copper_block": "Nostalgia Exposed Copper Block", + "block.pyrite.exposed_copper_button": "Exposed Copper Button", + "block.pyrite.exposed_copper_pressure_plate": "Exposed Copper Pressure Plate", + "block.pyrite.cut_weathered_copper_wall": "Cut Weathered Copper Wall", + "block.pyrite.cut_weathered_copper_wall_gate": "Cut Weathered Copper Wall Gate", + "block.pyrite.smooth_weathered_copper": "Smooth Weathered Copper", + "block.pyrite.smooth_weathered_copper_slab": "Smooth Weathered Copper Slab", + "block.pyrite.smooth_weathered_copper_stairs": "Smooth Weathered Copper Stairs", + "block.pyrite.smooth_weathered_copper_wall": "Smooth Weathered Copper Wall", + "block.pyrite.smooth_weathered_copper_wall_gate": "Smooth Weathered Copper Wall Gate", + "block.pyrite.weathered_copper_bricks": "Weathered Copper Bricks", + "block.pyrite.weathered_copper_pillar": "Weathered Copper Pillar", + "block.pyrite.weathered_copper_bars": "Weathered Copper Bars", + "block.pyrite.chiseled_weathered_copper_block": "Chiseled Weathered Copper Block", + "block.pyrite.weathered_copper_door": "Weathered Copper Door", + "block.pyrite.weathered_copper_trapdoor": "Weathered Copper Trapdoor", + "block.pyrite.nostalgia_weathered_copper_block": "Nostalgia Weathered Copper Block", + "block.pyrite.weathered_copper_button": "Weathered Copper Button", + "block.pyrite.weathered_copper_pressure_plate": "Weathered Copper Pressure Plate", + "block.pyrite.cut_oxidized_copper_wall": "Cut Oxidized Copper Wall", + "block.pyrite.cut_oxidized_copper_wall_gate": "Cut Oxidized Copper Wall Gate", + "block.pyrite.smooth_oxidized_copper": "Smooth Oxidized Copper", + "block.pyrite.smooth_oxidized_copper_slab": "Smooth Oxidized Copper Slab", + "block.pyrite.smooth_oxidized_copper_stairs": "Smooth Oxidized Copper Stairs", + "block.pyrite.smooth_oxidized_copper_wall": "Smooth Oxidized Copper Wall", + "block.pyrite.smooth_oxidized_copper_wall_gate": "Smooth Oxidized Copper Wall Gate", + "block.pyrite.oxidized_copper_bricks": "Oxidized Copper Bricks", + "block.pyrite.oxidized_copper_pillar": "Oxidized Copper Pillar", + "block.pyrite.oxidized_copper_bars": "Oxidized Copper Bars", + "block.pyrite.chiseled_oxidized_copper_block": "Chiseled Oxidized Copper Block", + "block.pyrite.oxidized_copper_door": "Oxidized Copper Door", + "block.pyrite.oxidized_copper_trapdoor": "Oxidized Copper Trapdoor", + "block.pyrite.nostalgia_oxidized_copper_block": "Nostalgia Oxidized Copper Block", + "block.pyrite.oxidized_copper_button": "Oxidized Copper Button", + "block.pyrite.oxidized_copper_pressure_plate": "Oxidized Copper Pressure Plate", + "block.pyrite.rose": "Rose", + "block.pyrite.blue_rose": "Blue Rose", + "block.pyrite.orange_rose": "Orange Rose", + "block.pyrite.white_rose": "White Rose", + "block.pyrite.pink_rose": "Pink Rose", + "block.pyrite.paeonia": "Paeonia", + "block.pyrite.pink_daisy": "Pink Daisy", + "block.pyrite.buttercup": "Buttercup", + "block.pyrite.nether_brick_fence_gate": "Nether Brick Fence Gate", + "block.pyrite.switchable_glass": "Switchable Glass", + "tag.item.pyrite.wall_gates": "Wall Gates", + "tag.item.pyrite.lamps": "Lamps", + "tag.item.pyrite.bricks": "Bricks", + "tag.item.pyrite.dyed_bricks": "Dyed Bricks", + "tag.item.pyrite.stained_framed_glass": "Stained Framed Glass", + "tag.item.pyrite.fences": "Fences", + "tag.item.pyrite.wool": "Wool", + "tag.item.pyrite.metal_bars": "Metal Bars", + "tag.item.pyrite.planks": "Planks", + "tag.item.pyrite.brick_stairs": "Brick Stairs", + "tag.item.pyrite.metal_trapdoors": "Metal Trapdoors", + "tag.item.pyrite.brick_walls": "Brick Walls", + "tag.item.pyrite.metal_buttons": "Metal Buttons", + "tag.item.pyrite.concrete_slabs": "Concrete Slabs", + "tag.item.pyrite.concrete_stairs": "Concrete Stairs", + "tag.item.c.dyed.honey": "Dyed Honey", + "tag.item.c.dyed.glow": "Dyed Glow", + "tag.item.c.dyed.nostalgia": "Dyed Nostalgia", + "tag.item.c.dyed.poisonous": "Dyed Poisonous", + "tag.item.c.dyed.rose": "Dyed Rose", + "tag.item.c.dyed.star": "Dyed Star", + "tag.item.c.dyed.dragon": "Dyed Dragon" +} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/lang/lol_us.json b/common/src/main/resources/assets/pyrite/lang/lol_us.json index 71593ea2c..3443bd5c3 100644 --- a/common/src/main/resources/assets/pyrite/lang/lol_us.json +++ b/common/src/main/resources/assets/pyrite/lang/lol_us.json @@ -1 +1,1170 @@ -{"itemGroup.pyrite.group":"Pyrite","block.pyrite.glowing_obsidian":"brightest hard thing evar!!","block.pyrite.torch_lever":"Torch Lever","block.pyrite.redstone_torch_lever":"Redstone Torch Lever","block.pyrite.soul_torch_lever":"Soul Torch Lever","block.pyrite.white_stained_button":"White Stainedly Button","block.pyrite.white_stained_stairs":"White Staned Stairz","block.pyrite.white_stained_slab":"White Staned half blok","block.pyrite.white_stained_pressure_plate":"White Stainedly prueusure platt","block.pyrite.white_stained_fence":"White Stainedly Fence","block.pyrite.white_stained_fence_gate":"White Staned Fence dor","block.pyrite.white_stained_planks":"White Stainedly Planks","block.pyrite.white_stained_crafting_table":"White Staned Krafting Tabal","block.pyrite.white_stained_ladder":"White Stainedly Ladr","block.pyrite.white_stained_door":"White Stainedly Dor","block.pyrite.white_stained_sign":"White Stainedly Sign","block.pyrite.white_stained_hanging_sign":"White Staned Hanging Sign","block.pyrite.white_stained_trapdoor":"White Stainedly Trapdoor","block.pyrite.white_bricks":"White Bricks","block.pyrite.white_brick_slab":"White Brick Sleb","block.pyrite.white_brick_stairs":"White Brick Stairz","block.pyrite.white_brick_wall":"White Brick Wal","block.pyrite.white_brick_wall_gate":"White Brick Wal dor","block.pyrite.white_terracotta_bricks":"White Teracottah Bricks","block.pyrite.white_terracotta_brick_slab":"White Teracottah Brick Sleb","block.pyrite.white_terracotta_brick_stairs":"White Teracottah Brick Stairz","block.pyrite.white_terracotta_brick_wall":"White Teracottah Brick Wal","block.pyrite.white_terracotta_brick_wall_gate":"White Teracottah Brick Wal dor","block.pyrite.white_lamp":"White lapm","block.pyrite.white_torch":"White Torch","block.pyrite.white_torch_lever":"White Torch Lever","block.pyrite.white_framed_glass":"White Framed Glazz","block.pyrite.white_framed_glass_pane":"White Framed Glazz Payn","block.pyrite.orange_stained_button":"Ornge Staned Button","block.pyrite.orange_stained_stairs":"Ornge Stainedly Stairz","block.pyrite.orange_stained_slab":"Ornge Stainedly Sleb","block.pyrite.orange_stained_pressure_plate":"Ornge Stainedly prueusure platt","block.pyrite.orange_stained_fence":"Ornge Stainedly Fence","block.pyrite.orange_stained_fence_gate":"Ornge Staned Fence dor","block.pyrite.orange_stained_planks":"Ornge Staned Planks","block.pyrite.orange_stained_crafting_table":"Ornge Staned Krafting Tabal","block.pyrite.orange_stained_ladder":"Ornge Staned Ladr","block.pyrite.orange_stained_door":"Ornge Staned Dor","block.pyrite.orange_stained_sign":"Ornge Stainedly Sign","block.pyrite.orange_stained_hanging_sign":"Ornge Stainedly Hanging Sign","block.pyrite.orange_stained_trapdoor":"Ornge Staned Trapdoor","block.pyrite.orange_bricks":"Ornge Bricks","block.pyrite.orange_brick_slab":"Ornge Brick Sleb","block.pyrite.orange_brick_stairs":"Ornge Brick Stairz","block.pyrite.orange_brick_wall":"Ornge Brick Wal","block.pyrite.orange_brick_wall_gate":"Ornge Brick Wal dor","block.pyrite.orange_terracotta_bricks":"Ornge Teracottah Bricks","block.pyrite.orange_terracotta_brick_slab":"Ornge Teracottah Brick Sleb","block.pyrite.orange_terracotta_brick_stairs":"Ornge Teracottah Brick Stairz","block.pyrite.orange_terracotta_brick_wall":"Ornge Teracottah Brick Wal","block.pyrite.orange_terracotta_brick_wall_gate":"Ornge Teracottah Brick Wal dor","block.pyrite.orange_lamp":"Ornge lapm","block.pyrite.orange_torch":"Ornge Torch","block.pyrite.orange_torch_lever":"Ornge Torch Lever","block.pyrite.orange_framed_glass":"Ornge Framed Glazz","block.pyrite.orange_framed_glass_pane":"Ornge Framed Glazz Payn","block.pyrite.magenta_stained_button":"Majenta Staned Button","block.pyrite.magenta_stained_stairs":"Majenta Staned Stairz","block.pyrite.magenta_stained_slab":"Majenta Stainedly half blok","block.pyrite.magenta_stained_pressure_plate":"Majenta Stainedly prueusure platt","block.pyrite.magenta_stained_fence":"Majenta Stainedly Fence","block.pyrite.magenta_stained_fence_gate":"Majenta Stainedly Fence dor","block.pyrite.magenta_stained_planks":"Majenta Staned Planks","block.pyrite.magenta_stained_crafting_table":"Majenta Staned Krafting Tabal","block.pyrite.magenta_stained_ladder":"Majenta Stainedly Ladr","block.pyrite.magenta_stained_door":"Majenta Staned Dor","block.pyrite.magenta_stained_sign":"Majenta Stainedly Sign","block.pyrite.magenta_stained_hanging_sign":"Majenta Staned Hanging Sign","block.pyrite.magenta_stained_trapdoor":"Majenta Staned Trapdoor","block.pyrite.magenta_bricks":"Majenta Bricks","block.pyrite.magenta_brick_slab":"Majenta Brick half blok","block.pyrite.magenta_brick_stairs":"Majenta Brick Stairz","block.pyrite.magenta_brick_wall":"Majenta Brick Wal","block.pyrite.magenta_brick_wall_gate":"Majenta Brick Wal dor","block.pyrite.magenta_terracotta_bricks":"Majenta Teracottah Bricks","block.pyrite.magenta_terracotta_brick_slab":"Majenta Teracottah Brick Sleb","block.pyrite.magenta_terracotta_brick_stairs":"Majenta Teracottah Brick Stairz","block.pyrite.magenta_terracotta_brick_wall":"Majenta Teracottah Brick Wal","block.pyrite.magenta_terracotta_brick_wall_gate":"Majenta Teracottah Brick Wal dor","block.pyrite.magenta_lamp":"Majenta lapm","block.pyrite.magenta_torch":"Majenta Torch","block.pyrite.magenta_torch_lever":"Majenta Torch Lever","block.pyrite.magenta_framed_glass":"Majenta Framed Glazz","block.pyrite.magenta_framed_glass_pane":"Majenta Framed Glazz Payn","block.pyrite.light_blue_stained_button":"Lite Bloo Stainedly Button","block.pyrite.light_blue_stained_stairs":"Lite Bloo Stainedly Stairz","block.pyrite.light_blue_stained_slab":"Lite Bloo Stainedly half blok","block.pyrite.light_blue_stained_pressure_plate":"Lite Bloo Staned prueusure platt","block.pyrite.light_blue_stained_fence":"Lite Bloo Staned Fence","block.pyrite.light_blue_stained_fence_gate":"Lite Bloo Stainedly Fence dor","block.pyrite.light_blue_stained_planks":"Lite Bloo Staned Planks","block.pyrite.light_blue_stained_crafting_table":"Lite Bloo Stainedly Krafting Tabal","block.pyrite.light_blue_stained_ladder":"Lite Bloo Stainedly Ladr","block.pyrite.light_blue_stained_door":"Lite Bloo Staned Dor","block.pyrite.light_blue_stained_sign":"Lite Bloo Stainedly Sign","block.pyrite.light_blue_stained_hanging_sign":"Lite Bloo Stainedly Hanging Sign","block.pyrite.light_blue_stained_trapdoor":"Lite Bloo Stainedly Trapdoor","block.pyrite.light_blue_bricks":"Lite Bloo Bricks","block.pyrite.light_blue_brick_slab":"Lite Bloo Brick half blok","block.pyrite.light_blue_brick_stairs":"Lite Bloo Brick Stairz","block.pyrite.light_blue_brick_wall":"Lite Bloo Brick Wal","block.pyrite.light_blue_brick_wall_gate":"Lite Bloo Brick Wal dor","block.pyrite.light_blue_terracotta_bricks":"Lite Bloo Teracottah Bricks","block.pyrite.light_blue_terracotta_brick_slab":"Lite Bloo Teracottah Brick Sleb","block.pyrite.light_blue_terracotta_brick_stairs":"Lite Bloo Teracottah Brick Stairz","block.pyrite.light_blue_terracotta_brick_wall":"Lite Bloo Teracottah Brick Wal","block.pyrite.light_blue_terracotta_brick_wall_gate":"Lite Bloo Teracottah Brick Wal dor","block.pyrite.light_blue_lamp":"Lite Bloo lapm","block.pyrite.light_blue_torch":"Lite Bloo Torch","block.pyrite.light_blue_torch_lever":"Lite Bloo Torch Lever","block.pyrite.light_blue_framed_glass":"Lite Bloo Framed Glazz","block.pyrite.light_blue_framed_glass_pane":"Lite Bloo Framed Glazz Payn","block.pyrite.yellow_stained_button":"Yello Stainedly Button","block.pyrite.yellow_stained_stairs":"Yello Stainedly Stairz","block.pyrite.yellow_stained_slab":"Yello Staned half blok","block.pyrite.yellow_stained_pressure_plate":"Yello Stainedly prueusure platt","block.pyrite.yellow_stained_fence":"Yello Staned Fence","block.pyrite.yellow_stained_fence_gate":"Yello Staned Fence dor","block.pyrite.yellow_stained_planks":"Yello Staned Planks","block.pyrite.yellow_stained_crafting_table":"Yello Staned Krafting Tabal","block.pyrite.yellow_stained_ladder":"Yello Stainedly Ladr","block.pyrite.yellow_stained_door":"Yello Staned Dor","block.pyrite.yellow_stained_sign":"Yello Staned Sign","block.pyrite.yellow_stained_hanging_sign":"Yello Staned Hanging Sign","block.pyrite.yellow_stained_trapdoor":"Yello Stainedly Trapdoor","block.pyrite.yellow_bricks":"Yello Bricks","block.pyrite.yellow_brick_slab":"Yello Brick half blok","block.pyrite.yellow_brick_stairs":"Yello Brick Stairz","block.pyrite.yellow_brick_wall":"Yello Brick Wal","block.pyrite.yellow_brick_wall_gate":"Yello Brick Wal dor","block.pyrite.yellow_terracotta_bricks":"Yello Teracottah Bricks","block.pyrite.yellow_terracotta_brick_slab":"Yello Teracottah Brick Sleb","block.pyrite.yellow_terracotta_brick_stairs":"Yello Teracottah Brick Stairz","block.pyrite.yellow_terracotta_brick_wall":"Yello Teracottah Brick Wal","block.pyrite.yellow_terracotta_brick_wall_gate":"Yello Teracottah Brick Wal dor","block.pyrite.yellow_lamp":"Yello lapm","block.pyrite.yellow_torch":"Yello Torch","block.pyrite.yellow_torch_lever":"Yello Torch Lever","block.pyrite.yellow_framed_glass":"Yello Framed Glazz","block.pyrite.yellow_framed_glass_pane":"Yello Framed Glazz Payn","block.pyrite.lime_stained_button":"Limd Staned Button","block.pyrite.lime_stained_stairs":"Limd Staned Stairz","block.pyrite.lime_stained_slab":"Limd Staned half blok","block.pyrite.lime_stained_pressure_plate":"Limd Stainedly prueusure platt","block.pyrite.lime_stained_fence":"Limd Stainedly Fence","block.pyrite.lime_stained_fence_gate":"Limd Stainedly Fence dor","block.pyrite.lime_stained_planks":"Limd Staned Planks","block.pyrite.lime_stained_crafting_table":"Limd Staned Krafting Tabal","block.pyrite.lime_stained_ladder":"Limd Staned Ladr","block.pyrite.lime_stained_door":"Limd Staned Dor","block.pyrite.lime_stained_sign":"Limd Staned Sign","block.pyrite.lime_stained_hanging_sign":"Limd Staned Hanging Sign","block.pyrite.lime_stained_trapdoor":"Limd Staned Trapdoor","block.pyrite.lime_bricks":"Limd Bricks","block.pyrite.lime_brick_slab":"Limd Brick half blok","block.pyrite.lime_brick_stairs":"Limd Brick Stairz","block.pyrite.lime_brick_wall":"Limd Brick Wal","block.pyrite.lime_brick_wall_gate":"Limd Brick Wal dor","block.pyrite.lime_terracotta_bricks":"Limd Teracottah Bricks","block.pyrite.lime_terracotta_brick_slab":"Limd Teracottah Brick Sleb","block.pyrite.lime_terracotta_brick_stairs":"Limd Teracottah Brick Stairz","block.pyrite.lime_terracotta_brick_wall":"Limd Teracottah Brick Wal","block.pyrite.lime_terracotta_brick_wall_gate":"Limd Teracottah Brick Wal dor","block.pyrite.lime_lamp":"Limd lapm","block.pyrite.lime_torch":"Limd Torch","block.pyrite.lime_torch_lever":"Limd Torch Lever","block.pyrite.lime_framed_glass":"Limd Framed Glazz","block.pyrite.lime_framed_glass_pane":"Limd Framed Glazz Payn","block.pyrite.pink_stained_button":"Pinky Staned Button","block.pyrite.pink_stained_stairs":"Pinky Staned Stairz","block.pyrite.pink_stained_slab":"Pinky Stainedly half blok","block.pyrite.pink_stained_pressure_plate":"Pinky Staned prueusure platt","block.pyrite.pink_stained_fence":"Pinky Staned Fence","block.pyrite.pink_stained_fence_gate":"Pinky Stainedly Fence dor","block.pyrite.pink_stained_planks":"Pinky Stainedly Planks","block.pyrite.pink_stained_crafting_table":"Pinky Stainedly Krafting Tabal","block.pyrite.pink_stained_ladder":"Pinky Stainedly Ladr","block.pyrite.pink_stained_door":"Pinky Staned Dor","block.pyrite.pink_stained_sign":"Pinky Stainedly Sign","block.pyrite.pink_stained_hanging_sign":"Pinky Staned Hanging Sign","block.pyrite.pink_stained_trapdoor":"Pinky Staned Trapdoor","block.pyrite.pink_bricks":"Pinky Bricks","block.pyrite.pink_brick_slab":"Pinky Brick Sleb","block.pyrite.pink_brick_stairs":"Pinky Brick Stairz","block.pyrite.pink_brick_wall":"Pinky Brick Wal","block.pyrite.pink_brick_wall_gate":"Pinky Brick Wal dor","block.pyrite.pink_terracotta_bricks":"Pinky Teracottah Bricks","block.pyrite.pink_terracotta_brick_slab":"Pinky Teracottah Brick half blok","block.pyrite.pink_terracotta_brick_stairs":"Pinky Teracottah Brick Stairz","block.pyrite.pink_terracotta_brick_wall":"Pinky Teracottah Brick Wal","block.pyrite.pink_terracotta_brick_wall_gate":"Pinky Teracottah Brick Wal dor","block.pyrite.pink_lamp":"Pinky lapm","block.pyrite.pink_torch":"Pinky Torch","block.pyrite.pink_torch_lever":"Pinky Torch Lever","block.pyrite.pink_framed_glass":"Pinky Framed Glazz","block.pyrite.pink_framed_glass_pane":"Pinky Framed Glazz Payn","block.pyrite.gray_stained_button":"Gray Staned Button","block.pyrite.gray_stained_stairs":"Gray Staned Stairz","block.pyrite.gray_stained_slab":"Gray Staned Sleb","block.pyrite.gray_stained_pressure_plate":"Gray Staned prueusure platt","block.pyrite.gray_stained_fence":"Gray Staned Fence","block.pyrite.gray_stained_fence_gate":"Gray Staned Fence dor","block.pyrite.gray_stained_planks":"Gray Stainedly Planks","block.pyrite.gray_stained_crafting_table":"Gray Staned Krafting Tabal","block.pyrite.gray_stained_ladder":"Gray Staned Ladr","block.pyrite.gray_stained_door":"Gray Stainedly Dor","block.pyrite.gray_stained_sign":"Gray Stainedly Sign","block.pyrite.gray_stained_hanging_sign":"Gray Stainedly Hanging Sign","block.pyrite.gray_stained_trapdoor":"Gray Stainedly Trapdoor","block.pyrite.gray_bricks":"Gray Bricks","block.pyrite.gray_brick_slab":"Gray Brick Sleb","block.pyrite.gray_brick_stairs":"Gray Brick Stairz","block.pyrite.gray_brick_wall":"Gray Brick Wal","block.pyrite.gray_brick_wall_gate":"Gray Brick Wal dor","block.pyrite.gray_terracotta_bricks":"Gray Teracottah Bricks","block.pyrite.gray_terracotta_brick_slab":"Gray Teracottah Brick half blok","block.pyrite.gray_terracotta_brick_stairs":"Gray Teracottah Brick Stairz","block.pyrite.gray_terracotta_brick_wall":"Gray Teracottah Brick Wal","block.pyrite.gray_terracotta_brick_wall_gate":"Gray Teracottah Brick Wal dor","block.pyrite.gray_lamp":"Gray lapm","block.pyrite.gray_torch":"Gray Torch","block.pyrite.gray_torch_lever":"Gray Torch Lever","block.pyrite.gray_framed_glass":"Gray Framed Glazz","block.pyrite.gray_framed_glass_pane":"Gray Framed Glazz Payn","block.pyrite.light_gray_stained_button":"Lite Gray Stainedly Button","block.pyrite.light_gray_stained_stairs":"Lite Gray Staned Stairz","block.pyrite.light_gray_stained_slab":"Lite Gray Staned half blok","block.pyrite.light_gray_stained_pressure_plate":"Lite Gray Stainedly prueusure platt","block.pyrite.light_gray_stained_fence":"Lite Gray Staned Fence","block.pyrite.light_gray_stained_fence_gate":"Lite Gray Staned Fence dor","block.pyrite.light_gray_stained_planks":"Lite Gray Stainedly Planks","block.pyrite.light_gray_stained_crafting_table":"Lite Gray Staned Krafting Tabal","block.pyrite.light_gray_stained_ladder":"Lite Gray Staned Ladr","block.pyrite.light_gray_stained_door":"Lite Gray Staned Dor","block.pyrite.light_gray_stained_sign":"Lite Gray Staned Sign","block.pyrite.light_gray_stained_hanging_sign":"Lite Gray Staned Hanging Sign","block.pyrite.light_gray_stained_trapdoor":"Lite Gray Stainedly Trapdoor","block.pyrite.light_gray_bricks":"Lite Gray Bricks","block.pyrite.light_gray_brick_slab":"Lite Gray Brick Sleb","block.pyrite.light_gray_brick_stairs":"Lite Gray Brick Stairz","block.pyrite.light_gray_brick_wall":"Lite Gray Brick Wal","block.pyrite.light_gray_brick_wall_gate":"Lite Gray Brick Wal dor","block.pyrite.light_gray_terracotta_bricks":"Lite Gray Teracottah Bricks","block.pyrite.light_gray_terracotta_brick_slab":"Lite Gray Teracottah Brick Sleb","block.pyrite.light_gray_terracotta_brick_stairs":"Lite Gray Teracottah Brick Stairz","block.pyrite.light_gray_terracotta_brick_wall":"Lite Gray Teracottah Brick Wal","block.pyrite.light_gray_terracotta_brick_wall_gate":"Lite Gray Teracottah Brick Wal dor","block.pyrite.light_gray_lamp":"Lite Gray lapm","block.pyrite.light_gray_torch":"Lite Gray Torch","block.pyrite.light_gray_torch_lever":"Lite Gray Torch Lever","block.pyrite.light_gray_framed_glass":"Lite Gray Framed Glazz","block.pyrite.light_gray_framed_glass_pane":"Lite Gray Framed Glazz Payn","block.pyrite.cyan_stained_button":"Sighun Staned Button","block.pyrite.cyan_stained_stairs":"Sighun Stainedly Stairz","block.pyrite.cyan_stained_slab":"Sighun Staned Sleb","block.pyrite.cyan_stained_pressure_plate":"Sighun Staned prueusure platt","block.pyrite.cyan_stained_fence":"Sighun Staned Fence","block.pyrite.cyan_stained_fence_gate":"Sighun Stainedly Fence dor","block.pyrite.cyan_stained_planks":"Sighun Stainedly Planks","block.pyrite.cyan_stained_crafting_table":"Sighun Staned Krafting Tabal","block.pyrite.cyan_stained_ladder":"Sighun Staned Ladr","block.pyrite.cyan_stained_door":"Sighun Stainedly Dor","block.pyrite.cyan_stained_sign":"Sighun Stainedly Sign","block.pyrite.cyan_stained_hanging_sign":"Sighun Stainedly Hanging Sign","block.pyrite.cyan_stained_trapdoor":"Sighun Stainedly Trapdoor","block.pyrite.cyan_bricks":"Sighun Bricks","block.pyrite.cyan_brick_slab":"Sighun Brick Sleb","block.pyrite.cyan_brick_stairs":"Sighun Brick Stairz","block.pyrite.cyan_brick_wall":"Sighun Brick Wal","block.pyrite.cyan_brick_wall_gate":"Sighun Brick Wal dor","block.pyrite.cyan_terracotta_bricks":"Sighun Teracottah Bricks","block.pyrite.cyan_terracotta_brick_slab":"Sighun Teracottah Brick Sleb","block.pyrite.cyan_terracotta_brick_stairs":"Sighun Teracottah Brick Stairz","block.pyrite.cyan_terracotta_brick_wall":"Sighun Teracottah Brick Wal","block.pyrite.cyan_terracotta_brick_wall_gate":"Sighun Teracottah Brick Wal dor","block.pyrite.cyan_lamp":"Sighun lapm","block.pyrite.cyan_torch":"Sighun Torch","block.pyrite.cyan_torch_lever":"Sighun Torch Lever","block.pyrite.cyan_framed_glass":"Sighun Framed Glazz","block.pyrite.cyan_framed_glass_pane":"Sighun Framed Glazz Payn","block.pyrite.purple_stained_button":"Parpal Stainedly Button","block.pyrite.purple_stained_stairs":"Parpal Staned Stairz","block.pyrite.purple_stained_slab":"Parpal Staned Sleb","block.pyrite.purple_stained_pressure_plate":"Parpal Stainedly prueusure platt","block.pyrite.purple_stained_fence":"Parpal Stainedly Fence","block.pyrite.purple_stained_fence_gate":"Parpal Staned Fence dor","block.pyrite.purple_stained_planks":"Parpal Staned Planks","block.pyrite.purple_stained_crafting_table":"Parpal Staned Krafting Tabal","block.pyrite.purple_stained_ladder":"Parpal Stainedly Ladr","block.pyrite.purple_stained_door":"Parpal Staned Dor","block.pyrite.purple_stained_sign":"Parpal Staned Sign","block.pyrite.purple_stained_hanging_sign":"Parpal Staned Hanging Sign","block.pyrite.purple_stained_trapdoor":"Parpal Stainedly Trapdoor","block.pyrite.purple_bricks":"Parpal Bricks","block.pyrite.purple_brick_slab":"Parpal Brick Sleb","block.pyrite.purple_brick_stairs":"Parpal Brick Stairz","block.pyrite.purple_brick_wall":"Parpal Brick Wal","block.pyrite.purple_brick_wall_gate":"Parpal Brick Wal dor","block.pyrite.purple_terracotta_bricks":"Parpal Teracottah Bricks","block.pyrite.purple_terracotta_brick_slab":"Parpal Teracottah Brick half blok","block.pyrite.purple_terracotta_brick_stairs":"Parpal Teracottah Brick Stairz","block.pyrite.purple_terracotta_brick_wall":"Parpal Teracottah Brick Wal","block.pyrite.purple_terracotta_brick_wall_gate":"Parpal Teracottah Brick Wal dor","block.pyrite.purple_lamp":"Parpal lapm","block.pyrite.purple_torch":"Parpal Torch","block.pyrite.purple_torch_lever":"Parpal Torch Lever","block.pyrite.purple_framed_glass":"Parpal Framed Glazz","block.pyrite.purple_framed_glass_pane":"Parpal Framed Glazz Payn","block.pyrite.blue_stained_button":"Bloo Stainedly Button","block.pyrite.blue_stained_stairs":"Bloo Staned Stairz","block.pyrite.blue_stained_slab":"Bloo Staned half blok","block.pyrite.blue_stained_pressure_plate":"Bloo Staned prueusure platt","block.pyrite.blue_stained_fence":"Bloo Staned Fence","block.pyrite.blue_stained_fence_gate":"Bloo Stainedly Fence dor","block.pyrite.blue_stained_planks":"Bloo Stainedly Planks","block.pyrite.blue_stained_crafting_table":"Bloo Stainedly Krafting Tabal","block.pyrite.blue_stained_ladder":"Bloo Stainedly Ladr","block.pyrite.blue_stained_door":"Bloo Stainedly Dor","block.pyrite.blue_stained_sign":"Bloo Staned Sign","block.pyrite.blue_stained_hanging_sign":"Bloo Staned Hanging Sign","block.pyrite.blue_stained_trapdoor":"Bloo Stainedly Trapdoor","block.pyrite.blue_bricks":"Bloo Bricks","block.pyrite.blue_brick_slab":"Bloo Brick Sleb","block.pyrite.blue_brick_stairs":"Bloo Brick Stairz","block.pyrite.blue_brick_wall":"Bloo Brick Wal","block.pyrite.blue_brick_wall_gate":"Bloo Brick Wal dor","block.pyrite.blue_terracotta_bricks":"Bloo Teracottah Bricks","block.pyrite.blue_terracotta_brick_slab":"Bloo Teracottah Brick Sleb","block.pyrite.blue_terracotta_brick_stairs":"Bloo Teracottah Brick Stairz","block.pyrite.blue_terracotta_brick_wall":"Bloo Teracottah Brick Wal","block.pyrite.blue_terracotta_brick_wall_gate":"Bloo Teracottah Brick Wal dor","block.pyrite.blue_lamp":"Bloo lapm","block.pyrite.blue_torch":"Bloo Torch","block.pyrite.blue_torch_lever":"Bloo Torch Lever","block.pyrite.blue_framed_glass":"Bloo Framed Glazz","block.pyrite.blue_framed_glass_pane":"Bloo Framed Glazz Payn","block.pyrite.brown_stained_button":"Brownish Staned Button","block.pyrite.brown_stained_stairs":"Brownish Staned Stairz","block.pyrite.brown_stained_slab":"Brownish Stainedly Sleb","block.pyrite.brown_stained_pressure_plate":"Brownish Stainedly prueusure platt","block.pyrite.brown_stained_fence":"Brownish Staned Fence","block.pyrite.brown_stained_fence_gate":"Brownish Staned Fence dor","block.pyrite.brown_stained_planks":"Brownish Stainedly Planks","block.pyrite.brown_stained_crafting_table":"Brownish Stainedly Krafting Tabal","block.pyrite.brown_stained_ladder":"Brownish Staned Ladr","block.pyrite.brown_stained_door":"Brownish Stainedly Dor","block.pyrite.brown_stained_sign":"Brownish Staned Sign","block.pyrite.brown_stained_hanging_sign":"Brownish Staned Hanging Sign","block.pyrite.brown_stained_trapdoor":"Brownish Stainedly Trapdoor","block.pyrite.brown_bricks":"Brownish Bricks","block.pyrite.brown_brick_slab":"Brownish Brick Sleb","block.pyrite.brown_brick_stairs":"Brownish Brick Stairz","block.pyrite.brown_brick_wall":"Brownish Brick Wal","block.pyrite.brown_brick_wall_gate":"Brownish Brick Wal dor","block.pyrite.brown_terracotta_bricks":"Brownish Teracottah Bricks","block.pyrite.brown_terracotta_brick_slab":"Brownish Teracottah Brick Sleb","block.pyrite.brown_terracotta_brick_stairs":"Brownish Teracottah Brick Stairz","block.pyrite.brown_terracotta_brick_wall":"Brownish Teracottah Brick Wal","block.pyrite.brown_terracotta_brick_wall_gate":"Brownish Teracottah Brick Wal dor","block.pyrite.brown_lamp":"Brownish lapm","block.pyrite.brown_torch":"Brownish Torch","block.pyrite.brown_torch_lever":"Brownish Torch Lever","block.pyrite.brown_framed_glass":"Brownish Framed Glazz","block.pyrite.brown_framed_glass_pane":"Brownish Framed Glazz Payn","block.pyrite.green_stained_button":"Greenish Stainedly Button","block.pyrite.green_stained_stairs":"Greenish Staned Stairz","block.pyrite.green_stained_slab":"Greenish Staned half blok","block.pyrite.green_stained_pressure_plate":"Greenish Stainedly prueusure platt","block.pyrite.green_stained_fence":"Greenish Staned Fence","block.pyrite.green_stained_fence_gate":"Greenish Stainedly Fence dor","block.pyrite.green_stained_planks":"Greenish Stainedly Planks","block.pyrite.green_stained_crafting_table":"Greenish Stainedly Krafting Tabal","block.pyrite.green_stained_ladder":"Greenish Staned Ladr","block.pyrite.green_stained_door":"Greenish Staned Dor","block.pyrite.green_stained_sign":"Greenish Staned Sign","block.pyrite.green_stained_hanging_sign":"Greenish Staned Hanging Sign","block.pyrite.green_stained_trapdoor":"Greenish Stainedly Trapdoor","block.pyrite.green_bricks":"Greenish Bricks","block.pyrite.green_brick_slab":"Greenish Brick half blok","block.pyrite.green_brick_stairs":"Greenish Brick Stairz","block.pyrite.green_brick_wall":"Greenish Brick Wal","block.pyrite.green_brick_wall_gate":"Greenish Brick Wal dor","block.pyrite.green_terracotta_bricks":"Greenish Teracottah Bricks","block.pyrite.green_terracotta_brick_slab":"Greenish Teracottah Brick Sleb","block.pyrite.green_terracotta_brick_stairs":"Greenish Teracottah Brick Stairz","block.pyrite.green_terracotta_brick_wall":"Greenish Teracottah Brick Wal","block.pyrite.green_terracotta_brick_wall_gate":"Greenish Teracottah Brick Wal dor","block.pyrite.green_lamp":"Greenish lapm","block.pyrite.green_torch":"Greenish Torch","block.pyrite.green_torch_lever":"Greenish Torch Lever","block.pyrite.green_framed_glass":"Greenish Framed Glazz","block.pyrite.green_framed_glass_pane":"Greenish Framed Glazz Payn","block.pyrite.red_stained_button":"Redish Stainedly Button","block.pyrite.red_stained_stairs":"Redish Stainedly Stairz","block.pyrite.red_stained_slab":"Redish Staned Sleb","block.pyrite.red_stained_pressure_plate":"Redish Stainedly prueusure platt","block.pyrite.red_stained_fence":"Redish Staned Fence","block.pyrite.red_stained_fence_gate":"Redish Staned Fence dor","block.pyrite.red_stained_planks":"Redish Staned Planks","block.pyrite.red_stained_crafting_table":"Redish Stainedly Krafting Tabal","block.pyrite.red_stained_ladder":"Redish Staned Ladr","block.pyrite.red_stained_door":"Redish Stainedly Dor","block.pyrite.red_stained_sign":"Redish Staned Sign","block.pyrite.red_stained_hanging_sign":"Redish Staned Hanging Sign","block.pyrite.red_stained_trapdoor":"Redish Staned Trapdoor","block.pyrite.red_bricks":"Redish Bricks","block.pyrite.red_brick_slab":"Redish Brick half blok","block.pyrite.red_brick_stairs":"Redish Brick Stairz","block.pyrite.red_brick_wall":"Redish Brick Wal","block.pyrite.red_brick_wall_gate":"Redish Brick Wal dor","block.pyrite.red_terracotta_bricks":"Redish Teracottah Bricks","block.pyrite.red_terracotta_brick_slab":"Redish Teracottah Brick half blok","block.pyrite.red_terracotta_brick_stairs":"Redish Teracottah Brick Stairz","block.pyrite.red_terracotta_brick_wall":"Redish Teracottah Brick Wal","block.pyrite.red_terracotta_brick_wall_gate":"Redish Teracottah Brick Wal dor","block.pyrite.red_lamp":"Redish lapm","block.pyrite.red_torch":"Redish Torch","block.pyrite.red_torch_lever":"Redish Torch Lever","block.pyrite.red_framed_glass":"Redish Framed Glazz","block.pyrite.red_framed_glass_pane":"Redish Framed Glazz Payn","block.pyrite.black_stained_button":"Black Staned Button","block.pyrite.black_stained_stairs":"Black Stainedly Stairz","block.pyrite.black_stained_slab":"Black Stainedly half blok","block.pyrite.black_stained_pressure_plate":"Black Staned prueusure platt","block.pyrite.black_stained_fence":"Black Staned Fence","block.pyrite.black_stained_fence_gate":"Black Stainedly Fence dor","block.pyrite.black_stained_planks":"Black Staned Planks","block.pyrite.black_stained_crafting_table":"Black Stainedly Krafting Tabal","block.pyrite.black_stained_ladder":"Black Staned Ladr","block.pyrite.black_stained_door":"Black Stainedly Dor","block.pyrite.black_stained_sign":"Black Stainedly Sign","block.pyrite.black_stained_hanging_sign":"Black Staned Hanging Sign","block.pyrite.black_stained_trapdoor":"Black Staned Trapdoor","block.pyrite.black_bricks":"Black Bricks","block.pyrite.black_brick_slab":"Black Brick Sleb","block.pyrite.black_brick_stairs":"Black Brick Stairz","block.pyrite.black_brick_wall":"Black Brick Wal","block.pyrite.black_brick_wall_gate":"Black Brick Wal dor","block.pyrite.black_terracotta_bricks":"Black Teracottah Bricks","block.pyrite.black_terracotta_brick_slab":"Black Teracottah Brick Sleb","block.pyrite.black_terracotta_brick_stairs":"Black Teracottah Brick Stairz","block.pyrite.black_terracotta_brick_wall":"Black Teracottah Brick Wal","block.pyrite.black_terracotta_brick_wall_gate":"Black Teracottah Brick Wal dor","block.pyrite.black_lamp":"Black lapm","block.pyrite.black_torch":"Black Torch","block.pyrite.black_torch_lever":"Black Torch Lever","block.pyrite.black_framed_glass":"Black Framed Glazz","block.pyrite.black_framed_glass_pane":"Black Framed Glazz Payn","block.pyrite.glow_stained_button":"Glow Staned Button","block.pyrite.glow_stained_stairs":"Glow Staned Stairz","block.pyrite.glow_stained_slab":"Glow Staned Sleb","block.pyrite.glow_stained_pressure_plate":"Glow Stainedly prueusure platt","block.pyrite.glow_stained_fence":"Glow Stainedly Fence","block.pyrite.glow_stained_fence_gate":"Glow Staned Fence dor","block.pyrite.glow_stained_planks":"Glow Stainedly Planks","block.pyrite.glow_stained_crafting_table":"Glow Staned Krafting Tabal","block.pyrite.glow_stained_ladder":"Glow Stainedly Ladr","block.pyrite.glow_stained_door":"Glow Stainedly Dor","block.pyrite.glow_stained_sign":"Glow Stainedly Sign","block.pyrite.glow_stained_hanging_sign":"Glow Stainedly Hanging Sign","block.pyrite.glow_stained_trapdoor":"Glow Stainedly Trapdoor","block.pyrite.glow_bricks":"Glow Bricks","block.pyrite.glow_brick_slab":"Glow Brick Sleb","block.pyrite.glow_brick_stairs":"Glow Brick Stairz","block.pyrite.glow_brick_wall":"Glow Brick Wal","block.pyrite.glow_brick_wall_gate":"Glow Brick Wal dor","block.pyrite.glow_terracotta_bricks":"Glow Teracottah Bricks","block.pyrite.glow_terracotta_brick_slab":"Glow Teracottah Brick Sleb","block.pyrite.glow_terracotta_brick_stairs":"Glow Teracottah Brick Stairz","block.pyrite.glow_terracotta_brick_wall":"Glow Teracottah Brick Wal","block.pyrite.glow_terracotta_brick_wall_gate":"Glow Teracottah Brick Wal dor","block.pyrite.glow_lamp":"Glow lapm","block.pyrite.glow_torch":"Glow Torch","block.pyrite.glow_torch_lever":"Glow Torch Lever","block.pyrite.glow_framed_glass":"Glow Framed Glazz","block.pyrite.glow_framed_glass_pane":"Glow Framed Glazz Payn","block.pyrite.dragon_stained_button":"Dragon Staned Button","block.pyrite.dragon_stained_stairs":"Dragon Stainedly Stairz","block.pyrite.dragon_stained_slab":"Dragon Stainedly half blok","block.pyrite.dragon_stained_pressure_plate":"Dragon Staned prueusure platt","block.pyrite.dragon_stained_fence":"Dragon Stainedly Fence","block.pyrite.dragon_stained_fence_gate":"Dragon Staned Fence dor","block.pyrite.dragon_stained_planks":"Dragon Stainedly Planks","block.pyrite.dragon_stained_crafting_table":"Dragon Staned Krafting Tabal","block.pyrite.dragon_stained_ladder":"Dragon Staned Ladr","block.pyrite.dragon_stained_door":"Dragon Stainedly Dor","block.pyrite.dragon_stained_sign":"Dragon Staned Sign","block.pyrite.dragon_stained_hanging_sign":"Dragon Stainedly Hanging Sign","block.pyrite.dragon_stained_trapdoor":"Dragon Staned Trapdoor","block.pyrite.dragon_bricks":"Dragon Bricks","block.pyrite.dragon_brick_slab":"Dragon Brick half blok","block.pyrite.dragon_brick_stairs":"Dragon Brick Stairz","block.pyrite.dragon_brick_wall":"Dragon Brick Wal","block.pyrite.dragon_brick_wall_gate":"Dragon Brick Wal dor","block.pyrite.dragon_terracotta_bricks":"Dragon Teracottah Bricks","block.pyrite.dragon_terracotta_brick_slab":"Dragon Teracottah Brick half blok","block.pyrite.dragon_terracotta_brick_stairs":"Dragon Teracottah Brick Stairz","block.pyrite.dragon_terracotta_brick_wall":"Dragon Teracottah Brick Wal","block.pyrite.dragon_terracotta_brick_wall_gate":"Dragon Teracottah Brick Wal dor","block.pyrite.dragon_lamp":"Dragon lapm","block.pyrite.dragon_torch":"Dragon Torch","block.pyrite.dragon_torch_lever":"Dragon Torch Lever","block.pyrite.dragon_framed_glass":"Dragon Framed Glazz","block.pyrite.dragon_framed_glass_pane":"Dragon Framed Glazz Payn","block.pyrite.star_stained_button":"Asterisk Stainedly Button","block.pyrite.star_stained_stairs":"Asterisk Stainedly Stairz","block.pyrite.star_stained_slab":"Asterisk Stainedly Sleb","block.pyrite.star_stained_pressure_plate":"Asterisk Staned prueusure platt","block.pyrite.star_stained_fence":"Asterisk Staned Fence","block.pyrite.star_stained_fence_gate":"Asterisk Stainedly Fence dor","block.pyrite.star_stained_planks":"Asterisk Stainedly Planks","block.pyrite.star_stained_crafting_table":"Asterisk Staned Krafting Tabal","block.pyrite.star_stained_ladder":"Asterisk Staned Ladr","block.pyrite.star_stained_door":"Asterisk Staned Dor","block.pyrite.star_stained_sign":"Asterisk Stainedly Sign","block.pyrite.star_stained_hanging_sign":"Asterisk Stainedly Hanging Sign","block.pyrite.star_stained_trapdoor":"Asterisk Staned Trapdoor","block.pyrite.star_bricks":"Asterisk Bricks","block.pyrite.star_brick_slab":"Asterisk Brick Sleb","block.pyrite.star_brick_stairs":"Asterisk Brick Stairz","block.pyrite.star_brick_wall":"Asterisk Brick Wal","block.pyrite.star_brick_wall_gate":"Asterisk Brick Wal dor","block.pyrite.star_terracotta_bricks":"Asterisk Teracottah Bricks","block.pyrite.star_terracotta_brick_slab":"Asterisk Teracottah Brick half blok","block.pyrite.star_terracotta_brick_stairs":"Asterisk Teracottah Brick Stairz","block.pyrite.star_terracotta_brick_wall":"Asterisk Teracottah Brick Wal","block.pyrite.star_terracotta_brick_wall_gate":"Asterisk Teracottah Brick Wal dor","block.pyrite.star_lamp":"Asterisk lapm","block.pyrite.star_torch":"Asterisk Torch","block.pyrite.star_torch_lever":"Asterisk Torch Lever","block.pyrite.star_framed_glass":"Asterisk Framed Glazz","block.pyrite.star_framed_glass_pane":"Asterisk Framed Glazz Payn","block.pyrite.honey_stained_button":"Honey Staned Button","block.pyrite.honey_stained_stairs":"Honey Stainedly Stairz","block.pyrite.honey_stained_slab":"Honey Stainedly half blok","block.pyrite.honey_stained_pressure_plate":"Honey Stainedly prueusure platt","block.pyrite.honey_stained_fence":"Honey Stainedly Fence","block.pyrite.honey_stained_fence_gate":"Honey Staned Fence dor","block.pyrite.honey_stained_planks":"Honey Staned Planks","block.pyrite.honey_stained_crafting_table":"Honey Stainedly Krafting Tabal","block.pyrite.honey_stained_ladder":"Honey Stainedly Ladr","block.pyrite.honey_stained_door":"Honey Stainedly Dor","block.pyrite.honey_stained_sign":"Honey Staned Sign","block.pyrite.honey_stained_hanging_sign":"Honey Staned Hanging Sign","block.pyrite.honey_stained_trapdoor":"Honey Staned Trapdoor","block.pyrite.honey_bricks":"Honey Bricks","block.pyrite.honey_brick_slab":"Honey Brick Sleb","block.pyrite.honey_brick_stairs":"Honey Brick Stairz","block.pyrite.honey_brick_wall":"Honey Brick Wal","block.pyrite.honey_brick_wall_gate":"Honey Brick Wal dor","block.pyrite.honey_terracotta_bricks":"Honey Teracottah Bricks","block.pyrite.honey_terracotta_brick_slab":"Honey Teracottah Brick Sleb","block.pyrite.honey_terracotta_brick_stairs":"Honey Teracottah Brick Stairz","block.pyrite.honey_terracotta_brick_wall":"Honey Teracottah Brick Wal","block.pyrite.honey_terracotta_brick_wall_gate":"Honey Teracottah Brick Wal dor","block.pyrite.honey_lamp":"Honey lapm","block.pyrite.honey_torch":"Honey Torch","block.pyrite.honey_torch_lever":"Honey Torch Lever","block.pyrite.honey_framed_glass":"Honey Framed Glazz","block.pyrite.honey_framed_glass_pane":"Honey Framed Glazz Payn","block.pyrite.nostalgia_stained_button":"OLD Stainedly Button","block.pyrite.nostalgia_stained_stairs":"OLD Staned Stairz","block.pyrite.nostalgia_stained_slab":"OLD Staned Sleb","block.pyrite.nostalgia_stained_pressure_plate":"OLD Staned prueusure platt","block.pyrite.nostalgia_stained_fence":"OLD Stainedly Fence","block.pyrite.nostalgia_stained_fence_gate":"OLD Stainedly Fence dor","block.pyrite.nostalgia_stained_planks":"OLD Stainedly Planks","block.pyrite.nostalgia_stained_crafting_table":"OLD Stainedly Krafting Tabal","block.pyrite.nostalgia_stained_ladder":"OLD Staned Ladr","block.pyrite.nostalgia_stained_door":"OLD Stainedly Dor","block.pyrite.nostalgia_stained_sign":"OLD Staned Sign","block.pyrite.nostalgia_stained_hanging_sign":"OLD Stainedly Hanging Sign","block.pyrite.nostalgia_stained_trapdoor":"OLD Staned Trapdoor","block.pyrite.nostalgia_bricks":"OLD Bricks","block.pyrite.nostalgia_brick_slab":"OLD Brick half blok","block.pyrite.nostalgia_brick_stairs":"OLD Brick Stairz","block.pyrite.nostalgia_brick_wall":"OLD Brick Wal","block.pyrite.nostalgia_brick_wall_gate":"OLD Brick Wal dor","block.pyrite.nostalgia_terracotta_bricks":"OLD Teracottah Bricks","block.pyrite.nostalgia_terracotta_brick_slab":"OLD Teracottah Brick Sleb","block.pyrite.nostalgia_terracotta_brick_stairs":"OLD Teracottah Brick Stairz","block.pyrite.nostalgia_terracotta_brick_wall":"OLD Teracottah Brick Wal","block.pyrite.nostalgia_terracotta_brick_wall_gate":"OLD Teracottah Brick Wal dor","block.pyrite.nostalgia_lamp":"OLD lapm","block.pyrite.nostalgia_torch":"OLD Torch","block.pyrite.nostalgia_torch_lever":"OLD Torch Lever","block.pyrite.nostalgia_framed_glass":"OLD Framed Glazz","block.pyrite.nostalgia_framed_glass_pane":"OLD Framed Glazz Payn","block.pyrite.rose_stained_button":"Rose Stainedly Button","block.pyrite.rose_stained_stairs":"Rose Staned Stairz","block.pyrite.rose_stained_slab":"Rose Staned half blok","block.pyrite.rose_stained_pressure_plate":"Rose Stainedly prueusure platt","block.pyrite.rose_stained_fence":"Rose Stainedly Fence","block.pyrite.rose_stained_fence_gate":"Rose Stainedly Fence dor","block.pyrite.rose_stained_planks":"Rose Stainedly Planks","block.pyrite.rose_stained_crafting_table":"Rose Staned Krafting Tabal","block.pyrite.rose_stained_ladder":"Rose Stainedly Ladr","block.pyrite.rose_stained_door":"Rose Staned Dor","block.pyrite.rose_stained_sign":"Rose Staned Sign","block.pyrite.rose_stained_hanging_sign":"Rose Staned Hanging Sign","block.pyrite.rose_stained_trapdoor":"Rose Staned Trapdoor","block.pyrite.rose_bricks":"Rose Bricks","block.pyrite.rose_brick_slab":"Rose Brick Sleb","block.pyrite.rose_brick_stairs":"Rose Brick Stairz","block.pyrite.rose_brick_wall":"Rose Brick Wal","block.pyrite.rose_brick_wall_gate":"Rose Brick Wal dor","block.pyrite.rose_terracotta_bricks":"Rose Teracottah Bricks","block.pyrite.rose_terracotta_brick_slab":"Rose Teracottah Brick Sleb","block.pyrite.rose_terracotta_brick_stairs":"Rose Teracottah Brick Stairz","block.pyrite.rose_terracotta_brick_wall":"Rose Teracottah Brick Wal","block.pyrite.rose_terracotta_brick_wall_gate":"Rose Teracottah Brick Wal dor","block.pyrite.rose_lamp":"Rose lapm","block.pyrite.rose_torch":"Rose Torch","block.pyrite.rose_torch_lever":"Rose Torch Lever","block.pyrite.rose_framed_glass":"Rose Framed Glazz","block.pyrite.rose_framed_glass_pane":"Rose Framed Glazz Payn","block.pyrite.poisonous_stained_button":"yucky Staned Button","block.pyrite.poisonous_stained_stairs":"yucky Stainedly Stairz","block.pyrite.poisonous_stained_slab":"yucky Staned half blok","block.pyrite.poisonous_stained_pressure_plate":"yucky Stainedly prueusure platt","block.pyrite.poisonous_stained_fence":"yucky Stainedly Fence","block.pyrite.poisonous_stained_fence_gate":"yucky Staned Fence dor","block.pyrite.poisonous_stained_planks":"yucky Stainedly Planks","block.pyrite.poisonous_stained_crafting_table":"yucky Stainedly Krafting Tabal","block.pyrite.poisonous_stained_ladder":"yucky Staned Ladr","block.pyrite.poisonous_stained_door":"yucky Stainedly Dor","block.pyrite.poisonous_stained_sign":"yucky Staned Sign","block.pyrite.poisonous_stained_hanging_sign":"yucky Staned Hanging Sign","block.pyrite.poisonous_stained_trapdoor":"yucky Stainedly Trapdoor","block.pyrite.poisonous_bricks":"yucky Bricks","block.pyrite.poisonous_brick_slab":"yucky Brick Sleb","block.pyrite.poisonous_brick_stairs":"yucky Brick Stairz","block.pyrite.poisonous_brick_wall":"yucky Brick Wal","block.pyrite.poisonous_brick_wall_gate":"yucky Brick Wal dor","block.pyrite.poisonous_terracotta_bricks":"yucky Teracottah Bricks","block.pyrite.poisonous_terracotta_brick_slab":"yucky Teracottah Brick Sleb","block.pyrite.poisonous_terracotta_brick_stairs":"yucky Teracottah Brick Stairz","block.pyrite.poisonous_terracotta_brick_wall":"yucky Teracottah Brick Wal","block.pyrite.poisonous_terracotta_brick_wall_gate":"yucky Teracottah Brick Wal dor","block.pyrite.poisonous_lamp":"yucky lapm","block.pyrite.poisonous_torch":"yucky Torch","block.pyrite.poisonous_torch_lever":"yucky Torch Lever","block.pyrite.poisonous_framed_glass":"yucky Framed Glazz","block.pyrite.poisonous_framed_glass_pane":"yucky Framed Glazz Payn","block.pyrite.spruce_crafting_table":"Spruz Krafting Tabal","block.pyrite.birch_crafting_table":"Berch Krafting Tabal","block.pyrite.jungle_crafting_table":"Junglz Krafting Tabal","block.pyrite.acacia_crafting_table":"Acacia Krafting Tabal","block.pyrite.dark_oak_crafting_table":"Dark Oac Krafting Tabal","block.pyrite.mangrove_crafting_table":"mengruv Krafting Tabal","block.pyrite.cherry_crafting_table":"Sakura Krafting Tabal","block.pyrite.bamboo_crafting_table":"Gren Krafting Tabal","block.pyrite.crimson_crafting_table":"Crimzn Krafting Tabal","block.pyrite.warped_crafting_table":"Warpt Krafting Tabal","block.pyrite.skyroot_crafting_table":"Skyroot Krafting Tabal","block.pyrite.holystone_wall_gate":"Holystone Wal dor","block.pyrite.mossy_holystone_wall_gate":"Mossy Holystone Wal dor","block.pyrite.holystone_brick_wall_gate":"Holystone Brick Wal dor","block.pyrite.icestone_wall_gate":"Icestone Wal dor","block.pyrite.aerogel_wall_gate":"Aerogel Wal dor","block.pyrite.carved_wall_gate":"Carved Wal dor","block.pyrite.angelic_wall_gate":"Angelic Wal dor","block.pyrite.hellfire_wall_gate":"Hellfire Wal dor","block.pyrite.red_mushroom_button":"Redish Mushroom Button","block.pyrite.red_mushroom_stairs":"Redish Mushroom Stairz","block.pyrite.red_mushroom_slab":"Redish Mushroom Sleb","block.pyrite.red_mushroom_pressure_plate":"Redish Mushroom prueusure platt","block.pyrite.red_mushroom_fence":"Redish Mushroom Fence","block.pyrite.red_mushroom_fence_gate":"Redish Mushroom Fence dor","block.pyrite.red_mushroom_planks":"Redish Mushroom Planks","block.pyrite.red_mushroom_crafting_table":"Redish Mushroom Krafting Tabal","block.pyrite.red_mushroom_ladder":"Redish Mushroom Ladr","block.pyrite.red_mushroom_door":"Redish Mushroom Dor","block.pyrite.red_mushroom_sign":"Redish Mushroom Sign","block.pyrite.red_mushroom_hanging_sign":"Redish Mushroom Hanging Sign","block.pyrite.red_mushroom_trapdoor":"Redish Mushroom Trapdoor","block.pyrite.red_mushroom_stem":"Redish Mushroom Stem","block.pyrite.brown_mushroom_button":"Brownish Mushroom Button","block.pyrite.brown_mushroom_stairs":"Brownish Mushroom Stairz","block.pyrite.brown_mushroom_slab":"Brownish Mushroom half blok","block.pyrite.brown_mushroom_pressure_plate":"Brownish Mushroom prueusure platt","block.pyrite.brown_mushroom_fence":"Brownish Mushroom Fence","block.pyrite.brown_mushroom_fence_gate":"Brownish Mushroom Fence dor","block.pyrite.brown_mushroom_planks":"Brownish Mushroom Planks","block.pyrite.brown_mushroom_crafting_table":"Brownish Mushroom Krafting Tabal","block.pyrite.brown_mushroom_ladder":"Brownish Mushroom Ladr","block.pyrite.brown_mushroom_door":"Brownish Mushroom Dor","block.pyrite.brown_mushroom_sign":"Brownish Mushroom Sign","block.pyrite.brown_mushroom_hanging_sign":"Brownish Mushroom Hanging Sign","block.pyrite.brown_mushroom_trapdoor":"Brownish Mushroom Trapdoor","block.pyrite.brown_mushroom_stem":"Brownish Mushroom Stem","block.pyrite.cobblestone_bricks":"Cooblestoneh Bricks","block.pyrite.cobblestone_brick_slab":"Cooblestoneh Brick half blok","block.pyrite.cobblestone_brick_stairs":"Cooblestoneh Brick Stairz","block.pyrite.cobblestone_brick_wall":"Cooblestoneh Brick Wal","block.pyrite.cobblestone_brick_wall_gate":"Cooblestoneh Brick Wal dor","block.pyrite.mossy_cobblestone_bricks":"DURTY COBULSTOWN Bricks","block.pyrite.mossy_cobblestone_brick_slab":"DURTY COBULSTOWN Brick Sleb","block.pyrite.mossy_cobblestone_brick_stairs":"DURTY COBULSTOWN Brick Stairz","block.pyrite.mossy_cobblestone_brick_wall":"DURTY COBULSTOWN Brick Wal","block.pyrite.mossy_cobblestone_brick_wall_gate":"DURTY COBULSTOWN Brick Wal dor","block.pyrite.smooth_stone_bricks":"Smooth Stone Bricks","block.pyrite.smooth_stone_brick_slab":"Smooth Stone Brick half blok","block.pyrite.smooth_stone_brick_stairs":"Smooth Stone Brick Stairz","block.pyrite.smooth_stone_brick_wall":"Smooth Stone Brick Wal","block.pyrite.smooth_stone_brick_wall_gate":"Smooth Stone Brick Wal dor","block.pyrite.nostalgia_cobblestone":"OLD Cooblestoneh","block.pyrite.nostalgia_mossy_cobblestone":"OLD Mossy Cooblestoneh","block.pyrite.nostalgia_netherrack":"OLD Netherrack","block.pyrite.nostalgia_gravel":"OLD Gravel","block.pyrite.nostalgia_grass_block":"OLD Gras Blak","block.pyrite.framed_glass":"Framed Glazz","block.pyrite.framed_glass_pane":"Framed Glazz Payn","block.pyrite.nostalgia_grass_turf":"OLD Gras Turf","block.pyrite.nostalgia_grass_slab":"OLD Gras Sleb","block.pyrite.nostalgia_grass_stairs":"OLD Gras Stairz","block.pyrite.nostalgia_grass_carpet":"OLD Gras Cat Rug","block.pyrite.podzol_turf":"Durtee durt Turf","block.pyrite.podzol_slab":"Durtee durt half blok","block.pyrite.podzol_stairs":"Durtee durt Stairz","block.pyrite.podzol_carpet":"Durtee durt Cat Rug","block.pyrite.grass_turf":"Gras Turf","block.pyrite.grass_slab":"Gras half blok","block.pyrite.grass_stairs":"Gras Stairz","block.pyrite.grass_carpet":"Gras Cat Rug","block.pyrite.mycelium_turf":"miceliwm Turf","block.pyrite.mycelium_slab":"miceliwm half blok","block.pyrite.mycelium_stairs":"miceliwm Stairz","block.pyrite.mycelium_carpet":"miceliwm Cat Rug","block.pyrite.path_turf":"Durt roud Turf","block.pyrite.path_slab":"Durt roud Sleb","block.pyrite.path_stairs":"Durt roud Stairz","block.pyrite.path_carpet":"Durt roud Cat Rug","block.pyrite.white_concrete_slab":"White Concrete Sleb","block.pyrite.white_concrete_stairs":"White Concrete Stairz","block.pyrite.orange_concrete_slab":"Ornge Concrete Sleb","block.pyrite.orange_concrete_stairs":"Ornge Concrete Stairz","block.pyrite.magenta_concrete_slab":"Majenta Concrete half blok","block.pyrite.magenta_concrete_stairs":"Majenta Concrete Stairz","block.pyrite.light_blue_concrete_slab":"Lite Bloo Concrete Sleb","block.pyrite.light_blue_concrete_stairs":"Lite Bloo Concrete Stairz","block.pyrite.yellow_concrete_slab":"Yello Concrete half blok","block.pyrite.yellow_concrete_stairs":"Yello Concrete Stairz","block.pyrite.lime_concrete_slab":"Limd Concrete Sleb","block.pyrite.lime_concrete_stairs":"Limd Concrete Stairz","block.pyrite.pink_concrete_slab":"Pinky Concrete half blok","block.pyrite.pink_concrete_stairs":"Pinky Concrete Stairz","block.pyrite.gray_concrete_slab":"Gray Concrete Sleb","block.pyrite.gray_concrete_stairs":"Gray Concrete Stairz","block.pyrite.light_gray_concrete_slab":"Lite Gray Concrete half blok","block.pyrite.light_gray_concrete_stairs":"Lite Gray Concrete Stairz","block.pyrite.cyan_concrete_slab":"Sighun Concrete half blok","block.pyrite.cyan_concrete_stairs":"Sighun Concrete Stairz","block.pyrite.purple_concrete_slab":"Parpal Concrete Sleb","block.pyrite.purple_concrete_stairs":"Parpal Concrete Stairz","block.pyrite.blue_concrete_slab":"Bloo Concrete Sleb","block.pyrite.blue_concrete_stairs":"Bloo Concrete Stairz","block.pyrite.brown_concrete_slab":"Brownish Concrete half blok","block.pyrite.brown_concrete_stairs":"Brownish Concrete Stairz","block.pyrite.green_concrete_slab":"Greenish Concrete Sleb","block.pyrite.green_concrete_stairs":"Greenish Concrete Stairz","block.pyrite.red_concrete_slab":"Redish Concrete half blok","block.pyrite.red_concrete_stairs":"Redish Concrete Stairz","block.pyrite.black_concrete_slab":"Black Concrete Sleb","block.pyrite.black_concrete_stairs":"Black Concrete Stairz","item.pyrite.glow_dye":"Glow Dye","block.pyrite.glow_wool":"Glow Fur Bluk","block.pyrite.glow_carpet":"Glow Cat Rug","block.pyrite.glow_terracotta":"Glow Teracottah","block.pyrite.glow_concrete":"Glow Concrete","block.pyrite.glow_concrete_powder":"Glow Concrete Powder","block.pyrite.glow_concrete_slab":"Glow Concrete half blok","block.pyrite.glow_concrete_stairs":"Glow Concrete Stairz","item.pyrite.dragon_dye":"Dragon Dye","block.pyrite.dragon_wool":"Dragon Fur Bluk","block.pyrite.dragon_carpet":"Dragon Cat Rug","block.pyrite.dragon_terracotta":"Dragon Teracottah","block.pyrite.dragon_concrete":"Dragon Concrete","block.pyrite.dragon_concrete_powder":"Dragon Concrete Powder","block.pyrite.dragon_concrete_slab":"Dragon Concrete Sleb","block.pyrite.dragon_concrete_stairs":"Dragon Concrete Stairz","item.pyrite.star_dye":"Asterisk Dye","block.pyrite.star_wool":"Asterisk Fur Bluk","block.pyrite.star_carpet":"Asterisk Cat Rug","block.pyrite.star_terracotta":"Asterisk Teracottah","block.pyrite.star_concrete":"Asterisk Concrete","block.pyrite.star_concrete_powder":"Asterisk Concrete Powder","block.pyrite.star_concrete_slab":"Asterisk Concrete Sleb","block.pyrite.star_concrete_stairs":"Asterisk Concrete Stairz","item.pyrite.honey_dye":"Honey Dye","block.pyrite.honey_wool":"Honey Fur Bluk","block.pyrite.honey_carpet":"Honey Cat Rug","block.pyrite.honey_terracotta":"Honey Teracottah","block.pyrite.honey_concrete":"Honey Concrete","block.pyrite.honey_concrete_powder":"Honey Concrete Powder","block.pyrite.honey_concrete_slab":"Honey Concrete Sleb","block.pyrite.honey_concrete_stairs":"Honey Concrete Stairz","item.pyrite.nostalgia_dye":"OLD Dye","block.pyrite.nostalgia_wool":"OLD Fur Bluk","block.pyrite.nostalgia_carpet":"OLD Cat Rug","block.pyrite.nostalgia_terracotta":"OLD Teracottah","block.pyrite.nostalgia_concrete":"OLD Concrete","block.pyrite.nostalgia_concrete_powder":"OLD Concrete Powder","block.pyrite.nostalgia_concrete_slab":"OLD Concrete Sleb","block.pyrite.nostalgia_concrete_stairs":"OLD Concrete Stairz","item.pyrite.rose_dye":"Rose Dye","block.pyrite.rose_wool":"Rose Fur Bluk","block.pyrite.rose_carpet":"Rose Cat Rug","block.pyrite.rose_terracotta":"Rose Teracottah","block.pyrite.rose_concrete":"Rose Concrete","block.pyrite.rose_concrete_powder":"Rose Concrete Powder","block.pyrite.rose_concrete_slab":"Rose Concrete half blok","block.pyrite.rose_concrete_stairs":"Rose Concrete Stairz","item.pyrite.poisonous_dye":"yucky Dye","block.pyrite.poisonous_wool":"yucky Fur Bluk","block.pyrite.poisonous_carpet":"yucky Cat Rug","block.pyrite.poisonous_terracotta":"yucky Teracottah","block.pyrite.poisonous_concrete":"yucky Concrete","block.pyrite.poisonous_concrete_powder":"yucky Concrete Powder","block.pyrite.poisonous_concrete_slab":"yucky Concrete Sleb","block.pyrite.poisonous_concrete_stairs":"yucky Concrete Stairz","block.pyrite.glowstone_lamp":"Glowstone lapm","block.pyrite.lit_redstone_lamp":"Bright Redstone lapm","block.pyrite.nostalgia_glowing_obsidian":"OLD Glowing Obsidian","block.pyrite.locked_chest":"Locked Chest","block.pyrite.charred_nether_bricks":"hot!!! Brik from Nether","block.pyrite.charred_nether_brick_slab":"hot!!! Nether Brick Sleb","block.pyrite.charred_nether_brick_stairs":"hot!!! Nether Brick Stairz","block.pyrite.charred_nether_brick_wall":"hot!!! Nether Brick Wal","block.pyrite.charred_nether_brick_wall_gate":"hot!!! Nether Brick Wal dor","block.pyrite.blue_nether_bricks":"Bloo Brik from Nether","block.pyrite.blue_nether_brick_slab":"Bloo Nether Brick Sleb","block.pyrite.blue_nether_brick_stairs":"Bloo Nether Brick Stairz","block.pyrite.blue_nether_brick_wall":"Bloo Nether Brick Wal","block.pyrite.blue_nether_brick_wall_gate":"Bloo Nether Brick Wal dor","block.pyrite.cobblestone_wall_gate":"Cooblestoneh Wal dor","block.pyrite.mossy_cobblestone_wall_gate":"DURTY COBULSTOWN Wal dor","block.pyrite.stone_brick_wall_gate":"Stone Brick Wal dor","block.pyrite.mossy_stone_brick_wall_gate":"Mossy Stone Brick Wal dor","block.pyrite.granite_wall_gate":"Granite Wal dor","block.pyrite.diorite_wall_gate":"Diorite Wal dor","block.pyrite.andesite_wall_gate":"Andesite Wal dor","block.pyrite.cobbled_deepslate_wall_gate":"Cobbled dark ston Wal dor","block.pyrite.polished_deepslate_wall_gate":"Polished dark ston Wal dor","block.pyrite.deepslate_brick_wall_gate":"dark ston Brick Wal dor","block.pyrite.deepslate_tile_wall_gate":"dark ston Tile Wal dor","block.pyrite.brick_wall_gate":"Brick Wal dor","block.pyrite.mud_brick_wall_gate":"Mud Brick Wal dor","block.pyrite.sandstone_wall_gate":"Sandstone Wal dor","block.pyrite.red_sandstone_wall_gate":"Redish Sandstone Wal dor","block.pyrite.prismarine_wall_gate":"Prismarine Wal dor","block.pyrite.nether_brick_wall_gate":"Nether Brick Wal dor","block.pyrite.red_nether_brick_wall_gate":"Redish Nether Brick Wal dor","block.pyrite.blackstone_wall_gate":"Blackstone Wal dor","block.pyrite.polished_blackstone_wall_gate":"Polished Blackstone Wal dor","block.pyrite.polished_blackstone_brick_wall_gate":"Polished Blackstone Brick Wal dor","block.pyrite.end_stone_brick_wall_gate":"End Stone Brick Wal dor","block.pyrite.cut_iron":"1000° kniv vs Irony","block.pyrite.cut_iron_slab":"1000° kniv vs Irony Sleb","block.pyrite.cut_iron_stairs":"1000° kniv vs Irony Stairz","block.pyrite.cut_iron_wall":"1000° kniv vs Irony Wal","block.pyrite.cut_iron_wall_gate":"1000° kniv vs Irony Wal dor","block.pyrite.smooth_iron":"Smooth Irony","block.pyrite.smooth_iron_slab":"Smooth Irony Sleb","block.pyrite.smooth_iron_stairs":"Smooth Irony Stairz","block.pyrite.smooth_iron_wall":"Smooth Irony Wal","block.pyrite.smooth_iron_wall_gate":"Smooth Irony Wal dor","block.pyrite.iron_bricks":"Irony Bricks","block.pyrite.iron_pillar":"Irony piler","block.pyrite.chiseled_iron_block":"Chizald Irony Blak","block.pyrite.nostalgia_iron_block":"OLD Irony Blak","block.pyrite.iron_button":"Irony Button","block.pyrite.cut_gold":"1000° kniv vs Shiny","block.pyrite.cut_gold_slab":"1000° kniv vs Shiny half blok","block.pyrite.cut_gold_stairs":"1000° kniv vs Shiny Stairz","block.pyrite.cut_gold_wall":"1000° kniv vs Shiny Wal","block.pyrite.cut_gold_wall_gate":"1000° kniv vs Shiny Wal dor","block.pyrite.smooth_gold":"Smooth Shiny","block.pyrite.smooth_gold_slab":"Smooth Shiny Sleb","block.pyrite.smooth_gold_stairs":"Smooth Shiny Stairz","block.pyrite.smooth_gold_wall":"Smooth Shiny Wal","block.pyrite.smooth_gold_wall_gate":"Smooth Shiny Wal dor","block.pyrite.gold_bricks":"Shiny Bricks","block.pyrite.gold_pillar":"Shiny piler","block.pyrite.gold_bars":"Shiny Jeil Bahz","block.pyrite.chiseled_gold_block":"Chizald Shiny Blak","block.pyrite.gold_door":"Shiny Dor","block.pyrite.gold_trapdoor":"Shiny Trapdoor","block.pyrite.nostalgia_gold_block":"OLD Shiny Blak","block.pyrite.gold_button":"Shiny Button","block.pyrite.cut_emerald":"1000° kniv vs Emerald","block.pyrite.cut_emerald_slab":"1000° kniv vs Emmiez half blok","block.pyrite.cut_emerald_stairs":"1000° kniv vs Emmiez Stairz","block.pyrite.cut_emerald_wall":"1000° kniv vs Emmiez Wal","block.pyrite.cut_emerald_wall_gate":"1000° kniv vs Emmiez Wal dor","block.pyrite.smooth_emerald":"Smooth Emerald","block.pyrite.smooth_emerald_slab":"Smooth Emmiez Sleb","block.pyrite.smooth_emerald_stairs":"Smooth Emmiez Stairz","block.pyrite.smooth_emerald_wall":"Smooth Emmiez Wal","block.pyrite.smooth_emerald_wall_gate":"Smooth Emmiez Wal dor","block.pyrite.emerald_bricks":"Emmiez Bricks","block.pyrite.emerald_pillar":"Emmiez piler","block.pyrite.emerald_bars":"Emmiez Jeil Bahz","block.pyrite.chiseled_emerald_block":"Chizald Emmiez Blak","block.pyrite.emerald_door":"Emmiez Dor","block.pyrite.emerald_trapdoor":"Emmiez Trapdoor","block.pyrite.nostalgia_emerald_block":"OLD Emmiez Blak","block.pyrite.emerald_button":"Emmiez Button","block.pyrite.emerald_pressure_plate":"Emmiez prueusure platt","block.pyrite.cut_diamond":"1000° kniv vs Diamond","block.pyrite.cut_diamond_slab":"1000° kniv vs Diamond half blok","block.pyrite.cut_diamond_stairs":"1000° kniv vs Diamond Stairz","block.pyrite.cut_diamond_wall":"1000° kniv vs Diamond Wal","block.pyrite.cut_diamond_wall_gate":"1000° kniv vs Diamond Wal dor","block.pyrite.smooth_diamond":"Smooth Diamond","block.pyrite.smooth_diamond_slab":"Smooth Diamond Sleb","block.pyrite.smooth_diamond_stairs":"Smooth Diamond Stairz","block.pyrite.smooth_diamond_wall":"Smooth Diamond Wal","block.pyrite.smooth_diamond_wall_gate":"Smooth Diamond Wal dor","block.pyrite.diamond_bricks":"Diamond Bricks","block.pyrite.diamond_pillar":"Diamond piler","block.pyrite.diamond_bars":"Diamond Jeil Bahz","block.pyrite.chiseled_diamond_block":"Chizald Diamond Blak","block.pyrite.diamond_door":"Diamond Dor","block.pyrite.diamond_trapdoor":"Diamond Trapdoor","block.pyrite.nostalgia_diamond_block":"OLD Diamond Blak","block.pyrite.diamond_button":"Diamond Button","block.pyrite.diamond_pressure_plate":"Diamond prueusure platt","block.pyrite.cut_netherite":"1000° kniv vs Netherite","block.pyrite.cut_netherite_slab":"1000° kniv vs Netherite Sleb","block.pyrite.cut_netherite_stairs":"1000° kniv vs Netherite Stairz","block.pyrite.cut_netherite_wall":"1000° kniv vs Netherite Wal","block.pyrite.cut_netherite_wall_gate":"1000° kniv vs Netherite Wal dor","block.pyrite.smooth_netherite":"Smooth Netherite","block.pyrite.smooth_netherite_slab":"Smooth Netherite half blok","block.pyrite.smooth_netherite_stairs":"Smooth Netherite Stairz","block.pyrite.smooth_netherite_wall":"Smooth Netherite Wal","block.pyrite.smooth_netherite_wall_gate":"Smooth Netherite Wal dor","block.pyrite.netherite_bricks":"Netherite Bricks","block.pyrite.netherite_pillar":"Netherite piler","block.pyrite.netherite_bars":"Netherite Jeil Bahz","block.pyrite.chiseled_netherite_block":"Chizald Netherite Blak","block.pyrite.netherite_door":"Netherite Dor","block.pyrite.netherite_trapdoor":"Netherite Trapdoor","block.pyrite.nostalgia_netherite_block":"OLD Netherite Blak","block.pyrite.netherite_button":"Netherite Button","block.pyrite.netherite_pressure_plate":"Netherite prueusure platt","block.pyrite.cut_quartz":"1000° kniv vs Kwartz","block.pyrite.cut_quartz_slab":"1000° kniv vs Kwartz half blok","block.pyrite.cut_quartz_stairs":"1000° kniv vs Kwartz Stairz","block.pyrite.cut_quartz_wall":"1000° kniv vs Kwartz Wal","block.pyrite.cut_quartz_wall_gate":"1000° kniv vs Kwartz Wal dor","block.pyrite.smooth_quartz_wall":"Smooth Kwartz Wal","block.pyrite.smooth_quartz_wall_gate":"Smooth Kwartz Wal dor","block.pyrite.quartz_bars":"Kwartz Jeil Bahz","block.pyrite.quartz_door":"Kwartz Dor","block.pyrite.quartz_trapdoor":"Kwartz Trapdoor","block.pyrite.nostalgia_quartz_block":"OLD Kwartz Blak","block.pyrite.quartz_button":"Kwartz Button","block.pyrite.quartz_pressure_plate":"Kwartz prueusure platt","block.pyrite.cut_amethyst":"1000° kniv vs Purpur shinee","block.pyrite.cut_amethyst_slab":"1000° kniv vs Purpur shinee half blok","block.pyrite.cut_amethyst_stairs":"1000° kniv vs Purpur shinee Stairz","block.pyrite.cut_amethyst_wall":"1000° kniv vs Purpur shinee Wal","block.pyrite.cut_amethyst_wall_gate":"1000° kniv vs Purpur shinee Wal dor","block.pyrite.smooth_amethyst":"Smooth Purpur shinee","block.pyrite.smooth_amethyst_slab":"Smooth Purpur shinee Sleb","block.pyrite.smooth_amethyst_stairs":"Smooth Purpur shinee Stairz","block.pyrite.smooth_amethyst_wall":"Smooth Purpur shinee Wal","block.pyrite.smooth_amethyst_wall_gate":"Smooth Purpur shinee Wal dor","block.pyrite.amethyst_bricks":"Purpur shinee Bricks","block.pyrite.amethyst_pillar":"Purpur shinee piler","block.pyrite.amethyst_bars":"Purpur shinee Jeil Bahz","block.pyrite.chiseled_amethyst_block":"Chizald Purpur shinee Blak","block.pyrite.amethyst_door":"Purpur shinee Dor","block.pyrite.amethyst_trapdoor":"Purpur shinee Trapdoor","block.pyrite.nostalgia_amethyst_block":"OLD Purpur shinee Blak","block.pyrite.amethyst_button":"Purpur shinee Button","block.pyrite.amethyst_pressure_plate":"Purpur shinee prueusure platt","block.pyrite.cut_lapis":"1000° kniv vs Lapis","block.pyrite.cut_lapis_slab":"1000° kniv vs Glosy Blu Sleb","block.pyrite.cut_lapis_stairs":"1000° kniv vs Glosy Blu Stairz","block.pyrite.cut_lapis_wall":"1000° kniv vs Glosy Blu Wal","block.pyrite.cut_lapis_wall_gate":"1000° kniv vs Glosy Blu Wal dor","block.pyrite.smooth_lapis":"Smooth Lapis","block.pyrite.smooth_lapis_slab":"Smooth Glosy Blu Sleb","block.pyrite.smooth_lapis_stairs":"Smooth Glosy Blu Stairz","block.pyrite.smooth_lapis_wall":"Smooth Glosy Blu Wal","block.pyrite.smooth_lapis_wall_gate":"Smooth Glosy Blu Wal dor","block.pyrite.lapis_bricks":"Glosy Blu Bricks","block.pyrite.lapis_pillar":"Glosy Blu piler","block.pyrite.lapis_bars":"Glosy Blu Jeil Bahz","block.pyrite.chiseled_lapis_block":"Chizald Glosy Blu Blak","block.pyrite.lapis_door":"Glosy Blu Dor","block.pyrite.lapis_trapdoor":"Glosy Blu Trapdoor","block.pyrite.nostalgia_lapis_block":"OLD Glosy Blu Blak","block.pyrite.lapis_button":"Glosy Blu Button","block.pyrite.lapis_pressure_plate":"Glosy Blu prueusure platt","block.pyrite.cut_redstone":"1000° kniv vs Redstone","block.pyrite.cut_redstone_slab":"1000° kniv vs Redstone Sleb","block.pyrite.cut_redstone_stairs":"1000° kniv vs Redstone Stairz","block.pyrite.cut_redstone_wall":"1000° kniv vs Redstone Wal","block.pyrite.cut_redstone_wall_gate":"1000° kniv vs Redstone Wal dor","block.pyrite.smooth_redstone":"Smooth Redstone","block.pyrite.smooth_redstone_slab":"Smooth Redstone half blok","block.pyrite.smooth_redstone_stairs":"Smooth Redstone Stairz","block.pyrite.smooth_redstone_wall":"Smooth Redstone Wal","block.pyrite.smooth_redstone_wall_gate":"Smooth Redstone Wal dor","block.pyrite.redstone_bricks":"Redstone Bricks","block.pyrite.redstone_pillar":"Redstone piler","block.pyrite.redstone_bars":"Redstone Jeil Bahz","block.pyrite.chiseled_redstone_block":"Chizald Redstone Blak","block.pyrite.redstone_door":"Redstone Dor","block.pyrite.redstone_trapdoor":"Redstone Trapdoor","block.pyrite.nostalgia_redstone_block":"OLD Redstone Blak","block.pyrite.redstone_button":"Redstone Button","block.pyrite.redstone_pressure_plate":"Redstone prueusure platt","block.pyrite.cut_copper_wall":"1000° kniv vs copurr Wal","block.pyrite.cut_copper_wall_gate":"1000° kniv vs copurr Wal dor","block.pyrite.smooth_copper":"Smooth copurr","block.pyrite.smooth_copper_slab":"Smooth cuprr Sleb","block.pyrite.smooth_copper_stairs":"Smooth copurr Stairz","block.pyrite.smooth_copper_wall":"Smooth copurr Wal","block.pyrite.smooth_copper_wall_gate":"Smooth copurr Wal dor","block.pyrite.copper_bricks":"copurr Bricks","block.pyrite.copper_pillar":"cuprr piler","block.pyrite.copper_bars":"cuprr Jeil Bahz","block.pyrite.chiseled_copper_block":"Chizald cuprr Blak","block.pyrite.copper_door":"copurr Dor","block.pyrite.copper_trapdoor":"cuprr Trapdoor","block.pyrite.nostalgia_copper_block":"OLD copurr Blak","block.pyrite.copper_button":"cuprr Button","block.pyrite.copper_pressure_plate":"copurr prueusure platt","block.pyrite.cut_exposed_copper_wall":"1000° kniv vs Seen copurr Wal","block.pyrite.cut_exposed_copper_wall_gate":"1000° kniv vs Seen copurr Wal dor","block.pyrite.smooth_exposed_copper":"Smooth Seen copurr","block.pyrite.smooth_exposed_copper_slab":"Smooth Seen copurr Sleb","block.pyrite.smooth_exposed_copper_stairs":"Smooth Seen cuprr Stairz","block.pyrite.smooth_exposed_copper_wall":"Smooth Seen cuprr Wal","block.pyrite.smooth_exposed_copper_wall_gate":"Smooth Seen copurr Wal dor","block.pyrite.exposed_copper_bricks":"Seen copurr Bricks","block.pyrite.exposed_copper_pillar":"Seen cuprr piler","block.pyrite.exposed_copper_bars":"Seen cuprr Jeil Bahz","block.pyrite.chiseled_exposed_copper_block":"Chizald Seen cuprr Blak","block.pyrite.exposed_copper_door":"Seen cuprr Dor","block.pyrite.exposed_copper_trapdoor":"Seen copurr Trapdoor","block.pyrite.nostalgia_exposed_copper_block":"OLD Seen cuprr Blak","block.pyrite.exposed_copper_button":"Seen cuprr Button","block.pyrite.exposed_copper_pressure_plate":"Seen copurr prueusure platt","block.pyrite.cut_weathered_copper_wall":"1000° kniv vs Yucky old cuprr Wal","block.pyrite.cut_weathered_copper_wall_gate":"1000° kniv vs Yucky old copurr Wal dor","block.pyrite.smooth_weathered_copper":"Smooth Yucky old copurr","block.pyrite.smooth_weathered_copper_slab":"Smooth Yucky old cuprr half blok","block.pyrite.smooth_weathered_copper_stairs":"Smooth Yucky old copurr Stairz","block.pyrite.smooth_weathered_copper_wall":"Smooth Yucky old cuprr Wal","block.pyrite.smooth_weathered_copper_wall_gate":"Smooth Yucky old copurr Wal dor","block.pyrite.weathered_copper_bricks":"Yucky old copurr Bricks","block.pyrite.weathered_copper_pillar":"Yucky old cuprr piler","block.pyrite.weathered_copper_bars":"Yucky old cuprr Jeil Bahz","block.pyrite.chiseled_weathered_copper_block":"Chizald Yucky old cuprr Blak","block.pyrite.weathered_copper_door":"Yucky old cuprr Dor","block.pyrite.weathered_copper_trapdoor":"Yucky old copurr Trapdoor","block.pyrite.nostalgia_weathered_copper_block":"OLD Yucky old cuprr Blak","block.pyrite.weathered_copper_button":"Yucky old cuprr Button","block.pyrite.weathered_copper_pressure_plate":"Yucky old cuprr prueusure platt","block.pyrite.cut_oxidized_copper_wall":"1000° kniv vs Old cuprr Wal","block.pyrite.cut_oxidized_copper_wall_gate":"1000° kniv vs Old cuprr Wal dor","block.pyrite.smooth_oxidized_copper":"Smooth Old cuprr","block.pyrite.smooth_oxidized_copper_slab":"Smooth Old cuprr half blok","block.pyrite.smooth_oxidized_copper_stairs":"Smooth Old copurr Stairz","block.pyrite.smooth_oxidized_copper_wall":"Smooth Old cuprr Wal","block.pyrite.smooth_oxidized_copper_wall_gate":"Smooth Old cuprr Wal dor","block.pyrite.oxidized_copper_bricks":"Old cuprr Bricks","block.pyrite.oxidized_copper_pillar":"Old cuprr piler","block.pyrite.oxidized_copper_bars":"Old copurr Jeil Bahz","block.pyrite.chiseled_oxidized_copper_block":"Chizald Old cuprr Blak","block.pyrite.oxidized_copper_door":"Old cuprr Dor","block.pyrite.oxidized_copper_trapdoor":"Old cuprr Trapdoor","block.pyrite.nostalgia_oxidized_copper_block":"OLD Old copurr Blak","block.pyrite.oxidized_copper_button":"Old cuprr Button","block.pyrite.oxidized_copper_pressure_plate":"Old cuprr prueusure platt","block.pyrite.rose":"Rose","block.pyrite.blue_rose":"Bloo Rose","block.pyrite.orange_rose":"Ornge Rose","block.pyrite.white_rose":"White Rose","block.pyrite.pink_rose":"Pinky Rose","block.pyrite.paeonia":"Paeonia","block.pyrite.pink_daisy":"Pinky Daisy","block.pyrite.buttercup":"Buttercup","block.pyrite.nether_brick_fence_gate":"Nether Brick Fence dor","block.pyrite.switchable_glass":"Switchable Glazz","tag.item.pyrite.wall_gates":"Wal dors","tag.item.pyrite.lamps":"lapms","tag.item.pyrite.bricks":"Bricks","tag.item.pyrite.dyed_bricks":"Dyed Bricks","tag.item.pyrite.stained_framed_glass":"Stainedly Framed Glazz","tag.item.pyrite.fences":"Fences","tag.item.pyrite.wool":"Fur Bluk","tag.item.pyrite.metal_bars":"Metal Jeil Bahz","tag.item.pyrite.planks":"Planks","tag.item.pyrite.brick_stairs":"Brick Stairz","tag.item.pyrite.metal_trapdoors":"Metal Trapdoors","tag.item.pyrite.brick_walls":"Brick Wals","tag.item.pyrite.metal_buttons":"Metal Buttons","tag.item.pyrite.concrete_slabs":"Concrete half bloks","tag.item.pyrite.concrete_stairs":"Concrete Stairz","tag.item.c.dyed.honey":"Dyed Honey","tag.item.c.dyed.glow":"Dyed Glow","tag.item.c.dyed.nostalgia":"Dyed OLD","tag.item.c.dyed.poisonous":"Dyed yucky","tag.item.c.dyed.rose":"Dyed Rose","tag.item.c.dyed.star":"Dyed Asterisk","tag.item.c.dyed.dragon":"Dyed Dragon"} \ No newline at end of file +{ + "itemGroup.pyrite.group": "Pyrite", + "block.pyrite.glowing_obsidian": "brightest hard thing evar!!", + "block.pyrite.torch_lever": "burny flipurr", + "block.pyrite.redstone_torch_lever": "Redstone burny flipurr", + "block.pyrite.soul_torch_lever": "Soul burny flipurr", + "block.pyrite.white_stained_button": "Wite Staned Button", + "block.pyrite.white_stained_stairs": "Wite Stainedly Stairz", + "block.pyrite.white_stained_slab": "Wite Staned half blok", + "block.pyrite.white_stained_pressure_plate": "Wite Stainedly prueusure platt", + "block.pyrite.white_stained_fence": "Wite Stainedly Fence", + "block.pyrite.white_stained_fence_gate": "Wite Staned Fence dor", + "block.pyrite.white_stained_planks": "Wite Stainedly Planks", + "block.pyrite.white_stained_crafting_table": "Wite Stainedly Krafting Tabal", + "block.pyrite.white_stained_ladder": "Wite Stainedly Ladr", + "block.pyrite.white_stained_door": "Wite Stainedly Dor", + "block.pyrite.white_stained_sign": "Wite Stainedly Sign", + "block.pyrite.white_stained_hanging_sign": "Wite Staned Danglin' Sign", + "block.pyrite.white_stained_trapdoor": "Wite Stainedly Trap", + "block.pyrite.white_bricks": "Wite Bricks", + "block.pyrite.white_brick_slab": "Wite Brick half blok", + "block.pyrite.white_brick_stairs": "Wite Brick Stairz", + "block.pyrite.white_brick_wall": "Wite Brick Wal", + "block.pyrite.white_brick_wall_gate": "Wite Brick Wal dor", + "block.pyrite.white_terracotta_bricks": "Wite Teracottah Bricks", + "block.pyrite.white_terracotta_brick_slab": "Wite Teracottah Brick half blok", + "block.pyrite.white_terracotta_brick_stairs": "Wite Teracottah Brick Stairz", + "block.pyrite.white_terracotta_brick_wall": "Wite Teracottah Brick Wal", + "block.pyrite.white_terracotta_brick_wall_gate": "Wite Teracottah Brick Wal dor", + "block.pyrite.white_lamp": "Wite lapm", + "block.pyrite.white_torch": "Wite burny thing", + "block.pyrite.white_torch_lever": "Wite burny flipurr", + "block.pyrite.white_framed_glass": "Wite Framed Glazz", + "block.pyrite.white_framed_glass_pane": "Wite Framed Glazz Payn", + "block.pyrite.orange_stained_button": "Ornge Stainedly Button", + "block.pyrite.orange_stained_stairs": "Ornge Staned Stairz", + "block.pyrite.orange_stained_slab": "Ornge Staned Sleb", + "block.pyrite.orange_stained_pressure_plate": "Ornge Stainedly prueusure platt", + "block.pyrite.orange_stained_fence": "Ornge Stainedly Fence", + "block.pyrite.orange_stained_fence_gate": "Ornge Staned Fence dor", + "block.pyrite.orange_stained_planks": "Ornge Staned Planks", + "block.pyrite.orange_stained_crafting_table": "Ornge Stainedly Krafting Tabal", + "block.pyrite.orange_stained_ladder": "Ornge Staned Ladr", + "block.pyrite.orange_stained_door": "Ornge Staned Dor", + "block.pyrite.orange_stained_sign": "Ornge Stainedly Sign", + "block.pyrite.orange_stained_hanging_sign": "Ornge Stainedly Danglin' Sign", + "block.pyrite.orange_stained_trapdoor": "Ornge Staned Trap", + "block.pyrite.orange_bricks": "Ornge Bricks", + "block.pyrite.orange_brick_slab": "Ornge Brick half blok", + "block.pyrite.orange_brick_stairs": "Ornge Brick Stairz", + "block.pyrite.orange_brick_wall": "Ornge Brick Wal", + "block.pyrite.orange_brick_wall_gate": "Ornge Brick Wal dor", + "block.pyrite.orange_terracotta_bricks": "Ornge Teracottah Bricks", + "block.pyrite.orange_terracotta_brick_slab": "Ornge Teracottah Brick Sleb", + "block.pyrite.orange_terracotta_brick_stairs": "Ornge Teracottah Brick Stairz", + "block.pyrite.orange_terracotta_brick_wall": "Ornge Teracottah Brick Wal", + "block.pyrite.orange_terracotta_brick_wall_gate": "Ornge Teracottah Brick Wal dor", + "block.pyrite.orange_lamp": "Ornge lapm", + "block.pyrite.orange_torch": "Ornge burny thing", + "block.pyrite.orange_torch_lever": "Ornge burny flipurr", + "block.pyrite.orange_framed_glass": "Ornge Framed Glazz", + "block.pyrite.orange_framed_glass_pane": "Ornge Framed Glazz Payn", + "block.pyrite.magenta_stained_button": "Majenta Stainedly Button", + "block.pyrite.magenta_stained_stairs": "Majenta Stainedly Stairz", + "block.pyrite.magenta_stained_slab": "Majenta Stainedly Sleb", + "block.pyrite.magenta_stained_pressure_plate": "Majenta Stainedly prueusure platt", + "block.pyrite.magenta_stained_fence": "Majenta Stainedly Fence", + "block.pyrite.magenta_stained_fence_gate": "Majenta Staned Fence dor", + "block.pyrite.magenta_stained_planks": "Majenta Staned Planks", + "block.pyrite.magenta_stained_crafting_table": "Majenta Stainedly Krafting Tabal", + "block.pyrite.magenta_stained_ladder": "Majenta Stainedly Ladr", + "block.pyrite.magenta_stained_door": "Majenta Stainedly Dor", + "block.pyrite.magenta_stained_sign": "Majenta Staned Sign", + "block.pyrite.magenta_stained_hanging_sign": "Majenta Stainedly Danglin' Sign", + "block.pyrite.magenta_stained_trapdoor": "Majenta Staned Trap", + "block.pyrite.magenta_bricks": "Majenta Bricks", + "block.pyrite.magenta_brick_slab": "Majenta Brick Sleb", + "block.pyrite.magenta_brick_stairs": "Majenta Brick Stairz", + "block.pyrite.magenta_brick_wall": "Majenta Brick Wal", + "block.pyrite.magenta_brick_wall_gate": "Majenta Brick Wal dor", + "block.pyrite.magenta_terracotta_bricks": "Majenta Teracottah Bricks", + "block.pyrite.magenta_terracotta_brick_slab": "Majenta Teracottah Brick Sleb", + "block.pyrite.magenta_terracotta_brick_stairs": "Majenta Teracottah Brick Stairz", + "block.pyrite.magenta_terracotta_brick_wall": "Majenta Teracottah Brick Wal", + "block.pyrite.magenta_terracotta_brick_wall_gate": "Majenta Teracottah Brick Wal dor", + "block.pyrite.magenta_lamp": "Majenta lapm", + "block.pyrite.magenta_torch": "Majenta burny thing", + "block.pyrite.magenta_torch_lever": "Majenta burny flipurr", + "block.pyrite.magenta_framed_glass": "Majenta Framed Glazz", + "block.pyrite.magenta_framed_glass_pane": "Majenta Framed Glazz Payn", + "block.pyrite.light_blue_stained_button": "Lite Bloo Stainedly Button", + "block.pyrite.light_blue_stained_stairs": "Lite Bloo Staned Stairz", + "block.pyrite.light_blue_stained_slab": "Lite Bloo Staned Sleb", + "block.pyrite.light_blue_stained_pressure_plate": "Lite Bloo Stainedly prueusure platt", + "block.pyrite.light_blue_stained_fence": "Lite Bloo Staned Fence", + "block.pyrite.light_blue_stained_fence_gate": "Lite Bloo Stainedly Fence dor", + "block.pyrite.light_blue_stained_planks": "Lite Bloo Staned Planks", + "block.pyrite.light_blue_stained_crafting_table": "Lite Bloo Stainedly Krafting Tabal", + "block.pyrite.light_blue_stained_ladder": "Lite Bloo Staned Ladr", + "block.pyrite.light_blue_stained_door": "Lite Bloo Stainedly Dor", + "block.pyrite.light_blue_stained_sign": "Lite Bloo Stainedly Sign", + "block.pyrite.light_blue_stained_hanging_sign": "Lite Bloo Stainedly Danglin' Sign", + "block.pyrite.light_blue_stained_trapdoor": "Lite Bloo Staned Trap", + "block.pyrite.light_blue_bricks": "Lite Bloo Bricks", + "block.pyrite.light_blue_brick_slab": "Lite Bloo Brick half blok", + "block.pyrite.light_blue_brick_stairs": "Lite Bloo Brick Stairz", + "block.pyrite.light_blue_brick_wall": "Lite Bloo Brick Wal", + "block.pyrite.light_blue_brick_wall_gate": "Lite Bloo Brick Wal dor", + "block.pyrite.light_blue_terracotta_bricks": "Lite Bloo Teracottah Bricks", + "block.pyrite.light_blue_terracotta_brick_slab": "Lite Bloo Teracottah Brick Sleb", + "block.pyrite.light_blue_terracotta_brick_stairs": "Lite Bloo Teracottah Brick Stairz", + "block.pyrite.light_blue_terracotta_brick_wall": "Lite Bloo Teracottah Brick Wal", + "block.pyrite.light_blue_terracotta_brick_wall_gate": "Lite Bloo Teracottah Brick Wal dor", + "block.pyrite.light_blue_lamp": "Lite Bloo lapm", + "block.pyrite.light_blue_torch": "Lite Bloo burny thing", + "block.pyrite.light_blue_torch_lever": "Lite Bloo burny flipurr", + "block.pyrite.light_blue_framed_glass": "Lite Bloo Framed Glazz", + "block.pyrite.light_blue_framed_glass_pane": "Lite Bloo Framed Glazz Payn", + "block.pyrite.yellow_stained_button": "Yello Staned Button", + "block.pyrite.yellow_stained_stairs": "Yello Staned Stairz", + "block.pyrite.yellow_stained_slab": "Yello Stainedly half blok", + "block.pyrite.yellow_stained_pressure_plate": "Yello Staned prueusure platt", + "block.pyrite.yellow_stained_fence": "Yello Staned Fence", + "block.pyrite.yellow_stained_fence_gate": "Yello Staned Fence dor", + "block.pyrite.yellow_stained_planks": "Yello Staned Planks", + "block.pyrite.yellow_stained_crafting_table": "Yello Stainedly Krafting Tabal", + "block.pyrite.yellow_stained_ladder": "Yello Stainedly Ladr", + "block.pyrite.yellow_stained_door": "Yello Stainedly Dor", + "block.pyrite.yellow_stained_sign": "Yello Stainedly Sign", + "block.pyrite.yellow_stained_hanging_sign": "Yello Stainedly Danglin' Sign", + "block.pyrite.yellow_stained_trapdoor": "Yello Staned Trap", + "block.pyrite.yellow_bricks": "Yello Bricks", + "block.pyrite.yellow_brick_slab": "Yello Brick half blok", + "block.pyrite.yellow_brick_stairs": "Yello Brick Stairz", + "block.pyrite.yellow_brick_wall": "Yello Brick Wal", + "block.pyrite.yellow_brick_wall_gate": "Yello Brick Wal dor", + "block.pyrite.yellow_terracotta_bricks": "Yello Teracottah Bricks", + "block.pyrite.yellow_terracotta_brick_slab": "Yello Teracottah Brick Sleb", + "block.pyrite.yellow_terracotta_brick_stairs": "Yello Teracottah Brick Stairz", + "block.pyrite.yellow_terracotta_brick_wall": "Yello Teracottah Brick Wal", + "block.pyrite.yellow_terracotta_brick_wall_gate": "Yello Teracottah Brick Wal dor", + "block.pyrite.yellow_lamp": "Yello lapm", + "block.pyrite.yellow_torch": "Yello burny thing", + "block.pyrite.yellow_torch_lever": "Yello burny flipurr", + "block.pyrite.yellow_framed_glass": "Yello Framed Glazz", + "block.pyrite.yellow_framed_glass_pane": "Yello Framed Glazz Payn", + "block.pyrite.lime_stained_button": "Limd Stainedly Button", + "block.pyrite.lime_stained_stairs": "Limd Stainedly Stairz", + "block.pyrite.lime_stained_slab": "Limd Stainedly half blok", + "block.pyrite.lime_stained_pressure_plate": "Limd Staned prueusure platt", + "block.pyrite.lime_stained_fence": "Limd Stainedly Fence", + "block.pyrite.lime_stained_fence_gate": "Limd Staned Fence dor", + "block.pyrite.lime_stained_planks": "Limd Stainedly Planks", + "block.pyrite.lime_stained_crafting_table": "Limd Staned Krafting Tabal", + "block.pyrite.lime_stained_ladder": "Limd Staned Ladr", + "block.pyrite.lime_stained_door": "Limd Staned Dor", + "block.pyrite.lime_stained_sign": "Limd Stainedly Sign", + "block.pyrite.lime_stained_hanging_sign": "Limd Stainedly Danglin' Sign", + "block.pyrite.lime_stained_trapdoor": "Limd Staned Trap", + "block.pyrite.lime_bricks": "Limd Bricks", + "block.pyrite.lime_brick_slab": "Limd Brick Sleb", + "block.pyrite.lime_brick_stairs": "Limd Brick Stairz", + "block.pyrite.lime_brick_wall": "Limd Brick Wal", + "block.pyrite.lime_brick_wall_gate": "Limd Brick Wal dor", + "block.pyrite.lime_terracotta_bricks": "Limd Teracottah Bricks", + "block.pyrite.lime_terracotta_brick_slab": "Limd Teracottah Brick half blok", + "block.pyrite.lime_terracotta_brick_stairs": "Limd Teracottah Brick Stairz", + "block.pyrite.lime_terracotta_brick_wall": "Limd Teracottah Brick Wal", + "block.pyrite.lime_terracotta_brick_wall_gate": "Limd Teracottah Brick Wal dor", + "block.pyrite.lime_lamp": "Limd lapm", + "block.pyrite.lime_torch": "Limd burny thing", + "block.pyrite.lime_torch_lever": "Limd burny flipurr", + "block.pyrite.lime_framed_glass": "Limd Framed Glazz", + "block.pyrite.lime_framed_glass_pane": "Limd Framed Glazz Payn", + "block.pyrite.pink_stained_button": "Pinky Stainedly Button", + "block.pyrite.pink_stained_stairs": "Pinky Stainedly Stairz", + "block.pyrite.pink_stained_slab": "Pinky Staned half blok", + "block.pyrite.pink_stained_pressure_plate": "Pinky Stainedly prueusure platt", + "block.pyrite.pink_stained_fence": "Pinky Staned Fence", + "block.pyrite.pink_stained_fence_gate": "Pinky Stainedly Fence dor", + "block.pyrite.pink_stained_planks": "Pinky Staned Planks", + "block.pyrite.pink_stained_crafting_table": "Pinky Staned Krafting Tabal", + "block.pyrite.pink_stained_ladder": "Pinky Staned Ladr", + "block.pyrite.pink_stained_door": "Pinky Stainedly Dor", + "block.pyrite.pink_stained_sign": "Pinky Stainedly Sign", + "block.pyrite.pink_stained_hanging_sign": "Pinky Staned Danglin' Sign", + "block.pyrite.pink_stained_trapdoor": "Pinky Stainedly Trap", + "block.pyrite.pink_bricks": "Pinky Bricks", + "block.pyrite.pink_brick_slab": "Pinky Brick Sleb", + "block.pyrite.pink_brick_stairs": "Pinky Brick Stairz", + "block.pyrite.pink_brick_wall": "Pinky Brick Wal", + "block.pyrite.pink_brick_wall_gate": "Pinky Brick Wal dor", + "block.pyrite.pink_terracotta_bricks": "Pinky Teracottah Bricks", + "block.pyrite.pink_terracotta_brick_slab": "Pinky Teracottah Brick half blok", + "block.pyrite.pink_terracotta_brick_stairs": "Pinky Teracottah Brick Stairz", + "block.pyrite.pink_terracotta_brick_wall": "Pinky Teracottah Brick Wal", + "block.pyrite.pink_terracotta_brick_wall_gate": "Pinky Teracottah Brick Wal dor", + "block.pyrite.pink_lamp": "Pinky lapm", + "block.pyrite.pink_torch": "Pinky burny thing", + "block.pyrite.pink_torch_lever": "Pinky burny flipurr", + "block.pyrite.pink_framed_glass": "Pinky Framed Glazz", + "block.pyrite.pink_framed_glass_pane": "Pinky Framed Glazz Payn", + "block.pyrite.gray_stained_button": "Gray Stainedly Button", + "block.pyrite.gray_stained_stairs": "Gray Stainedly Stairz", + "block.pyrite.gray_stained_slab": "Gray Stainedly Sleb", + "block.pyrite.gray_stained_pressure_plate": "Gray Staned prueusure platt", + "block.pyrite.gray_stained_fence": "Gray Staned Fence", + "block.pyrite.gray_stained_fence_gate": "Gray Stainedly Fence dor", + "block.pyrite.gray_stained_planks": "Gray Staned Planks", + "block.pyrite.gray_stained_crafting_table": "Gray Staned Krafting Tabal", + "block.pyrite.gray_stained_ladder": "Gray Stainedly Ladr", + "block.pyrite.gray_stained_door": "Gray Stainedly Dor", + "block.pyrite.gray_stained_sign": "Gray Stainedly Sign", + "block.pyrite.gray_stained_hanging_sign": "Gray Staned Danglin' Sign", + "block.pyrite.gray_stained_trapdoor": "Gray Staned Trap", + "block.pyrite.gray_bricks": "Gray Bricks", + "block.pyrite.gray_brick_slab": "Gray Brick half blok", + "block.pyrite.gray_brick_stairs": "Gray Brick Stairz", + "block.pyrite.gray_brick_wall": "Gray Brick Wal", + "block.pyrite.gray_brick_wall_gate": "Gray Brick Wal dor", + "block.pyrite.gray_terracotta_bricks": "Gray Teracottah Bricks", + "block.pyrite.gray_terracotta_brick_slab": "Gray Teracottah Brick Sleb", + "block.pyrite.gray_terracotta_brick_stairs": "Gray Teracottah Brick Stairz", + "block.pyrite.gray_terracotta_brick_wall": "Gray Teracottah Brick Wal", + "block.pyrite.gray_terracotta_brick_wall_gate": "Gray Teracottah Brick Wal dor", + "block.pyrite.gray_lamp": "Gray lapm", + "block.pyrite.gray_torch": "Gray burny thing", + "block.pyrite.gray_torch_lever": "Gray burny flipurr", + "block.pyrite.gray_framed_glass": "Gray Framed Glazz", + "block.pyrite.gray_framed_glass_pane": "Gray Framed Glazz Payn", + "block.pyrite.light_gray_stained_button": "Lite Gray Stainedly Button", + "block.pyrite.light_gray_stained_stairs": "Lite Gray Stainedly Stairz", + "block.pyrite.light_gray_stained_slab": "Lite Gray Stainedly Sleb", + "block.pyrite.light_gray_stained_pressure_plate": "Lite Gray Staned prueusure platt", + "block.pyrite.light_gray_stained_fence": "Lite Gray Stainedly Fence", + "block.pyrite.light_gray_stained_fence_gate": "Lite Gray Stainedly Fence dor", + "block.pyrite.light_gray_stained_planks": "Lite Gray Staned Planks", + "block.pyrite.light_gray_stained_crafting_table": "Lite Gray Stainedly Krafting Tabal", + "block.pyrite.light_gray_stained_ladder": "Lite Gray Stainedly Ladr", + "block.pyrite.light_gray_stained_door": "Lite Gray Stainedly Dor", + "block.pyrite.light_gray_stained_sign": "Lite Gray Stainedly Sign", + "block.pyrite.light_gray_stained_hanging_sign": "Lite Gray Stainedly Danglin' Sign", + "block.pyrite.light_gray_stained_trapdoor": "Lite Gray Stainedly Trap", + "block.pyrite.light_gray_bricks": "Lite Gray Bricks", + "block.pyrite.light_gray_brick_slab": "Lite Gray Brick Sleb", + "block.pyrite.light_gray_brick_stairs": "Lite Gray Brick Stairz", + "block.pyrite.light_gray_brick_wall": "Lite Gray Brick Wal", + "block.pyrite.light_gray_brick_wall_gate": "Lite Gray Brick Wal dor", + "block.pyrite.light_gray_terracotta_bricks": "Lite Gray Teracottah Bricks", + "block.pyrite.light_gray_terracotta_brick_slab": "Lite Gray Teracottah Brick Sleb", + "block.pyrite.light_gray_terracotta_brick_stairs": "Lite Gray Teracottah Brick Stairz", + "block.pyrite.light_gray_terracotta_brick_wall": "Lite Gray Teracottah Brick Wal", + "block.pyrite.light_gray_terracotta_brick_wall_gate": "Lite Gray Teracottah Brick Wal dor", + "block.pyrite.light_gray_lamp": "Lite Gray lapm", + "block.pyrite.light_gray_torch": "Lite Gray burny thing", + "block.pyrite.light_gray_torch_lever": "Lite Gray burny flipurr", + "block.pyrite.light_gray_framed_glass": "Lite Gray Framed Glazz", + "block.pyrite.light_gray_framed_glass_pane": "Lite Gray Framed Glazz Payn", + "block.pyrite.cyan_stained_button": "Sighun Staned Button", + "block.pyrite.cyan_stained_stairs": "Sighun Staned Stairz", + "block.pyrite.cyan_stained_slab": "Sighun Staned half blok", + "block.pyrite.cyan_stained_pressure_plate": "Sighun Staned prueusure platt", + "block.pyrite.cyan_stained_fence": "Sighun Stainedly Fence", + "block.pyrite.cyan_stained_fence_gate": "Sighun Staned Fence dor", + "block.pyrite.cyan_stained_planks": "Sighun Stainedly Planks", + "block.pyrite.cyan_stained_crafting_table": "Sighun Staned Krafting Tabal", + "block.pyrite.cyan_stained_ladder": "Sighun Staned Ladr", + "block.pyrite.cyan_stained_door": "Sighun Stainedly Dor", + "block.pyrite.cyan_stained_sign": "Sighun Staned Sign", + "block.pyrite.cyan_stained_hanging_sign": "Sighun Staned Danglin' Sign", + "block.pyrite.cyan_stained_trapdoor": "Sighun Staned Trap", + "block.pyrite.cyan_bricks": "Sighun Bricks", + "block.pyrite.cyan_brick_slab": "Sighun Brick Sleb", + "block.pyrite.cyan_brick_stairs": "Sighun Brick Stairz", + "block.pyrite.cyan_brick_wall": "Sighun Brick Wal", + "block.pyrite.cyan_brick_wall_gate": "Sighun Brick Wal dor", + "block.pyrite.cyan_terracotta_bricks": "Sighun Teracottah Bricks", + "block.pyrite.cyan_terracotta_brick_slab": "Sighun Teracottah Brick Sleb", + "block.pyrite.cyan_terracotta_brick_stairs": "Sighun Teracottah Brick Stairz", + "block.pyrite.cyan_terracotta_brick_wall": "Sighun Teracottah Brick Wal", + "block.pyrite.cyan_terracotta_brick_wall_gate": "Sighun Teracottah Brick Wal dor", + "block.pyrite.cyan_lamp": "Sighun lapm", + "block.pyrite.cyan_torch": "Sighun burny thing", + "block.pyrite.cyan_torch_lever": "Sighun burny flipurr", + "block.pyrite.cyan_framed_glass": "Sighun Framed Glazz", + "block.pyrite.cyan_framed_glass_pane": "Sighun Framed Glazz Payn", + "block.pyrite.purple_stained_button": "Parpal Stainedly Button", + "block.pyrite.purple_stained_stairs": "Parpal Stainedly Stairz", + "block.pyrite.purple_stained_slab": "Parpal Stainedly Sleb", + "block.pyrite.purple_stained_pressure_plate": "Parpal Staned prueusure platt", + "block.pyrite.purple_stained_fence": "Parpal Stainedly Fence", + "block.pyrite.purple_stained_fence_gate": "Parpal Stainedly Fence dor", + "block.pyrite.purple_stained_planks": "Parpal Staned Planks", + "block.pyrite.purple_stained_crafting_table": "Parpal Staned Krafting Tabal", + "block.pyrite.purple_stained_ladder": "Parpal Stainedly Ladr", + "block.pyrite.purple_stained_door": "Parpal Stainedly Dor", + "block.pyrite.purple_stained_sign": "Parpal Staned Sign", + "block.pyrite.purple_stained_hanging_sign": "Parpal Stainedly Danglin' Sign", + "block.pyrite.purple_stained_trapdoor": "Parpal Staned Trap", + "block.pyrite.purple_bricks": "Parpal Bricks", + "block.pyrite.purple_brick_slab": "Parpal Brick half blok", + "block.pyrite.purple_brick_stairs": "Parpal Brick Stairz", + "block.pyrite.purple_brick_wall": "Parpal Brick Wal", + "block.pyrite.purple_brick_wall_gate": "Parpal Brick Wal dor", + "block.pyrite.purple_terracotta_bricks": "Parpal Teracottah Bricks", + "block.pyrite.purple_terracotta_brick_slab": "Parpal Teracottah Brick Sleb", + "block.pyrite.purple_terracotta_brick_stairs": "Parpal Teracottah Brick Stairz", + "block.pyrite.purple_terracotta_brick_wall": "Parpal Teracottah Brick Wal", + "block.pyrite.purple_terracotta_brick_wall_gate": "Parpal Teracottah Brick Wal dor", + "block.pyrite.purple_lamp": "Parpal lapm", + "block.pyrite.purple_torch": "Parpal burny thing", + "block.pyrite.purple_torch_lever": "Parpal burny flipurr", + "block.pyrite.purple_framed_glass": "Parpal Framed Glazz", + "block.pyrite.purple_framed_glass_pane": "Parpal Framed Glazz Payn", + "block.pyrite.blue_stained_button": "Bloo Staned Button", + "block.pyrite.blue_stained_stairs": "Bloo Staned Stairz", + "block.pyrite.blue_stained_slab": "Bloo Stainedly half blok", + "block.pyrite.blue_stained_pressure_plate": "Bloo Stainedly prueusure platt", + "block.pyrite.blue_stained_fence": "Bloo Stainedly Fence", + "block.pyrite.blue_stained_fence_gate": "Bloo Stainedly Fence dor", + "block.pyrite.blue_stained_planks": "Bloo Staned Planks", + "block.pyrite.blue_stained_crafting_table": "Bloo Staned Krafting Tabal", + "block.pyrite.blue_stained_ladder": "Bloo Staned Ladr", + "block.pyrite.blue_stained_door": "Bloo Stainedly Dor", + "block.pyrite.blue_stained_sign": "Bloo Staned Sign", + "block.pyrite.blue_stained_hanging_sign": "Bloo Stainedly Danglin' Sign", + "block.pyrite.blue_stained_trapdoor": "Bloo Staned Trap", + "block.pyrite.blue_bricks": "Bloo Bricks", + "block.pyrite.blue_brick_slab": "Bloo Brick half blok", + "block.pyrite.blue_brick_stairs": "Bloo Brick Stairz", + "block.pyrite.blue_brick_wall": "Bloo Brick Wal", + "block.pyrite.blue_brick_wall_gate": "Bloo Brick Wal dor", + "block.pyrite.blue_terracotta_bricks": "Bloo Teracottah Bricks", + "block.pyrite.blue_terracotta_brick_slab": "Bloo Teracottah Brick half blok", + "block.pyrite.blue_terracotta_brick_stairs": "Bloo Teracottah Brick Stairz", + "block.pyrite.blue_terracotta_brick_wall": "Bloo Teracottah Brick Wal", + "block.pyrite.blue_terracotta_brick_wall_gate": "Bloo Teracottah Brick Wal dor", + "block.pyrite.blue_lamp": "Bloo lapm", + "block.pyrite.blue_torch": "Bloo burny thing", + "block.pyrite.blue_torch_lever": "Bloo burny flipurr", + "block.pyrite.blue_framed_glass": "Bloo Framed Glazz", + "block.pyrite.blue_framed_glass_pane": "Bloo Framed Glazz Payn", + "block.pyrite.brown_stained_button": "Brownish Staned Button", + "block.pyrite.brown_stained_stairs": "Brownish Staned Stairz", + "block.pyrite.brown_stained_slab": "Brownish Staned half blok", + "block.pyrite.brown_stained_pressure_plate": "Brownish Staned prueusure platt", + "block.pyrite.brown_stained_fence": "Brownish Stainedly Fence", + "block.pyrite.brown_stained_fence_gate": "Brownish Stainedly Fence dor", + "block.pyrite.brown_stained_planks": "Brownish Staned Planks", + "block.pyrite.brown_stained_crafting_table": "Brownish Stainedly Krafting Tabal", + "block.pyrite.brown_stained_ladder": "Brownish Staned Ladr", + "block.pyrite.brown_stained_door": "Brownish Stainedly Dor", + "block.pyrite.brown_stained_sign": "Brownish Staned Sign", + "block.pyrite.brown_stained_hanging_sign": "Brownish Stainedly Danglin' Sign", + "block.pyrite.brown_stained_trapdoor": "Brownish Stainedly Trap", + "block.pyrite.brown_bricks": "Brownish Bricks", + "block.pyrite.brown_brick_slab": "Brownish Brick Sleb", + "block.pyrite.brown_brick_stairs": "Brownish Brick Stairz", + "block.pyrite.brown_brick_wall": "Brownish Brick Wal", + "block.pyrite.brown_brick_wall_gate": "Brownish Brick Wal dor", + "block.pyrite.brown_terracotta_bricks": "Brownish Teracottah Bricks", + "block.pyrite.brown_terracotta_brick_slab": "Brownish Teracottah Brick Sleb", + "block.pyrite.brown_terracotta_brick_stairs": "Brownish Teracottah Brick Stairz", + "block.pyrite.brown_terracotta_brick_wall": "Brownish Teracottah Brick Wal", + "block.pyrite.brown_terracotta_brick_wall_gate": "Brownish Teracottah Brick Wal dor", + "block.pyrite.brown_lamp": "Brownish lapm", + "block.pyrite.brown_torch": "Brownish burny thing", + "block.pyrite.brown_torch_lever": "Brownish burny flipurr", + "block.pyrite.brown_framed_glass": "Brownish Framed Glazz", + "block.pyrite.brown_framed_glass_pane": "Brownish Framed Glazz Payn", + "block.pyrite.green_stained_button": "Greenish Stainedly Button", + "block.pyrite.green_stained_stairs": "Greenish Stainedly Stairz", + "block.pyrite.green_stained_slab": "Greenish Stainedly Sleb", + "block.pyrite.green_stained_pressure_plate": "Greenish Stainedly prueusure platt", + "block.pyrite.green_stained_fence": "Greenish Stainedly Fence", + "block.pyrite.green_stained_fence_gate": "Greenish Stainedly Fence dor", + "block.pyrite.green_stained_planks": "Greenish Stainedly Planks", + "block.pyrite.green_stained_crafting_table": "Greenish Staned Krafting Tabal", + "block.pyrite.green_stained_ladder": "Greenish Stainedly Ladr", + "block.pyrite.green_stained_door": "Greenish Stainedly Dor", + "block.pyrite.green_stained_sign": "Greenish Staned Sign", + "block.pyrite.green_stained_hanging_sign": "Greenish Stainedly Danglin' Sign", + "block.pyrite.green_stained_trapdoor": "Greenish Stainedly Trap", + "block.pyrite.green_bricks": "Greenish Bricks", + "block.pyrite.green_brick_slab": "Greenish Brick Sleb", + "block.pyrite.green_brick_stairs": "Greenish Brick Stairz", + "block.pyrite.green_brick_wall": "Greenish Brick Wal", + "block.pyrite.green_brick_wall_gate": "Greenish Brick Wal dor", + "block.pyrite.green_terracotta_bricks": "Greenish Teracottah Bricks", + "block.pyrite.green_terracotta_brick_slab": "Greenish Teracottah Brick half blok", + "block.pyrite.green_terracotta_brick_stairs": "Greenish Teracottah Brick Stairz", + "block.pyrite.green_terracotta_brick_wall": "Greenish Teracottah Brick Wal", + "block.pyrite.green_terracotta_brick_wall_gate": "Greenish Teracottah Brick Wal dor", + "block.pyrite.green_lamp": "Greenish lapm", + "block.pyrite.green_torch": "Greenish burny thing", + "block.pyrite.green_torch_lever": "Greenish burny flipurr", + "block.pyrite.green_framed_glass": "Greenish Framed Glazz", + "block.pyrite.green_framed_glass_pane": "Greenish Framed Glazz Payn", + "block.pyrite.red_stained_button": "Redish Staned Button", + "block.pyrite.red_stained_stairs": "Redish Staned Stairz", + "block.pyrite.red_stained_slab": "Redish Stainedly Sleb", + "block.pyrite.red_stained_pressure_plate": "Redish Stainedly prueusure platt", + "block.pyrite.red_stained_fence": "Redish Stainedly Fence", + "block.pyrite.red_stained_fence_gate": "Redish Staned Fence dor", + "block.pyrite.red_stained_planks": "Redish Stainedly Planks", + "block.pyrite.red_stained_crafting_table": "Redish Stainedly Krafting Tabal", + "block.pyrite.red_stained_ladder": "Redish Stainedly Ladr", + "block.pyrite.red_stained_door": "Redish Staned Dor", + "block.pyrite.red_stained_sign": "Redish Staned Sign", + "block.pyrite.red_stained_hanging_sign": "Redish Stainedly Danglin' Sign", + "block.pyrite.red_stained_trapdoor": "Redish Stainedly Trap", + "block.pyrite.red_bricks": "Redish Bricks", + "block.pyrite.red_brick_slab": "Redish Brick Sleb", + "block.pyrite.red_brick_stairs": "Redish Brick Stairz", + "block.pyrite.red_brick_wall": "Redish Brick Wal", + "block.pyrite.red_brick_wall_gate": "Redish Brick Wal dor", + "block.pyrite.red_terracotta_bricks": "Redish Teracottah Bricks", + "block.pyrite.red_terracotta_brick_slab": "Redish Teracottah Brick half blok", + "block.pyrite.red_terracotta_brick_stairs": "Redish Teracottah Brick Stairz", + "block.pyrite.red_terracotta_brick_wall": "Redish Teracottah Brick Wal", + "block.pyrite.red_terracotta_brick_wall_gate": "Redish Teracottah Brick Wal dor", + "block.pyrite.red_lamp": "Redish lapm", + "block.pyrite.red_torch": "Redish burny thing", + "block.pyrite.red_torch_lever": "Redish burny flipurr", + "block.pyrite.red_framed_glass": "Redish Framed Glazz", + "block.pyrite.red_framed_glass_pane": "Redish Framed Glazz Payn", + "block.pyrite.black_stained_button": "Black Staned Button", + "block.pyrite.black_stained_stairs": "Black Stainedly Stairz", + "block.pyrite.black_stained_slab": "Black Stainedly Sleb", + "block.pyrite.black_stained_pressure_plate": "Black Staned prueusure platt", + "block.pyrite.black_stained_fence": "Black Stainedly Fence", + "block.pyrite.black_stained_fence_gate": "Black Staned Fence dor", + "block.pyrite.black_stained_planks": "Black Staned Planks", + "block.pyrite.black_stained_crafting_table": "Black Staned Krafting Tabal", + "block.pyrite.black_stained_ladder": "Black Stainedly Ladr", + "block.pyrite.black_stained_door": "Black Staned Dor", + "block.pyrite.black_stained_sign": "Black Staned Sign", + "block.pyrite.black_stained_hanging_sign": "Black Stainedly Danglin' Sign", + "block.pyrite.black_stained_trapdoor": "Black Staned Trap", + "block.pyrite.black_bricks": "Black Bricks", + "block.pyrite.black_brick_slab": "Black Brick Sleb", + "block.pyrite.black_brick_stairs": "Black Brick Stairz", + "block.pyrite.black_brick_wall": "Black Brick Wal", + "block.pyrite.black_brick_wall_gate": "Black Brick Wal dor", + "block.pyrite.black_terracotta_bricks": "Black Teracottah Bricks", + "block.pyrite.black_terracotta_brick_slab": "Black Teracottah Brick Sleb", + "block.pyrite.black_terracotta_brick_stairs": "Black Teracottah Brick Stairz", + "block.pyrite.black_terracotta_brick_wall": "Black Teracottah Brick Wal", + "block.pyrite.black_terracotta_brick_wall_gate": "Black Teracottah Brick Wal dor", + "block.pyrite.black_lamp": "Black lapm", + "block.pyrite.black_torch": "Black burny thing", + "block.pyrite.black_torch_lever": "Black burny flipurr", + "block.pyrite.black_framed_glass": "Black Framed Glazz", + "block.pyrite.black_framed_glass_pane": "Black Framed Glazz Payn", + "block.pyrite.glow_stained_button": "Glow Staned Button", + "block.pyrite.glow_stained_stairs": "Glow Stainedly Stairz", + "block.pyrite.glow_stained_slab": "Glow Staned Sleb", + "block.pyrite.glow_stained_pressure_plate": "Glow Staned prueusure platt", + "block.pyrite.glow_stained_fence": "Glow Staned Fence", + "block.pyrite.glow_stained_fence_gate": "Glow Stainedly Fence dor", + "block.pyrite.glow_stained_planks": "Glow Staned Planks", + "block.pyrite.glow_stained_crafting_table": "Glow Staned Krafting Tabal", + "block.pyrite.glow_stained_ladder": "Glow Stainedly Ladr", + "block.pyrite.glow_stained_door": "Glow Staned Dor", + "block.pyrite.glow_stained_sign": "Glow Stainedly Sign", + "block.pyrite.glow_stained_hanging_sign": "Glow Staned Danglin' Sign", + "block.pyrite.glow_stained_trapdoor": "Glow Stainedly Trap", + "block.pyrite.glow_bricks": "Glow Bricks", + "block.pyrite.glow_brick_slab": "Glow Brick Sleb", + "block.pyrite.glow_brick_stairs": "Glow Brick Stairz", + "block.pyrite.glow_brick_wall": "Glow Brick Wal", + "block.pyrite.glow_brick_wall_gate": "Glow Brick Wal dor", + "block.pyrite.glow_terracotta_bricks": "Glow Teracottah Bricks", + "block.pyrite.glow_terracotta_brick_slab": "Glow Teracottah Brick half blok", + "block.pyrite.glow_terracotta_brick_stairs": "Glow Teracottah Brick Stairz", + "block.pyrite.glow_terracotta_brick_wall": "Glow Teracottah Brick Wal", + "block.pyrite.glow_terracotta_brick_wall_gate": "Glow Teracottah Brick Wal dor", + "block.pyrite.glow_lamp": "Glow lapm", + "block.pyrite.glow_torch": "Glow burny thing", + "block.pyrite.glow_torch_lever": "Glow burny flipurr", + "block.pyrite.glow_framed_glass": "Glow Framed Glazz", + "block.pyrite.glow_framed_glass_pane": "Glow Framed Glazz Payn", + "block.pyrite.dragon_stained_button": "Dragon Stainedly Button", + "block.pyrite.dragon_stained_stairs": "Dragon Stainedly Stairz", + "block.pyrite.dragon_stained_slab": "Dragon Staned Sleb", + "block.pyrite.dragon_stained_pressure_plate": "Dragon Stainedly prueusure platt", + "block.pyrite.dragon_stained_fence": "Dragon Stainedly Fence", + "block.pyrite.dragon_stained_fence_gate": "Dragon Staned Fence dor", + "block.pyrite.dragon_stained_planks": "Dragon Staned Planks", + "block.pyrite.dragon_stained_crafting_table": "Dragon Staned Krafting Tabal", + "block.pyrite.dragon_stained_ladder": "Dragon Staned Ladr", + "block.pyrite.dragon_stained_door": "Dragon Stainedly Dor", + "block.pyrite.dragon_stained_sign": "Dragon Staned Sign", + "block.pyrite.dragon_stained_hanging_sign": "Dragon Stainedly Danglin' Sign", + "block.pyrite.dragon_stained_trapdoor": "Dragon Stainedly Trap", + "block.pyrite.dragon_bricks": "Dragon Bricks", + "block.pyrite.dragon_brick_slab": "Dragon Brick half blok", + "block.pyrite.dragon_brick_stairs": "Dragon Brick Stairz", + "block.pyrite.dragon_brick_wall": "Dragon Brick Wal", + "block.pyrite.dragon_brick_wall_gate": "Dragon Brick Wal dor", + "block.pyrite.dragon_terracotta_bricks": "Dragon Teracottah Bricks", + "block.pyrite.dragon_terracotta_brick_slab": "Dragon Teracottah Brick half blok", + "block.pyrite.dragon_terracotta_brick_stairs": "Dragon Teracottah Brick Stairz", + "block.pyrite.dragon_terracotta_brick_wall": "Dragon Teracottah Brick Wal", + "block.pyrite.dragon_terracotta_brick_wall_gate": "Dragon Teracottah Brick Wal dor", + "block.pyrite.dragon_lamp": "Dragon lapm", + "block.pyrite.dragon_torch": "Dragon burny thing", + "block.pyrite.dragon_torch_lever": "Dragon burny flipurr", + "block.pyrite.dragon_framed_glass": "Dragon Framed Glazz", + "block.pyrite.dragon_framed_glass_pane": "Dragon Framed Glazz Payn", + "block.pyrite.star_stained_button": "Asterisk Staned Button", + "block.pyrite.star_stained_stairs": "Asterisk Stainedly Stairz", + "block.pyrite.star_stained_slab": "Asterisk Staned half blok", + "block.pyrite.star_stained_pressure_plate": "Asterisk Staned prueusure platt", + "block.pyrite.star_stained_fence": "Asterisk Staned Fence", + "block.pyrite.star_stained_fence_gate": "Asterisk Staned Fence dor", + "block.pyrite.star_stained_planks": "Asterisk Stainedly Planks", + "block.pyrite.star_stained_crafting_table": "Asterisk Staned Krafting Tabal", + "block.pyrite.star_stained_ladder": "Asterisk Stainedly Ladr", + "block.pyrite.star_stained_door": "Asterisk Stainedly Dor", + "block.pyrite.star_stained_sign": "Asterisk Staned Sign", + "block.pyrite.star_stained_hanging_sign": "Asterisk Stainedly Danglin' Sign", + "block.pyrite.star_stained_trapdoor": "Asterisk Stainedly Trap", + "block.pyrite.star_bricks": "Asterisk Bricks", + "block.pyrite.star_brick_slab": "Asterisk Brick Sleb", + "block.pyrite.star_brick_stairs": "Asterisk Brick Stairz", + "block.pyrite.star_brick_wall": "Asterisk Brick Wal", + "block.pyrite.star_brick_wall_gate": "Asterisk Brick Wal dor", + "block.pyrite.star_terracotta_bricks": "Asterisk Teracottah Bricks", + "block.pyrite.star_terracotta_brick_slab": "Asterisk Teracottah Brick Sleb", + "block.pyrite.star_terracotta_brick_stairs": "Asterisk Teracottah Brick Stairz", + "block.pyrite.star_terracotta_brick_wall": "Asterisk Teracottah Brick Wal", + "block.pyrite.star_terracotta_brick_wall_gate": "Asterisk Teracottah Brick Wal dor", + "block.pyrite.star_lamp": "Asterisk lapm", + "block.pyrite.star_torch": "Asterisk burny thing", + "block.pyrite.star_torch_lever": "Asterisk burny flipurr", + "block.pyrite.star_framed_glass": "Asterisk Framed Glazz", + "block.pyrite.star_framed_glass_pane": "Asterisk Framed Glazz Payn", + "block.pyrite.honey_stained_button": "Honey Staned Button", + "block.pyrite.honey_stained_stairs": "Honey Stainedly Stairz", + "block.pyrite.honey_stained_slab": "Honey Stainedly half blok", + "block.pyrite.honey_stained_pressure_plate": "Honey Stainedly prueusure platt", + "block.pyrite.honey_stained_fence": "Honey Staned Fence", + "block.pyrite.honey_stained_fence_gate": "Honey Staned Fence dor", + "block.pyrite.honey_stained_planks": "Honey Staned Planks", + "block.pyrite.honey_stained_crafting_table": "Honey Stainedly Krafting Tabal", + "block.pyrite.honey_stained_ladder": "Honey Stainedly Ladr", + "block.pyrite.honey_stained_door": "Honey Staned Dor", + "block.pyrite.honey_stained_sign": "Honey Staned Sign", + "block.pyrite.honey_stained_hanging_sign": "Honey Stainedly Danglin' Sign", + "block.pyrite.honey_stained_trapdoor": "Honey Staned Trap", + "block.pyrite.honey_bricks": "Honey Bricks", + "block.pyrite.honey_brick_slab": "Honey Brick Sleb", + "block.pyrite.honey_brick_stairs": "Honey Brick Stairz", + "block.pyrite.honey_brick_wall": "Honey Brick Wal", + "block.pyrite.honey_brick_wall_gate": "Honey Brick Wal dor", + "block.pyrite.honey_terracotta_bricks": "Honey Teracottah Bricks", + "block.pyrite.honey_terracotta_brick_slab": "Honey Teracottah Brick Sleb", + "block.pyrite.honey_terracotta_brick_stairs": "Honey Teracottah Brick Stairz", + "block.pyrite.honey_terracotta_brick_wall": "Honey Teracottah Brick Wal", + "block.pyrite.honey_terracotta_brick_wall_gate": "Honey Teracottah Brick Wal dor", + "block.pyrite.honey_lamp": "Honey lapm", + "block.pyrite.honey_torch": "Honey burny thing", + "block.pyrite.honey_torch_lever": "Honey burny flipurr", + "block.pyrite.honey_framed_glass": "Honey Framed Glazz", + "block.pyrite.honey_framed_glass_pane": "Honey Framed Glazz Payn", + "block.pyrite.nostalgia_stained_button": "OLD Staned Button", + "block.pyrite.nostalgia_stained_stairs": "OLD Stainedly Stairz", + "block.pyrite.nostalgia_stained_slab": "OLD Staned half blok", + "block.pyrite.nostalgia_stained_pressure_plate": "OLD Staned prueusure platt", + "block.pyrite.nostalgia_stained_fence": "OLD Stainedly Fence", + "block.pyrite.nostalgia_stained_fence_gate": "OLD Staned Fence dor", + "block.pyrite.nostalgia_stained_planks": "OLD Staned Planks", + "block.pyrite.nostalgia_stained_crafting_table": "OLD Stainedly Krafting Tabal", + "block.pyrite.nostalgia_stained_ladder": "OLD Staned Ladr", + "block.pyrite.nostalgia_stained_door": "OLD Staned Dor", + "block.pyrite.nostalgia_stained_sign": "OLD Stainedly Sign", + "block.pyrite.nostalgia_stained_hanging_sign": "OLD Stainedly Danglin' Sign", + "block.pyrite.nostalgia_stained_trapdoor": "OLD Staned Trap", + "block.pyrite.nostalgia_bricks": "OLD Bricks", + "block.pyrite.nostalgia_brick_slab": "OLD Brick Sleb", + "block.pyrite.nostalgia_brick_stairs": "OLD Brick Stairz", + "block.pyrite.nostalgia_brick_wall": "OLD Brick Wal", + "block.pyrite.nostalgia_brick_wall_gate": "OLD Brick Wal dor", + "block.pyrite.nostalgia_terracotta_bricks": "OLD Teracottah Bricks", + "block.pyrite.nostalgia_terracotta_brick_slab": "OLD Teracottah Brick half blok", + "block.pyrite.nostalgia_terracotta_brick_stairs": "OLD Teracottah Brick Stairz", + "block.pyrite.nostalgia_terracotta_brick_wall": "OLD Teracottah Brick Wal", + "block.pyrite.nostalgia_terracotta_brick_wall_gate": "OLD Teracottah Brick Wal dor", + "block.pyrite.nostalgia_lamp": "OLD lapm", + "block.pyrite.nostalgia_torch": "OLD burny thing", + "block.pyrite.nostalgia_torch_lever": "OLD burny flipurr", + "block.pyrite.nostalgia_framed_glass": "OLD Framed Glazz", + "block.pyrite.nostalgia_framed_glass_pane": "OLD Framed Glazz Payn", + "block.pyrite.rose_stained_button": "Rose Staned Button", + "block.pyrite.rose_stained_stairs": "Rose Staned Stairz", + "block.pyrite.rose_stained_slab": "Rose Staned Sleb", + "block.pyrite.rose_stained_pressure_plate": "Rose Staned prueusure platt", + "block.pyrite.rose_stained_fence": "Rose Stainedly Fence", + "block.pyrite.rose_stained_fence_gate": "Rose Staned Fence dor", + "block.pyrite.rose_stained_planks": "Rose Staned Planks", + "block.pyrite.rose_stained_crafting_table": "Rose Stainedly Krafting Tabal", + "block.pyrite.rose_stained_ladder": "Rose Stainedly Ladr", + "block.pyrite.rose_stained_door": "Rose Stainedly Dor", + "block.pyrite.rose_stained_sign": "Rose Stainedly Sign", + "block.pyrite.rose_stained_hanging_sign": "Rose Stainedly Danglin' Sign", + "block.pyrite.rose_stained_trapdoor": "Rose Stainedly Trap", + "block.pyrite.rose_bricks": "Rose Bricks", + "block.pyrite.rose_brick_slab": "Rose Brick half blok", + "block.pyrite.rose_brick_stairs": "Rose Brick Stairz", + "block.pyrite.rose_brick_wall": "Rose Brick Wal", + "block.pyrite.rose_brick_wall_gate": "Rose Brick Wal dor", + "block.pyrite.rose_terracotta_bricks": "Rose Teracottah Bricks", + "block.pyrite.rose_terracotta_brick_slab": "Rose Teracottah Brick half blok", + "block.pyrite.rose_terracotta_brick_stairs": "Rose Teracottah Brick Stairz", + "block.pyrite.rose_terracotta_brick_wall": "Rose Teracottah Brick Wal", + "block.pyrite.rose_terracotta_brick_wall_gate": "Rose Teracottah Brick Wal dor", + "block.pyrite.rose_lamp": "Rose lapm", + "block.pyrite.rose_torch": "Rose burny thing", + "block.pyrite.rose_torch_lever": "Rose burny flipurr", + "block.pyrite.rose_framed_glass": "Rose Framed Glazz", + "block.pyrite.rose_framed_glass_pane": "Rose Framed Glazz Payn", + "block.pyrite.poisonous_stained_button": "yucky Stainedly Button", + "block.pyrite.poisonous_stained_stairs": "yucky Stainedly Stairz", + "block.pyrite.poisonous_stained_slab": "yucky Staned half blok", + "block.pyrite.poisonous_stained_pressure_plate": "yucky Stainedly prueusure platt", + "block.pyrite.poisonous_stained_fence": "yucky Staned Fence", + "block.pyrite.poisonous_stained_fence_gate": "yucky Stainedly Fence dor", + "block.pyrite.poisonous_stained_planks": "yucky Staned Planks", + "block.pyrite.poisonous_stained_crafting_table": "yucky Stainedly Krafting Tabal", + "block.pyrite.poisonous_stained_ladder": "yucky Staned Ladr", + "block.pyrite.poisonous_stained_door": "yucky Staned Dor", + "block.pyrite.poisonous_stained_sign": "yucky Staned Sign", + "block.pyrite.poisonous_stained_hanging_sign": "yucky Staned Danglin' Sign", + "block.pyrite.poisonous_stained_trapdoor": "yucky Stainedly Trap", + "block.pyrite.poisonous_bricks": "yucky Bricks", + "block.pyrite.poisonous_brick_slab": "yucky Brick Sleb", + "block.pyrite.poisonous_brick_stairs": "yucky Brick Stairz", + "block.pyrite.poisonous_brick_wall": "yucky Brick Wal", + "block.pyrite.poisonous_brick_wall_gate": "yucky Brick Wal dor", + "block.pyrite.poisonous_terracotta_bricks": "yucky Teracottah Bricks", + "block.pyrite.poisonous_terracotta_brick_slab": "yucky Teracottah Brick Sleb", + "block.pyrite.poisonous_terracotta_brick_stairs": "yucky Teracottah Brick Stairz", + "block.pyrite.poisonous_terracotta_brick_wall": "yucky Teracottah Brick Wal", + "block.pyrite.poisonous_terracotta_brick_wall_gate": "yucky Teracottah Brick Wal dor", + "block.pyrite.poisonous_lamp": "yucky lapm", + "block.pyrite.poisonous_torch": "yucky burny thing", + "block.pyrite.poisonous_torch_lever": "yucky burny flipurr", + "block.pyrite.poisonous_framed_glass": "yucky Framed Glazz", + "block.pyrite.poisonous_framed_glass_pane": "yucky Framed Glazz Payn", + "block.pyrite.spruce_crafting_table": "Spruz Krafting Tabal", + "block.pyrite.birch_crafting_table": "Berch Krafting Tabal", + "block.pyrite.jungle_crafting_table": "Junglz Krafting Tabal", + "block.pyrite.acacia_crafting_table": "Acacia Krafting Tabal", + "block.pyrite.dark_oak_crafting_table": "Dark Oac Krafting Tabal", + "block.pyrite.mangrove_crafting_table": "mengruv Krafting Tabal", + "block.pyrite.cherry_crafting_table": "Sakura Krafting Tabal", + "block.pyrite.bamboo_crafting_table": "Gren Krafting Tabal", + "block.pyrite.crimson_crafting_table": "Crimzn Krafting Tabal", + "block.pyrite.warped_crafting_table": "Warpt Krafting Tabal", + "block.pyrite.skyroot_crafting_table": "Skyroot Krafting Tabal", + "block.pyrite.holystone_wall_gate": "Holystone Wal dor", + "block.pyrite.mossy_holystone_wall_gate": "Mossy Holystone Wal dor", + "block.pyrite.holystone_brick_wall_gate": "Holystone Brick Wal dor", + "block.pyrite.icestone_wall_gate": "Icestone Wal dor", + "block.pyrite.aerogel_wall_gate": "Aerogel Wal dor", + "block.pyrite.carved_wall_gate": "Carved Wal dor", + "block.pyrite.angelic_wall_gate": "Angelic Wal dor", + "block.pyrite.hellfire_wall_gate": "Hellfire Wal dor", + "block.pyrite.red_mushroom_button": "Redish Mushroom Button", + "block.pyrite.red_mushroom_stairs": "Redish Mushroom Stairz", + "block.pyrite.red_mushroom_slab": "Redish Mushroom Sleb", + "block.pyrite.red_mushroom_pressure_plate": "Redish Mushroom prueusure platt", + "block.pyrite.red_mushroom_fence": "Redish Mushroom Fence", + "block.pyrite.red_mushroom_fence_gate": "Redish Mushroom Fence dor", + "block.pyrite.red_mushroom_planks": "Redish Mushroom Planks", + "block.pyrite.red_mushroom_crafting_table": "Redish Mushroom Krafting Tabal", + "block.pyrite.red_mushroom_ladder": "Redish Mushroom Ladr", + "block.pyrite.red_mushroom_door": "Redish Mushroom Dor", + "block.pyrite.red_mushroom_sign": "Redish Mushroom Sign", + "block.pyrite.red_mushroom_hanging_sign": "Redish Mushroom Danglin' Sign", + "block.pyrite.red_mushroom_trapdoor": "Redish Mushroom Trap", + "block.pyrite.red_mushroom_stem": "Redish Mushroom Stem", + "block.pyrite.brown_mushroom_button": "Brownish Mushroom Button", + "block.pyrite.brown_mushroom_stairs": "Brownish Mushroom Stairz", + "block.pyrite.brown_mushroom_slab": "Brownish Mushroom Sleb", + "block.pyrite.brown_mushroom_pressure_plate": "Brownish Mushroom prueusure platt", + "block.pyrite.brown_mushroom_fence": "Brownish Mushroom Fence", + "block.pyrite.brown_mushroom_fence_gate": "Brownish Mushroom Fence dor", + "block.pyrite.brown_mushroom_planks": "Brownish Mushroom Planks", + "block.pyrite.brown_mushroom_crafting_table": "Brownish Mushroom Krafting Tabal", + "block.pyrite.brown_mushroom_ladder": "Brownish Mushroom Ladr", + "block.pyrite.brown_mushroom_door": "Brownish Mushroom Dor", + "block.pyrite.brown_mushroom_sign": "Brownish Mushroom Sign", + "block.pyrite.brown_mushroom_hanging_sign": "Brownish Mushroom Danglin' Sign", + "block.pyrite.brown_mushroom_trapdoor": "Brownish Mushroom Trap", + "block.pyrite.brown_mushroom_stem": "Brownish Mushroom Stem", + "block.pyrite.cobblestone_bricks": "Cooblestoneh Bricks", + "block.pyrite.cobblestone_brick_slab": "Cooblestoneh Brick half blok", + "block.pyrite.cobblestone_brick_stairs": "Cooblestoneh Brick Stairz", + "block.pyrite.cobblestone_brick_wall": "Cooblestoneh Brick Wal", + "block.pyrite.cobblestone_brick_wall_gate": "Cooblestoneh Brick Wal dor", + "block.pyrite.mossy_cobblestone_bricks": "DURTY COBULSTOWN Bricks", + "block.pyrite.mossy_cobblestone_brick_slab": "DURTY COBULSTOWN Brick half blok", + "block.pyrite.mossy_cobblestone_brick_stairs": "DURTY COBULSTOWN Brick Stairz", + "block.pyrite.mossy_cobblestone_brick_wall": "DURTY COBULSTOWN Brick Wal", + "block.pyrite.mossy_cobblestone_brick_wall_gate": "DURTY COBULSTOWN Brick Wal dor", + "block.pyrite.smooth_stone_bricks": "Smooth Stone Bricks", + "block.pyrite.smooth_stone_brick_slab": "Smooth Stone Brick half blok", + "block.pyrite.smooth_stone_brick_stairs": "Smooth Stone Brick Stairz", + "block.pyrite.smooth_stone_brick_wall": "Smooth Stone Brick Wal", + "block.pyrite.smooth_stone_brick_wall_gate": "Smooth Stone Brick Wal dor", + "block.pyrite.mossy_smooth_stone_bricks": "Mossy Smooth Stone Bricks", + "block.pyrite.mossy_smooth_stone_brick_slab": "Mossy Smooth Stone Brick Sleb", + "block.pyrite.mossy_smooth_stone_brick_stairs": "Mossy Smooth Stone Brick Stairz", + "block.pyrite.mossy_smooth_stone_brick_wall": "Mossy Smooth Stone Brick Wal", + "block.pyrite.mossy_smooth_stone_brick_wall_gate": "Mossy Smooth Stone Brick Wal dor", + "block.pyrite.granite_bricks": "Granite Bricks", + "block.pyrite.granite_brick_slab": "Granite Brick Sleb", + "block.pyrite.granite_brick_stairs": "Granite Brick Stairz", + "block.pyrite.granite_brick_wall": "Granite Brick Wal", + "block.pyrite.granite_brick_wall_gate": "Granite Brick Wal dor", + "block.pyrite.mossy_granite_bricks": "Mossy Granite Bricks", + "block.pyrite.mossy_granite_brick_slab": "Mossy Granite Brick Sleb", + "block.pyrite.mossy_granite_brick_stairs": "Mossy Granite Brick Stairz", + "block.pyrite.mossy_granite_brick_wall": "Mossy Granite Brick Wal", + "block.pyrite.mossy_granite_brick_wall_gate": "Mossy Granite Brick Wal dor", + "block.pyrite.andesite_bricks": "Andesite Bricks", + "block.pyrite.andesite_brick_slab": "Andesite Brick Sleb", + "block.pyrite.andesite_brick_stairs": "Andesite Brick Stairz", + "block.pyrite.andesite_brick_wall": "Andesite Brick Wal", + "block.pyrite.andesite_brick_wall_gate": "Andesite Brick Wal dor", + "block.pyrite.mossy_andesite_bricks": "Mossy Andesite Bricks", + "block.pyrite.mossy_andesite_brick_slab": "Mossy Andesite Brick half blok", + "block.pyrite.mossy_andesite_brick_stairs": "Mossy Andesite Brick Stairz", + "block.pyrite.mossy_andesite_brick_wall": "Mossy Andesite Brick Wal", + "block.pyrite.mossy_andesite_brick_wall_gate": "Mossy Andesite Brick Wal dor", + "block.pyrite.diorite_bricks": "Diorite Bricks", + "block.pyrite.diorite_brick_slab": "Diorite Brick half blok", + "block.pyrite.diorite_brick_stairs": "Diorite Brick Stairz", + "block.pyrite.diorite_brick_wall": "Diorite Brick Wal", + "block.pyrite.diorite_brick_wall_gate": "Diorite Brick Wal dor", + "block.pyrite.mossy_diorite_bricks": "Mossy Diorite Bricks", + "block.pyrite.mossy_diorite_brick_slab": "Mossy Diorite Brick half blok", + "block.pyrite.mossy_diorite_brick_stairs": "Mossy Diorite Brick Stairz", + "block.pyrite.mossy_diorite_brick_wall": "Mossy Diorite Brick Wal", + "block.pyrite.mossy_diorite_brick_wall_gate": "Mossy Diorite Brick Wal dor", + "block.pyrite.calcite_bricks": "Calcite Bricks", + "block.pyrite.calcite_brick_slab": "Calcite Brick half blok", + "block.pyrite.calcite_brick_stairs": "Calcite Brick Stairz", + "block.pyrite.calcite_brick_wall": "Calcite Brick Wal", + "block.pyrite.calcite_brick_wall_gate": "Calcite Brick Wal dor", + "block.pyrite.mossy_calcite_bricks": "Mossy Calcite Bricks", + "block.pyrite.mossy_calcite_brick_slab": "Mossy Calcite Brick half blok", + "block.pyrite.mossy_calcite_brick_stairs": "Mossy Calcite Brick Stairz", + "block.pyrite.mossy_calcite_brick_wall": "Mossy Calcite Brick Wal", + "block.pyrite.mossy_calcite_brick_wall_gate": "Mossy Calcite Brick Wal dor", + "block.pyrite.mossy_deepslate_bricks": "Mossy dark ston Bricks", + "block.pyrite.mossy_deepslate_brick_slab": "Mossy dark ston Brick half blok", + "block.pyrite.mossy_deepslate_brick_stairs": "Mossy dark ston Brick Stairz", + "block.pyrite.mossy_deepslate_brick_wall": "Mossy dark ston Brick Wal", + "block.pyrite.mossy_deepslate_brick_wall_gate": "Mossy dark ston Brick Wal dor", + "block.pyrite.nostalgia_cobblestone": "OLD Cooblestoneh", + "block.pyrite.nostalgia_mossy_cobblestone": "OLD Mossy Cooblestoneh", + "block.pyrite.nostalgia_netherrack": "OLD Netherrack", + "block.pyrite.nostalgia_gravel": "OLD Gravel", + "block.pyrite.nostalgia_grass_block": "OLD Gras Blak", + "block.pyrite.framed_glass": "Framed Glazz", + "block.pyrite.framed_glass_pane": "Framed Glazz Payn", + "block.pyrite.nostalgia_grass_turf": "OLD Gras Turf", + "block.pyrite.nostalgia_grass_slab": "OLD Gras half blok", + "block.pyrite.nostalgia_grass_stairs": "OLD Gras Stairz", + "block.pyrite.nostalgia_grass_carpet": "OLD Gras Cat Rug", + "block.pyrite.podzol_turf": "Durtee durt Turf", + "block.pyrite.podzol_slab": "Durtee durt Sleb", + "block.pyrite.podzol_stairs": "Durtee durt Stairz", + "block.pyrite.podzol_carpet": "Durtee durt Cat Rug", + "block.pyrite.grass_turf": "Gras Turf", + "block.pyrite.grass_slab": "Gras Sleb", + "block.pyrite.grass_stairs": "Gras Stairz", + "block.pyrite.grass_carpet": "Gras Cat Rug", + "block.pyrite.mycelium_turf": "miceliwm Turf", + "block.pyrite.mycelium_slab": "miceliwm half blok", + "block.pyrite.mycelium_stairs": "miceliwm Stairz", + "block.pyrite.mycelium_carpet": "miceliwm Cat Rug", + "block.pyrite.path_turf": "Durt roud Turf", + "block.pyrite.path_slab": "Durt roud Sleb", + "block.pyrite.path_stairs": "Durt roud Stairz", + "block.pyrite.path_carpet": "Durt roud Cat Rug", + "block.pyrite.white_concrete_slab": "Wite Concrete half blok", + "block.pyrite.white_concrete_stairs": "Wite Concrete Stairz", + "block.pyrite.orange_concrete_slab": "Ornge Concrete half blok", + "block.pyrite.orange_concrete_stairs": "Ornge Concrete Stairz", + "block.pyrite.magenta_concrete_slab": "Majenta Concrete half blok", + "block.pyrite.magenta_concrete_stairs": "Majenta Concrete Stairz", + "block.pyrite.light_blue_concrete_slab": "Lite Bloo Concrete half blok", + "block.pyrite.light_blue_concrete_stairs": "Lite Bloo Concrete Stairz", + "block.pyrite.yellow_concrete_slab": "Yello Concrete Sleb", + "block.pyrite.yellow_concrete_stairs": "Yello Concrete Stairz", + "block.pyrite.lime_concrete_slab": "Limd Concrete half blok", + "block.pyrite.lime_concrete_stairs": "Limd Concrete Stairz", + "block.pyrite.pink_concrete_slab": "Pinky Concrete half blok", + "block.pyrite.pink_concrete_stairs": "Pinky Concrete Stairz", + "block.pyrite.gray_concrete_slab": "Gray Concrete half blok", + "block.pyrite.gray_concrete_stairs": "Gray Concrete Stairz", + "block.pyrite.light_gray_concrete_slab": "Lite Gray Concrete half blok", + "block.pyrite.light_gray_concrete_stairs": "Lite Gray Concrete Stairz", + "block.pyrite.cyan_concrete_slab": "Sighun Concrete Sleb", + "block.pyrite.cyan_concrete_stairs": "Sighun Concrete Stairz", + "block.pyrite.purple_concrete_slab": "Parpal Concrete Sleb", + "block.pyrite.purple_concrete_stairs": "Parpal Concrete Stairz", + "block.pyrite.blue_concrete_slab": "Bloo Concrete Sleb", + "block.pyrite.blue_concrete_stairs": "Bloo Concrete Stairz", + "block.pyrite.brown_concrete_slab": "Brownish Concrete Sleb", + "block.pyrite.brown_concrete_stairs": "Brownish Concrete Stairz", + "block.pyrite.green_concrete_slab": "Greenish Concrete Sleb", + "block.pyrite.green_concrete_stairs": "Greenish Concrete Stairz", + "block.pyrite.red_concrete_slab": "Redish Concrete half blok", + "block.pyrite.red_concrete_stairs": "Redish Concrete Stairz", + "block.pyrite.black_concrete_slab": "Black Concrete half blok", + "block.pyrite.black_concrete_stairs": "Black Concrete Stairz", + "item.pyrite.glow_dye": "Glow powder", + "block.pyrite.glow_wool": "Glow Fur Bluk", + "block.pyrite.glow_carpet": "Glow Cat Rug", + "block.pyrite.glow_terracotta": "Glow Teracottah", + "block.pyrite.glow_concrete": "Glow Concrete", + "block.pyrite.glow_concrete_powder": "Glow Concrete Powder", + "block.pyrite.glow_concrete_slab": "Glow Concrete Sleb", + "block.pyrite.glow_concrete_stairs": "Glow Concrete Stairz", + "item.pyrite.dragon_dye": "Dragon powder", + "block.pyrite.dragon_wool": "Dragon Fur Bluk", + "block.pyrite.dragon_carpet": "Dragon Cat Rug", + "block.pyrite.dragon_terracotta": "Dragon Teracottah", + "block.pyrite.dragon_concrete": "Dragon Concrete", + "block.pyrite.dragon_concrete_powder": "Dragon Concrete Powder", + "block.pyrite.dragon_concrete_slab": "Dragon Concrete Sleb", + "block.pyrite.dragon_concrete_stairs": "Dragon Concrete Stairz", + "item.pyrite.star_dye": "Asterisk powder", + "block.pyrite.star_wool": "Asterisk Fur Bluk", + "block.pyrite.star_carpet": "Asterisk Cat Rug", + "block.pyrite.star_terracotta": "Asterisk Teracottah", + "block.pyrite.star_concrete": "Asterisk Concrete", + "block.pyrite.star_concrete_powder": "Asterisk Concrete Powder", + "block.pyrite.star_concrete_slab": "Asterisk Concrete half blok", + "block.pyrite.star_concrete_stairs": "Asterisk Concrete Stairz", + "item.pyrite.honey_dye": "Honey powder", + "block.pyrite.honey_wool": "Honey Fur Bluk", + "block.pyrite.honey_carpet": "Honey Cat Rug", + "block.pyrite.honey_terracotta": "Honey Teracottah", + "block.pyrite.honey_concrete": "Honey Concrete", + "block.pyrite.honey_concrete_powder": "Honey Concrete Powder", + "block.pyrite.honey_concrete_slab": "Honey Concrete Sleb", + "block.pyrite.honey_concrete_stairs": "Honey Concrete Stairz", + "item.pyrite.nostalgia_dye": "OLD powder", + "block.pyrite.nostalgia_wool": "OLD Fur Bluk", + "block.pyrite.nostalgia_carpet": "OLD Cat Rug", + "block.pyrite.nostalgia_terracotta": "OLD Teracottah", + "block.pyrite.nostalgia_concrete": "OLD Concrete", + "block.pyrite.nostalgia_concrete_powder": "OLD Concrete Powder", + "block.pyrite.nostalgia_concrete_slab": "OLD Concrete Sleb", + "block.pyrite.nostalgia_concrete_stairs": "OLD Concrete Stairz", + "item.pyrite.rose_dye": "Rose powder", + "block.pyrite.rose_wool": "Rose Fur Bluk", + "block.pyrite.rose_carpet": "Rose Cat Rug", + "block.pyrite.rose_terracotta": "Rose Teracottah", + "block.pyrite.rose_concrete": "Rose Concrete", + "block.pyrite.rose_concrete_powder": "Rose Concrete Powder", + "block.pyrite.rose_concrete_slab": "Rose Concrete half blok", + "block.pyrite.rose_concrete_stairs": "Rose Concrete Stairz", + "item.pyrite.poisonous_dye": "yucky powder", + "block.pyrite.poisonous_wool": "yucky Fur Bluk", + "block.pyrite.poisonous_carpet": "yucky Cat Rug", + "block.pyrite.poisonous_terracotta": "yucky Teracottah", + "block.pyrite.poisonous_concrete": "yucky Concrete", + "block.pyrite.poisonous_concrete_powder": "yucky Concrete Powder", + "block.pyrite.poisonous_concrete_slab": "yucky Concrete Sleb", + "block.pyrite.poisonous_concrete_stairs": "yucky Concrete Stairz", + "block.pyrite.glowstone_lamp": "Glowstone lapm", + "block.pyrite.lit_redstone_lamp": "Bright Redstone lapm", + "block.pyrite.nostalgia_glowing_obsidian": "OLD Glowing Obsidian", + "block.pyrite.locked_chest": "Locked Chest", + "block.pyrite.charred_nether_bricks": "hot!!! Brik from Nether", + "block.pyrite.charred_nether_brick_slab": "hot!!! Nether Brick Sleb", + "block.pyrite.charred_nether_brick_stairs": "hot!!! Nether Brick Stairz", + "block.pyrite.charred_nether_brick_wall": "hot!!! Nether Brick Wal", + "block.pyrite.charred_nether_brick_wall_gate": "hot!!! Nether Brick Wal dor", + "block.pyrite.blue_nether_bricks": "Bloo Brik from Nether", + "block.pyrite.blue_nether_brick_slab": "Bloo Nether Brick half blok", + "block.pyrite.blue_nether_brick_stairs": "Bloo Nether Brick Stairz", + "block.pyrite.blue_nether_brick_wall": "Bloo Nether Brick Wal", + "block.pyrite.blue_nether_brick_wall_gate": "Bloo Nether Brick Wal dor", + "block.pyrite.cobblestone_wall_gate": "Cooblestoneh Wal dor", + "block.pyrite.mossy_cobblestone_wall_gate": "DURTY COBULSTOWN Wal dor", + "block.pyrite.stone_brick_wall_gate": "Stone Brick Wal dor", + "block.pyrite.mossy_stone_brick_wall_gate": "Mossy Stone Brick Wal dor", + "block.pyrite.granite_wall_gate": "Granite Wal dor", + "block.pyrite.diorite_wall_gate": "Diorite Wal dor", + "block.pyrite.andesite_wall_gate": "Andesite Wal dor", + "block.pyrite.cobbled_deepslate_wall_gate": "Cobbled dark ston Wal dor", + "block.pyrite.polished_deepslate_wall_gate": "Polished dark ston Wal dor", + "block.pyrite.deepslate_brick_wall_gate": "dark ston Brick Wal dor", + "block.pyrite.deepslate_tile_wall_gate": "dark ston Tile Wal dor", + "block.pyrite.brick_wall_gate": "Brick Wal dor", + "block.pyrite.mud_brick_wall_gate": "Mud Brick Wal dor", + "block.pyrite.sandstone_wall_gate": "Sandstone Wal dor", + "block.pyrite.red_sandstone_wall_gate": "Redish Sandstone Wal dor", + "block.pyrite.prismarine_wall_gate": "Prismarine Wal dor", + "block.pyrite.nether_brick_wall_gate": "Nether Brick Wal dor", + "block.pyrite.red_nether_brick_wall_gate": "Redish Nether Brick Wal dor", + "block.pyrite.blackstone_wall_gate": "Blackstone Wal dor", + "block.pyrite.polished_blackstone_wall_gate": "Polished Blackstone Wal dor", + "block.pyrite.polished_blackstone_brick_wall_gate": "Polished Blackstone Brick Wal dor", + "block.pyrite.end_stone_brick_wall_gate": "End Stone Brick Wal dor", + "block.pyrite.cut_iron": "1000° kniv vs Irony", + "block.pyrite.cut_iron_slab": "1000° kniv vs Irony Sleb", + "block.pyrite.cut_iron_stairs": "1000° kniv vs Irony Stairz", + "block.pyrite.cut_iron_wall": "1000° kniv vs Irony Wal", + "block.pyrite.cut_iron_wall_gate": "1000° kniv vs Irony Wal dor", + "block.pyrite.smooth_iron": "Smooth Irony", + "block.pyrite.smooth_iron_slab": "Smooth Irony Sleb", + "block.pyrite.smooth_iron_stairs": "Smooth Irony Stairz", + "block.pyrite.smooth_iron_wall": "Smooth Irony Wal", + "block.pyrite.smooth_iron_wall_gate": "Smooth Irony Wal dor", + "block.pyrite.iron_bricks": "Irony Bricks", + "block.pyrite.iron_pillar": "Irony piler", + "block.pyrite.chiseled_iron_block": "Chizald Irony Blak", + "block.pyrite.nostalgia_iron_block": "OLD Irony Blak", + "block.pyrite.iron_button": "Irony Button", + "block.pyrite.cut_gold": "1000° kniv vs Shiny", + "block.pyrite.cut_gold_slab": "1000° kniv vs Shiny half blok", + "block.pyrite.cut_gold_stairs": "1000° kniv vs Shiny Stairz", + "block.pyrite.cut_gold_wall": "1000° kniv vs Shiny Wal", + "block.pyrite.cut_gold_wall_gate": "1000° kniv vs Shiny Wal dor", + "block.pyrite.smooth_gold": "Smooth Shiny", + "block.pyrite.smooth_gold_slab": "Smooth Shiny half blok", + "block.pyrite.smooth_gold_stairs": "Smooth Shiny Stairz", + "block.pyrite.smooth_gold_wall": "Smooth Shiny Wal", + "block.pyrite.smooth_gold_wall_gate": "Smooth Shiny Wal dor", + "block.pyrite.gold_bricks": "Shiny Bricks", + "block.pyrite.gold_pillar": "Shiny piler", + "block.pyrite.gold_bars": "Shiny Jeil Bahz", + "block.pyrite.chiseled_gold_block": "Chizald Shiny Blak", + "block.pyrite.gold_door": "Shiny Dor", + "block.pyrite.gold_trapdoor": "Shiny Trap", + "block.pyrite.nostalgia_gold_block": "OLD Shiny Blak", + "block.pyrite.gold_button": "Shiny Button", + "block.pyrite.cut_emerald": "1000° kniv vs Emerald", + "block.pyrite.cut_emerald_slab": "1000° kniv vs Emmiez half blok", + "block.pyrite.cut_emerald_stairs": "1000° kniv vs Emmiez Stairz", + "block.pyrite.cut_emerald_wall": "1000° kniv vs Emmiez Wal", + "block.pyrite.cut_emerald_wall_gate": "1000° kniv vs Emmiez Wal dor", + "block.pyrite.smooth_emerald": "Smooth Emerald", + "block.pyrite.smooth_emerald_slab": "Smooth Emmiez half blok", + "block.pyrite.smooth_emerald_stairs": "Smooth Emmiez Stairz", + "block.pyrite.smooth_emerald_wall": "Smooth Emmiez Wal", + "block.pyrite.smooth_emerald_wall_gate": "Smooth Emmiez Wal dor", + "block.pyrite.emerald_bricks": "Emmiez Bricks", + "block.pyrite.emerald_pillar": "Emmiez piler", + "block.pyrite.emerald_bars": "Emmiez Jeil Bahz", + "block.pyrite.chiseled_emerald_block": "Chizald Emmiez Blak", + "block.pyrite.emerald_door": "Emmiez Dor", + "block.pyrite.emerald_trapdoor": "Emmiez Trap", + "block.pyrite.nostalgia_emerald_block": "OLD Emmiez Blak", + "block.pyrite.emerald_button": "Emmiez Button", + "block.pyrite.emerald_pressure_plate": "Emmiez prueusure platt", + "block.pyrite.cut_diamond": "1000° kniv vs Diamond", + "block.pyrite.cut_diamond_slab": "1000° kniv vs Diamond Sleb", + "block.pyrite.cut_diamond_stairs": "1000° kniv vs Diamond Stairz", + "block.pyrite.cut_diamond_wall": "1000° kniv vs Diamond Wal", + "block.pyrite.cut_diamond_wall_gate": "1000° kniv vs Diamond Wal dor", + "block.pyrite.smooth_diamond": "Smooth Diamond", + "block.pyrite.smooth_diamond_slab": "Smooth Diamond half blok", + "block.pyrite.smooth_diamond_stairs": "Smooth Diamond Stairz", + "block.pyrite.smooth_diamond_wall": "Smooth Diamond Wal", + "block.pyrite.smooth_diamond_wall_gate": "Smooth Diamond Wal dor", + "block.pyrite.diamond_bricks": "Diamond Bricks", + "block.pyrite.diamond_pillar": "Diamond piler", + "block.pyrite.diamond_bars": "Diamond Jeil Bahz", + "block.pyrite.chiseled_diamond_block": "Chizald Diamond Blak", + "block.pyrite.diamond_door": "Diamond Dor", + "block.pyrite.diamond_trapdoor": "Diamond Trap", + "block.pyrite.nostalgia_diamond_block": "OLD Diamond Blak", + "block.pyrite.diamond_button": "Diamond Button", + "block.pyrite.diamond_pressure_plate": "Diamond prueusure platt", + "block.pyrite.cut_netherite": "1000° kniv vs Netherite", + "block.pyrite.cut_netherite_slab": "1000° kniv vs Netherite half blok", + "block.pyrite.cut_netherite_stairs": "1000° kniv vs Netherite Stairz", + "block.pyrite.cut_netherite_wall": "1000° kniv vs Netherite Wal", + "block.pyrite.cut_netherite_wall_gate": "1000° kniv vs Netherite Wal dor", + "block.pyrite.smooth_netherite": "Smooth Netherite", + "block.pyrite.smooth_netherite_slab": "Smooth Netherite half blok", + "block.pyrite.smooth_netherite_stairs": "Smooth Netherite Stairz", + "block.pyrite.smooth_netherite_wall": "Smooth Netherite Wal", + "block.pyrite.smooth_netherite_wall_gate": "Smooth Netherite Wal dor", + "block.pyrite.netherite_bricks": "Netherite Bricks", + "block.pyrite.netherite_pillar": "Netherite piler", + "block.pyrite.netherite_bars": "Netherite Jeil Bahz", + "block.pyrite.chiseled_netherite_block": "Chizald Netherite Blak", + "block.pyrite.netherite_door": "Netherite Dor", + "block.pyrite.netherite_trapdoor": "Netherite Trap", + "block.pyrite.nostalgia_netherite_block": "OLD Netherite Blak", + "block.pyrite.netherite_button": "Netherite Button", + "block.pyrite.netherite_pressure_plate": "Netherite prueusure platt", + "block.pyrite.cut_quartz": "1000° kniv vs Kwartz", + "block.pyrite.cut_quartz_slab": "1000° kniv vs Kwartz half blok", + "block.pyrite.cut_quartz_stairs": "1000° kniv vs Kwartz Stairz", + "block.pyrite.cut_quartz_wall": "1000° kniv vs Kwartz Wal", + "block.pyrite.cut_quartz_wall_gate": "1000° kniv vs Kwartz Wal dor", + "block.pyrite.smooth_quartz_wall": "Smooth Kwartz Wal", + "block.pyrite.smooth_quartz_wall_gate": "Smooth Kwartz Wal dor", + "block.pyrite.quartz_bars": "Kwartz Jeil Bahz", + "block.pyrite.quartz_door": "Kwartz Dor", + "block.pyrite.quartz_trapdoor": "Kwartz Trap", + "block.pyrite.nostalgia_quartz_block": "OLD Kwartz Blak", + "block.pyrite.quartz_button": "Kwartz Button", + "block.pyrite.quartz_pressure_plate": "Kwartz prueusure platt", + "block.pyrite.cut_amethyst": "1000° kniv vs Purpur shinee", + "block.pyrite.cut_amethyst_slab": "1000° kniv vs Purpur shinee Sleb", + "block.pyrite.cut_amethyst_stairs": "1000° kniv vs Purpur shinee Stairz", + "block.pyrite.cut_amethyst_wall": "1000° kniv vs Purpur shinee Wal", + "block.pyrite.cut_amethyst_wall_gate": "1000° kniv vs Purpur shinee Wal dor", + "block.pyrite.smooth_amethyst": "Smooth Purpur shinee", + "block.pyrite.smooth_amethyst_slab": "Smooth Purpur shinee Sleb", + "block.pyrite.smooth_amethyst_stairs": "Smooth Purpur shinee Stairz", + "block.pyrite.smooth_amethyst_wall": "Smooth Purpur shinee Wal", + "block.pyrite.smooth_amethyst_wall_gate": "Smooth Purpur shinee Wal dor", + "block.pyrite.amethyst_bricks": "Purpur shinee Bricks", + "block.pyrite.amethyst_pillar": "Purpur shinee piler", + "block.pyrite.amethyst_bars": "Purpur shinee Jeil Bahz", + "block.pyrite.chiseled_amethyst_block": "Chizald Purpur shinee Blak", + "block.pyrite.amethyst_door": "Purpur shinee Dor", + "block.pyrite.amethyst_trapdoor": "Purpur shinee Trap", + "block.pyrite.nostalgia_amethyst_block": "OLD Purpur shinee Blak", + "block.pyrite.amethyst_button": "Purpur shinee Button", + "block.pyrite.amethyst_pressure_plate": "Purpur shinee prueusure platt", + "block.pyrite.cut_lapis": "1000° kniv vs Lapis", + "block.pyrite.cut_lapis_slab": "1000° kniv vs Glosy Blu Sleb", + "block.pyrite.cut_lapis_stairs": "1000° kniv vs Glosy Blu Stairz", + "block.pyrite.cut_lapis_wall": "1000° kniv vs Glosy Blu Wal", + "block.pyrite.cut_lapis_wall_gate": "1000° kniv vs Glosy Blu Wal dor", + "block.pyrite.smooth_lapis": "Smooth Lapis", + "block.pyrite.smooth_lapis_slab": "Smooth Glosy Blu Sleb", + "block.pyrite.smooth_lapis_stairs": "Smooth Glosy Blu Stairz", + "block.pyrite.smooth_lapis_wall": "Smooth Glosy Blu Wal", + "block.pyrite.smooth_lapis_wall_gate": "Smooth Glosy Blu Wal dor", + "block.pyrite.lapis_bricks": "Glosy Blu Bricks", + "block.pyrite.lapis_pillar": "Glosy Blu piler", + "block.pyrite.lapis_bars": "Glosy Blu Jeil Bahz", + "block.pyrite.chiseled_lapis_block": "Chizald Glosy Blu Blak", + "block.pyrite.lapis_door": "Glosy Blu Dor", + "block.pyrite.lapis_trapdoor": "Glosy Blu Trap", + "block.pyrite.nostalgia_lapis_block": "OLD Glosy Blu Blak", + "block.pyrite.lapis_button": "Glosy Blu Button", + "block.pyrite.lapis_pressure_plate": "Glosy Blu prueusure platt", + "block.pyrite.cut_redstone": "1000° kniv vs Redstone", + "block.pyrite.cut_redstone_slab": "1000° kniv vs Redstone Sleb", + "block.pyrite.cut_redstone_stairs": "1000° kniv vs Redstone Stairz", + "block.pyrite.cut_redstone_wall": "1000° kniv vs Redstone Wal", + "block.pyrite.cut_redstone_wall_gate": "1000° kniv vs Redstone Wal dor", + "block.pyrite.smooth_redstone": "Smooth Redstone", + "block.pyrite.smooth_redstone_slab": "Smooth Redstone Sleb", + "block.pyrite.smooth_redstone_stairs": "Smooth Redstone Stairz", + "block.pyrite.smooth_redstone_wall": "Smooth Redstone Wal", + "block.pyrite.smooth_redstone_wall_gate": "Smooth Redstone Wal dor", + "block.pyrite.redstone_bricks": "Redstone Bricks", + "block.pyrite.redstone_pillar": "Redstone piler", + "block.pyrite.redstone_bars": "Redstone Jeil Bahz", + "block.pyrite.chiseled_redstone_block": "Chizald Redstone Blak", + "block.pyrite.redstone_door": "Redstone Dor", + "block.pyrite.redstone_trapdoor": "Redstone Trap", + "block.pyrite.nostalgia_redstone_block": "OLD Redstone Blak", + "block.pyrite.redstone_button": "Redstone Button", + "block.pyrite.redstone_pressure_plate": "Redstone prueusure platt", + "block.pyrite.cut_copper_wall": "1000° kniv vs cuprr Wal", + "block.pyrite.cut_copper_wall_gate": "1000° kniv vs cuprr Wal dor", + "block.pyrite.smooth_copper": "Smooth copurr", + "block.pyrite.smooth_copper_slab": "Smooth copurr half blok", + "block.pyrite.smooth_copper_stairs": "Smooth copurr Stairz", + "block.pyrite.smooth_copper_wall": "Smooth copurr Wal", + "block.pyrite.smooth_copper_wall_gate": "Smooth copurr Wal dor", + "block.pyrite.copper_bricks": "cuprr Bricks", + "block.pyrite.copper_pillar": "cuprr piler", + "block.pyrite.copper_bars": "cuprr Jeil Bahz", + "block.pyrite.chiseled_copper_block": "Chizald cuprr Blak", + "block.pyrite.copper_door": "copurr Dor", + "block.pyrite.copper_trapdoor": "cuprr Trap", + "block.pyrite.nostalgia_copper_block": "OLD copurr Blak", + "block.pyrite.copper_button": "copurr Button", + "block.pyrite.copper_pressure_plate": "cuprr prueusure platt", + "block.pyrite.cut_exposed_copper_wall": "1000° kniv vs Seen cuprr Wal", + "block.pyrite.cut_exposed_copper_wall_gate": "1000° kniv vs Seen cuprr Wal dor", + "block.pyrite.smooth_exposed_copper": "Smooth Seen copurr", + "block.pyrite.smooth_exposed_copper_slab": "Smooth Seen cuprr half blok", + "block.pyrite.smooth_exposed_copper_stairs": "Smooth Seen cuprr Stairz", + "block.pyrite.smooth_exposed_copper_wall": "Smooth Seen copurr Wal", + "block.pyrite.smooth_exposed_copper_wall_gate": "Smooth Seen cuprr Wal dor", + "block.pyrite.exposed_copper_bricks": "Seen cuprr Bricks", + "block.pyrite.exposed_copper_pillar": "Seen cuprr piler", + "block.pyrite.exposed_copper_bars": "Seen copurr Jeil Bahz", + "block.pyrite.chiseled_exposed_copper_block": "Chizald Seen copurr Blak", + "block.pyrite.exposed_copper_door": "Seen cuprr Dor", + "block.pyrite.exposed_copper_trapdoor": "Seen copurr Trap", + "block.pyrite.nostalgia_exposed_copper_block": "OLD Seen cuprr Blak", + "block.pyrite.exposed_copper_button": "Seen cuprr Button", + "block.pyrite.exposed_copper_pressure_plate": "Seen cuprr prueusure platt", + "block.pyrite.cut_weathered_copper_wall": "1000° kniv vs Yucky old cuprr Wal", + "block.pyrite.cut_weathered_copper_wall_gate": "1000° kniv vs Yucky old cuprr Wal dor", + "block.pyrite.smooth_weathered_copper": "Smooth Yucky old cuprr", + "block.pyrite.smooth_weathered_copper_slab": "Smooth Yucky old cuprr Sleb", + "block.pyrite.smooth_weathered_copper_stairs": "Smooth Yucky old cuprr Stairz", + "block.pyrite.smooth_weathered_copper_wall": "Smooth Yucky old copurr Wal", + "block.pyrite.smooth_weathered_copper_wall_gate": "Smooth Yucky old cuprr Wal dor", + "block.pyrite.weathered_copper_bricks": "Yucky old cuprr Bricks", + "block.pyrite.weathered_copper_pillar": "Yucky old cuprr piler", + "block.pyrite.weathered_copper_bars": "Yucky old copurr Jeil Bahz", + "block.pyrite.chiseled_weathered_copper_block": "Chizald Yucky old cuprr Blak", + "block.pyrite.weathered_copper_door": "Yucky old copurr Dor", + "block.pyrite.weathered_copper_trapdoor": "Yucky old copurr Trap", + "block.pyrite.nostalgia_weathered_copper_block": "OLD Yucky old copurr Blak", + "block.pyrite.weathered_copper_button": "Yucky old copurr Button", + "block.pyrite.weathered_copper_pressure_plate": "Yucky old copurr prueusure platt", + "block.pyrite.cut_oxidized_copper_wall": "1000° kniv vs Old copurr Wal", + "block.pyrite.cut_oxidized_copper_wall_gate": "1000° kniv vs Old cuprr Wal dor", + "block.pyrite.smooth_oxidized_copper": "Smooth Old copurr", + "block.pyrite.smooth_oxidized_copper_slab": "Smooth Old cuprr Sleb", + "block.pyrite.smooth_oxidized_copper_stairs": "Smooth Old cuprr Stairz", + "block.pyrite.smooth_oxidized_copper_wall": "Smooth Old cuprr Wal", + "block.pyrite.smooth_oxidized_copper_wall_gate": "Smooth Old copurr Wal dor", + "block.pyrite.oxidized_copper_bricks": "Old cuprr Bricks", + "block.pyrite.oxidized_copper_pillar": "Old cuprr piler", + "block.pyrite.oxidized_copper_bars": "Old cuprr Jeil Bahz", + "block.pyrite.chiseled_oxidized_copper_block": "Chizald Old cuprr Blak", + "block.pyrite.oxidized_copper_door": "Old copurr Dor", + "block.pyrite.oxidized_copper_trapdoor": "Old copurr Trap", + "block.pyrite.nostalgia_oxidized_copper_block": "OLD Old cuprr Blak", + "block.pyrite.oxidized_copper_button": "Old copurr Button", + "block.pyrite.oxidized_copper_pressure_plate": "Old cuprr prueusure platt", + "block.pyrite.rose": "Rose", + "block.pyrite.blue_rose": "Bloo Rose", + "block.pyrite.orange_rose": "Ornge Rose", + "block.pyrite.white_rose": "Wite Rose", + "block.pyrite.pink_rose": "Pinky Rose", + "block.pyrite.paeonia": "Paeonia", + "block.pyrite.pink_daisy": "Pinky Daisy", + "block.pyrite.buttercup": "Buttercup", + "block.pyrite.nether_brick_fence_gate": "Nether Brick Fence dor", + "block.pyrite.switchable_glass": "Switchable Glazz", + "tag.item.pyrite.wall_gates": "Wal dors", + "tag.item.pyrite.lamps": "lapms", + "tag.item.pyrite.bricks": "Bricks", + "tag.item.pyrite.dyed_bricks": "Dyed Bricks", + "tag.item.pyrite.stained_framed_glass": "Stainedly Framed Glazz", + "tag.item.pyrite.fences": "Fences", + "tag.item.pyrite.wool": "Fur Bluk", + "tag.item.pyrite.metal_bars": "Metal Jeil Bahz", + "tag.item.pyrite.planks": "Planks", + "tag.item.pyrite.brick_stairs": "Brick Stairz", + "tag.item.pyrite.metal_trapdoors": "Metal Traps", + "tag.item.pyrite.brick_walls": "Brick Wals", + "tag.item.pyrite.metal_buttons": "Metal Buttons", + "tag.item.pyrite.concrete_slabs": "Concrete half bloks", + "tag.item.pyrite.concrete_stairs": "Concrete Stairz", + "tag.item.c.dyed.honey": "Dyed Honey", + "tag.item.c.dyed.glow": "Dyed Glow", + "tag.item.c.dyed.nostalgia": "Dyed OLD", + "tag.item.c.dyed.poisonous": "Dyed yucky", + "tag.item.c.dyed.rose": "Dyed Rose", + "tag.item.c.dyed.star": "Dyed Asterisk", + "tag.item.c.dyed.dragon": "Dyed Dragon" +} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/tuff_wall_gate.json b/common/src/main/resources/assets/pyrite/models/block/aerogel_wall_gate.json similarity index 68% rename from common/src/main/resources/assets/pyrite/models/block/tuff_wall_gate.json rename to common/src/main/resources/assets/pyrite/models/block/aerogel_wall_gate.json index b0b7f983f..fd950755c 100644 --- a/common/src/main/resources/assets/pyrite/models/block/tuff_wall_gate.json +++ b/common/src/main/resources/assets/pyrite/models/block/aerogel_wall_gate.json @@ -1 +1 @@ -{"parent":"minecraft:block/template_fence_gate","textures":{"texture":"minecraft:block/tuff"}} \ No newline at end of file +{"parent":"minecraft:block/template_fence_gate","textures":{"texture":"aether:block/aerogel"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/tuff_wall_gate_open.json b/common/src/main/resources/assets/pyrite/models/block/aerogel_wall_gate_open.json similarity index 64% rename from common/src/main/resources/assets/pyrite/models/block/tuff_wall_gate_open.json rename to common/src/main/resources/assets/pyrite/models/block/aerogel_wall_gate_open.json index bcb8a7c4a..a8b82fca5 100644 --- a/common/src/main/resources/assets/pyrite/models/block/tuff_wall_gate_open.json +++ b/common/src/main/resources/assets/pyrite/models/block/aerogel_wall_gate_open.json @@ -1 +1 @@ -{"parent":"minecraft:block/template_fence_gate_open","textures":{"texture":"minecraft:block/tuff"}} \ No newline at end of file +{"parent":"minecraft:block/template_fence_gate_open","textures":{"texture":"aether:block/aerogel"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/tuff_wall_gate_wall.json b/common/src/main/resources/assets/pyrite/models/block/aerogel_wall_gate_wall.json similarity index 67% rename from common/src/main/resources/assets/pyrite/models/block/tuff_wall_gate_wall.json rename to common/src/main/resources/assets/pyrite/models/block/aerogel_wall_gate_wall.json index bb65f50d7..2320a9c2c 100644 --- a/common/src/main/resources/assets/pyrite/models/block/tuff_wall_gate_wall.json +++ b/common/src/main/resources/assets/pyrite/models/block/aerogel_wall_gate_wall.json @@ -1 +1 @@ -{"parent":"pyrite:block/template_wall_gate_wall","textures":{"texture":"minecraft:block/tuff"}} \ No newline at end of file +{"parent":"pyrite:block/template_wall_gate_wall","textures":{"texture":"aether:block/aerogel"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/tuff_wall_gate_wall_open.json b/common/src/main/resources/assets/pyrite/models/block/aerogel_wall_gate_wall_open.json similarity index 64% rename from common/src/main/resources/assets/pyrite/models/block/tuff_wall_gate_wall_open.json rename to common/src/main/resources/assets/pyrite/models/block/aerogel_wall_gate_wall_open.json index fef08adb6..da676bd9e 100644 --- a/common/src/main/resources/assets/pyrite/models/block/tuff_wall_gate_wall_open.json +++ b/common/src/main/resources/assets/pyrite/models/block/aerogel_wall_gate_wall_open.json @@ -1 +1 @@ -{"parent":"pyrite:block/template_wall_gate_wall_open","textures":{"texture":"minecraft:block/tuff"}} \ No newline at end of file +{"parent":"pyrite:block/template_wall_gate_wall_open","textures":{"texture":"aether:block/aerogel"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/andesite_brick_slab.json b/common/src/main/resources/assets/pyrite/models/block/andesite_brick_slab.json new file mode 100644 index 000000000..b135626c5 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/andesite_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/slab","textures":{"bottom":"pyrite:block/andesite_bricks","top":"pyrite:block/andesite_bricks","side":"pyrite:block/andesite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/andesite_brick_slab_top.json b/common/src/main/resources/assets/pyrite/models/block/andesite_brick_slab_top.json new file mode 100644 index 000000000..63d43fa9d --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/andesite_brick_slab_top.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/slab_top","textures":{"bottom":"pyrite:block/andesite_bricks","top":"pyrite:block/andesite_bricks","side":"pyrite:block/andesite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/andesite_brick_stairs.json b/common/src/main/resources/assets/pyrite/models/block/andesite_brick_stairs.json new file mode 100644 index 000000000..981159010 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/andesite_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/stairs","textures":{"bottom":"pyrite:block/andesite_bricks","top":"pyrite:block/andesite_bricks","side":"pyrite:block/andesite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/andesite_brick_stairs_inner.json b/common/src/main/resources/assets/pyrite/models/block/andesite_brick_stairs_inner.json new file mode 100644 index 000000000..998f94ba3 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/andesite_brick_stairs_inner.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/inner_stairs","textures":{"bottom":"pyrite:block/andesite_bricks","top":"pyrite:block/andesite_bricks","side":"pyrite:block/andesite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/andesite_brick_stairs_outer.json b/common/src/main/resources/assets/pyrite/models/block/andesite_brick_stairs_outer.json new file mode 100644 index 000000000..b694a1b6a --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/andesite_brick_stairs_outer.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/outer_stairs","textures":{"bottom":"pyrite:block/andesite_bricks","top":"pyrite:block/andesite_bricks","side":"pyrite:block/andesite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/polished_tuff_wall_gate.json b/common/src/main/resources/assets/pyrite/models/block/andesite_brick_wall_gate.json similarity index 62% rename from common/src/main/resources/assets/pyrite/models/block/polished_tuff_wall_gate.json rename to common/src/main/resources/assets/pyrite/models/block/andesite_brick_wall_gate.json index da29e4464..dd644dd4d 100644 --- a/common/src/main/resources/assets/pyrite/models/block/polished_tuff_wall_gate.json +++ b/common/src/main/resources/assets/pyrite/models/block/andesite_brick_wall_gate.json @@ -1 +1 @@ -{"parent":"minecraft:block/template_fence_gate","textures":{"texture":"minecraft:block/polished_tuff"}} \ No newline at end of file +{"parent":"minecraft:block/template_fence_gate","textures":{"texture":"pyrite:block/andesite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/polished_tuff_wall_gate_open.json b/common/src/main/resources/assets/pyrite/models/block/andesite_brick_wall_gate_open.json similarity index 59% rename from common/src/main/resources/assets/pyrite/models/block/polished_tuff_wall_gate_open.json rename to common/src/main/resources/assets/pyrite/models/block/andesite_brick_wall_gate_open.json index 285cc3e74..9a0e78884 100644 --- a/common/src/main/resources/assets/pyrite/models/block/polished_tuff_wall_gate_open.json +++ b/common/src/main/resources/assets/pyrite/models/block/andesite_brick_wall_gate_open.json @@ -1 +1 @@ -{"parent":"minecraft:block/template_fence_gate_open","textures":{"texture":"minecraft:block/polished_tuff"}} \ No newline at end of file +{"parent":"minecraft:block/template_fence_gate_open","textures":{"texture":"pyrite:block/andesite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/polished_tuff_wall_gate_wall.json b/common/src/main/resources/assets/pyrite/models/block/andesite_brick_wall_gate_wall.json similarity index 61% rename from common/src/main/resources/assets/pyrite/models/block/polished_tuff_wall_gate_wall.json rename to common/src/main/resources/assets/pyrite/models/block/andesite_brick_wall_gate_wall.json index ecd585c27..8b4814675 100644 --- a/common/src/main/resources/assets/pyrite/models/block/polished_tuff_wall_gate_wall.json +++ b/common/src/main/resources/assets/pyrite/models/block/andesite_brick_wall_gate_wall.json @@ -1 +1 @@ -{"parent":"pyrite:block/template_wall_gate_wall","textures":{"texture":"minecraft:block/polished_tuff"}} \ No newline at end of file +{"parent":"pyrite:block/template_wall_gate_wall","textures":{"texture":"pyrite:block/andesite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/polished_tuff_wall_gate_wall_open.json b/common/src/main/resources/assets/pyrite/models/block/andesite_brick_wall_gate_wall_open.json similarity index 58% rename from common/src/main/resources/assets/pyrite/models/block/polished_tuff_wall_gate_wall_open.json rename to common/src/main/resources/assets/pyrite/models/block/andesite_brick_wall_gate_wall_open.json index 00c88ac2c..045d1bab1 100644 --- a/common/src/main/resources/assets/pyrite/models/block/polished_tuff_wall_gate_wall_open.json +++ b/common/src/main/resources/assets/pyrite/models/block/andesite_brick_wall_gate_wall_open.json @@ -1 +1 @@ -{"parent":"pyrite:block/template_wall_gate_wall_open","textures":{"texture":"minecraft:block/polished_tuff"}} \ No newline at end of file +{"parent":"pyrite:block/template_wall_gate_wall_open","textures":{"texture":"pyrite:block/andesite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/andesite_brick_wall_inventory.json b/common/src/main/resources/assets/pyrite/models/block/andesite_brick_wall_inventory.json new file mode 100644 index 000000000..be52286f1 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/andesite_brick_wall_inventory.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/wall_inventory","textures":{"wall":"pyrite:block/andesite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/andesite_brick_wall_post.json b/common/src/main/resources/assets/pyrite/models/block/andesite_brick_wall_post.json new file mode 100644 index 000000000..d1cfc09c5 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/andesite_brick_wall_post.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_wall_post","textures":{"wall":"pyrite:block/andesite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/andesite_brick_wall_side.json b/common/src/main/resources/assets/pyrite/models/block/andesite_brick_wall_side.json new file mode 100644 index 000000000..3790f5298 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/andesite_brick_wall_side.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_wall_side","textures":{"wall":"pyrite:block/andesite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/andesite_brick_wall_side_tall.json b/common/src/main/resources/assets/pyrite/models/block/andesite_brick_wall_side_tall.json new file mode 100644 index 000000000..f12f23bbc --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/andesite_brick_wall_side_tall.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_wall_side_tall","textures":{"wall":"pyrite:block/andesite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/andesite_bricks.json b/common/src/main/resources/assets/pyrite/models/block/andesite_bricks.json new file mode 100644 index 000000000..5f1bd0768 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/andesite_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/cube_all","textures":{"all":"pyrite:block/andesite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/tuff_brick_wall_gate.json b/common/src/main/resources/assets/pyrite/models/block/angelic_wall_gate.json similarity index 63% rename from common/src/main/resources/assets/pyrite/models/block/tuff_brick_wall_gate.json rename to common/src/main/resources/assets/pyrite/models/block/angelic_wall_gate.json index 1ed641027..cfe57f3d3 100644 --- a/common/src/main/resources/assets/pyrite/models/block/tuff_brick_wall_gate.json +++ b/common/src/main/resources/assets/pyrite/models/block/angelic_wall_gate.json @@ -1 +1 @@ -{"parent":"minecraft:block/template_fence_gate","textures":{"texture":"minecraft:block/tuff_bricks"}} \ No newline at end of file +{"parent":"minecraft:block/template_fence_gate","textures":{"texture":"aether:block/angelic_stone"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/tuff_brick_wall_gate_open.json b/common/src/main/resources/assets/pyrite/models/block/angelic_wall_gate_open.json similarity index 60% rename from common/src/main/resources/assets/pyrite/models/block/tuff_brick_wall_gate_open.json rename to common/src/main/resources/assets/pyrite/models/block/angelic_wall_gate_open.json index db58f2ae7..5365c40f0 100644 --- a/common/src/main/resources/assets/pyrite/models/block/tuff_brick_wall_gate_open.json +++ b/common/src/main/resources/assets/pyrite/models/block/angelic_wall_gate_open.json @@ -1 +1 @@ -{"parent":"minecraft:block/template_fence_gate_open","textures":{"texture":"minecraft:block/tuff_bricks"}} \ No newline at end of file +{"parent":"minecraft:block/template_fence_gate_open","textures":{"texture":"aether:block/angelic_stone"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/tuff_brick_wall_gate_wall.json b/common/src/main/resources/assets/pyrite/models/block/angelic_wall_gate_wall.json similarity index 62% rename from common/src/main/resources/assets/pyrite/models/block/tuff_brick_wall_gate_wall.json rename to common/src/main/resources/assets/pyrite/models/block/angelic_wall_gate_wall.json index ca5db45f4..eb39effb2 100644 --- a/common/src/main/resources/assets/pyrite/models/block/tuff_brick_wall_gate_wall.json +++ b/common/src/main/resources/assets/pyrite/models/block/angelic_wall_gate_wall.json @@ -1 +1 @@ -{"parent":"pyrite:block/template_wall_gate_wall","textures":{"texture":"minecraft:block/tuff_bricks"}} \ No newline at end of file +{"parent":"pyrite:block/template_wall_gate_wall","textures":{"texture":"aether:block/angelic_stone"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/tuff_brick_wall_gate_wall_open.json b/common/src/main/resources/assets/pyrite/models/block/angelic_wall_gate_wall_open.json similarity index 59% rename from common/src/main/resources/assets/pyrite/models/block/tuff_brick_wall_gate_wall_open.json rename to common/src/main/resources/assets/pyrite/models/block/angelic_wall_gate_wall_open.json index 5a6e6331d..a66dddf2e 100644 --- a/common/src/main/resources/assets/pyrite/models/block/tuff_brick_wall_gate_wall_open.json +++ b/common/src/main/resources/assets/pyrite/models/block/angelic_wall_gate_wall_open.json @@ -1 +1 @@ -{"parent":"pyrite:block/template_wall_gate_wall_open","textures":{"texture":"minecraft:block/tuff_bricks"}} \ No newline at end of file +{"parent":"pyrite:block/template_wall_gate_wall_open","textures":{"texture":"aether:block/angelic_stone"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/calcite_brick_slab.json b/common/src/main/resources/assets/pyrite/models/block/calcite_brick_slab.json new file mode 100644 index 000000000..8c572f857 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/calcite_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/slab","textures":{"bottom":"pyrite:block/calcite_bricks","top":"pyrite:block/calcite_bricks","side":"pyrite:block/calcite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/calcite_brick_slab_top.json b/common/src/main/resources/assets/pyrite/models/block/calcite_brick_slab_top.json new file mode 100644 index 000000000..5bc603a7a --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/calcite_brick_slab_top.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/slab_top","textures":{"bottom":"pyrite:block/calcite_bricks","top":"pyrite:block/calcite_bricks","side":"pyrite:block/calcite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/calcite_brick_stairs.json b/common/src/main/resources/assets/pyrite/models/block/calcite_brick_stairs.json new file mode 100644 index 000000000..edc1fdb70 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/calcite_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/stairs","textures":{"bottom":"pyrite:block/calcite_bricks","top":"pyrite:block/calcite_bricks","side":"pyrite:block/calcite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/calcite_brick_stairs_inner.json b/common/src/main/resources/assets/pyrite/models/block/calcite_brick_stairs_inner.json new file mode 100644 index 000000000..e3caccbfc --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/calcite_brick_stairs_inner.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/inner_stairs","textures":{"bottom":"pyrite:block/calcite_bricks","top":"pyrite:block/calcite_bricks","side":"pyrite:block/calcite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/calcite_brick_stairs_outer.json b/common/src/main/resources/assets/pyrite/models/block/calcite_brick_stairs_outer.json new file mode 100644 index 000000000..213e581b9 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/calcite_brick_stairs_outer.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/outer_stairs","textures":{"bottom":"pyrite:block/calcite_bricks","top":"pyrite:block/calcite_bricks","side":"pyrite:block/calcite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/calcite_brick_wall_gate.json b/common/src/main/resources/assets/pyrite/models/block/calcite_brick_wall_gate.json new file mode 100644 index 000000000..1097ab63c --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/calcite_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_fence_gate","textures":{"texture":"pyrite:block/calcite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/calcite_brick_wall_gate_open.json b/common/src/main/resources/assets/pyrite/models/block/calcite_brick_wall_gate_open.json new file mode 100644 index 000000000..644184003 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/calcite_brick_wall_gate_open.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_fence_gate_open","textures":{"texture":"pyrite:block/calcite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/calcite_brick_wall_gate_wall.json b/common/src/main/resources/assets/pyrite/models/block/calcite_brick_wall_gate_wall.json new file mode 100644 index 000000000..ae1227fdc --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/calcite_brick_wall_gate_wall.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/template_wall_gate_wall","textures":{"texture":"pyrite:block/calcite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/calcite_brick_wall_gate_wall_open.json b/common/src/main/resources/assets/pyrite/models/block/calcite_brick_wall_gate_wall_open.json new file mode 100644 index 000000000..9e3b55fe7 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/calcite_brick_wall_gate_wall_open.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/template_wall_gate_wall_open","textures":{"texture":"pyrite:block/calcite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/calcite_brick_wall_inventory.json b/common/src/main/resources/assets/pyrite/models/block/calcite_brick_wall_inventory.json new file mode 100644 index 000000000..690c107cd --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/calcite_brick_wall_inventory.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/wall_inventory","textures":{"wall":"pyrite:block/calcite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/calcite_brick_wall_post.json b/common/src/main/resources/assets/pyrite/models/block/calcite_brick_wall_post.json new file mode 100644 index 000000000..63df3ef3c --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/calcite_brick_wall_post.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_wall_post","textures":{"wall":"pyrite:block/calcite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/calcite_brick_wall_side.json b/common/src/main/resources/assets/pyrite/models/block/calcite_brick_wall_side.json new file mode 100644 index 000000000..e437a3acf --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/calcite_brick_wall_side.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_wall_side","textures":{"wall":"pyrite:block/calcite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/calcite_brick_wall_side_tall.json b/common/src/main/resources/assets/pyrite/models/block/calcite_brick_wall_side_tall.json new file mode 100644 index 000000000..9fc03f50d --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/calcite_brick_wall_side_tall.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_wall_side_tall","textures":{"wall":"pyrite:block/calcite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/calcite_bricks.json b/common/src/main/resources/assets/pyrite/models/block/calcite_bricks.json new file mode 100644 index 000000000..217107187 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/calcite_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/cube_all","textures":{"all":"pyrite:block/calcite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/carved_wall_gate.json b/common/src/main/resources/assets/pyrite/models/block/carved_wall_gate.json new file mode 100644 index 000000000..534f4a233 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/carved_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_fence_gate","textures":{"texture":"aether:block/carved_stone"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/carved_wall_gate_open.json b/common/src/main/resources/assets/pyrite/models/block/carved_wall_gate_open.json new file mode 100644 index 000000000..b58a7c01a --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/carved_wall_gate_open.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_fence_gate_open","textures":{"texture":"aether:block/carved_stone"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/carved_wall_gate_wall.json b/common/src/main/resources/assets/pyrite/models/block/carved_wall_gate_wall.json new file mode 100644 index 000000000..ee57d9f3b --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/carved_wall_gate_wall.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/template_wall_gate_wall","textures":{"texture":"aether:block/carved_stone"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/carved_wall_gate_wall_open.json b/common/src/main/resources/assets/pyrite/models/block/carved_wall_gate_wall_open.json new file mode 100644 index 000000000..c8cee0328 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/carved_wall_gate_wall_open.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/template_wall_gate_wall_open","textures":{"texture":"aether:block/carved_stone"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/diorite_brick_slab.json b/common/src/main/resources/assets/pyrite/models/block/diorite_brick_slab.json new file mode 100644 index 000000000..1ed65f0fe --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/diorite_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/slab","textures":{"bottom":"pyrite:block/diorite_bricks","top":"pyrite:block/diorite_bricks","side":"pyrite:block/diorite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/diorite_brick_slab_top.json b/common/src/main/resources/assets/pyrite/models/block/diorite_brick_slab_top.json new file mode 100644 index 000000000..f43a3edff --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/diorite_brick_slab_top.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/slab_top","textures":{"bottom":"pyrite:block/diorite_bricks","top":"pyrite:block/diorite_bricks","side":"pyrite:block/diorite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/diorite_brick_stairs.json b/common/src/main/resources/assets/pyrite/models/block/diorite_brick_stairs.json new file mode 100644 index 000000000..1875740d8 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/diorite_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/stairs","textures":{"bottom":"pyrite:block/diorite_bricks","top":"pyrite:block/diorite_bricks","side":"pyrite:block/diorite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/diorite_brick_stairs_inner.json b/common/src/main/resources/assets/pyrite/models/block/diorite_brick_stairs_inner.json new file mode 100644 index 000000000..cfd9843a8 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/diorite_brick_stairs_inner.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/inner_stairs","textures":{"bottom":"pyrite:block/diorite_bricks","top":"pyrite:block/diorite_bricks","side":"pyrite:block/diorite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/diorite_brick_stairs_outer.json b/common/src/main/resources/assets/pyrite/models/block/diorite_brick_stairs_outer.json new file mode 100644 index 000000000..d78205fa3 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/diorite_brick_stairs_outer.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/outer_stairs","textures":{"bottom":"pyrite:block/diorite_bricks","top":"pyrite:block/diorite_bricks","side":"pyrite:block/diorite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/diorite_brick_wall_gate.json b/common/src/main/resources/assets/pyrite/models/block/diorite_brick_wall_gate.json new file mode 100644 index 000000000..4a63a48bc --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/diorite_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_fence_gate","textures":{"texture":"pyrite:block/diorite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/diorite_brick_wall_gate_open.json b/common/src/main/resources/assets/pyrite/models/block/diorite_brick_wall_gate_open.json new file mode 100644 index 000000000..6a1de0598 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/diorite_brick_wall_gate_open.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_fence_gate_open","textures":{"texture":"pyrite:block/diorite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/diorite_brick_wall_gate_wall.json b/common/src/main/resources/assets/pyrite/models/block/diorite_brick_wall_gate_wall.json new file mode 100644 index 000000000..cd2047860 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/diorite_brick_wall_gate_wall.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/template_wall_gate_wall","textures":{"texture":"pyrite:block/diorite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/diorite_brick_wall_gate_wall_open.json b/common/src/main/resources/assets/pyrite/models/block/diorite_brick_wall_gate_wall_open.json new file mode 100644 index 000000000..67d32af6b --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/diorite_brick_wall_gate_wall_open.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/template_wall_gate_wall_open","textures":{"texture":"pyrite:block/diorite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/diorite_brick_wall_inventory.json b/common/src/main/resources/assets/pyrite/models/block/diorite_brick_wall_inventory.json new file mode 100644 index 000000000..b4ecff96a --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/diorite_brick_wall_inventory.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/wall_inventory","textures":{"wall":"pyrite:block/diorite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/diorite_brick_wall_post.json b/common/src/main/resources/assets/pyrite/models/block/diorite_brick_wall_post.json new file mode 100644 index 000000000..081c717de --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/diorite_brick_wall_post.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_wall_post","textures":{"wall":"pyrite:block/diorite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/diorite_brick_wall_side.json b/common/src/main/resources/assets/pyrite/models/block/diorite_brick_wall_side.json new file mode 100644 index 000000000..d6893216f --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/diorite_brick_wall_side.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_wall_side","textures":{"wall":"pyrite:block/diorite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/diorite_brick_wall_side_tall.json b/common/src/main/resources/assets/pyrite/models/block/diorite_brick_wall_side_tall.json new file mode 100644 index 000000000..2f21dfb4e --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/diorite_brick_wall_side_tall.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_wall_side_tall","textures":{"wall":"pyrite:block/diorite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/diorite_bricks.json b/common/src/main/resources/assets/pyrite/models/block/diorite_bricks.json new file mode 100644 index 000000000..7f128e383 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/diorite_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/cube_all","textures":{"all":"pyrite:block/diorite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/granite_brick_slab.json b/common/src/main/resources/assets/pyrite/models/block/granite_brick_slab.json new file mode 100644 index 000000000..a9affac9a --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/granite_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/slab","textures":{"bottom":"pyrite:block/granite_bricks","top":"pyrite:block/granite_bricks","side":"pyrite:block/granite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/granite_brick_slab_top.json b/common/src/main/resources/assets/pyrite/models/block/granite_brick_slab_top.json new file mode 100644 index 000000000..3b2af4f46 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/granite_brick_slab_top.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/slab_top","textures":{"bottom":"pyrite:block/granite_bricks","top":"pyrite:block/granite_bricks","side":"pyrite:block/granite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/granite_brick_stairs.json b/common/src/main/resources/assets/pyrite/models/block/granite_brick_stairs.json new file mode 100644 index 000000000..68619c644 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/granite_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/stairs","textures":{"bottom":"pyrite:block/granite_bricks","top":"pyrite:block/granite_bricks","side":"pyrite:block/granite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/granite_brick_stairs_inner.json b/common/src/main/resources/assets/pyrite/models/block/granite_brick_stairs_inner.json new file mode 100644 index 000000000..368278755 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/granite_brick_stairs_inner.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/inner_stairs","textures":{"bottom":"pyrite:block/granite_bricks","top":"pyrite:block/granite_bricks","side":"pyrite:block/granite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/granite_brick_stairs_outer.json b/common/src/main/resources/assets/pyrite/models/block/granite_brick_stairs_outer.json new file mode 100644 index 000000000..77f406c6a --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/granite_brick_stairs_outer.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/outer_stairs","textures":{"bottom":"pyrite:block/granite_bricks","top":"pyrite:block/granite_bricks","side":"pyrite:block/granite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/granite_brick_wall_gate.json b/common/src/main/resources/assets/pyrite/models/block/granite_brick_wall_gate.json new file mode 100644 index 000000000..86e92c599 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/granite_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_fence_gate","textures":{"texture":"pyrite:block/granite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/granite_brick_wall_gate_open.json b/common/src/main/resources/assets/pyrite/models/block/granite_brick_wall_gate_open.json new file mode 100644 index 000000000..c4d60940c --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/granite_brick_wall_gate_open.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_fence_gate_open","textures":{"texture":"pyrite:block/granite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/granite_brick_wall_gate_wall.json b/common/src/main/resources/assets/pyrite/models/block/granite_brick_wall_gate_wall.json new file mode 100644 index 000000000..57dfb8cbc --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/granite_brick_wall_gate_wall.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/template_wall_gate_wall","textures":{"texture":"pyrite:block/granite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/granite_brick_wall_gate_wall_open.json b/common/src/main/resources/assets/pyrite/models/block/granite_brick_wall_gate_wall_open.json new file mode 100644 index 000000000..6f8c9de73 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/granite_brick_wall_gate_wall_open.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/template_wall_gate_wall_open","textures":{"texture":"pyrite:block/granite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/granite_brick_wall_inventory.json b/common/src/main/resources/assets/pyrite/models/block/granite_brick_wall_inventory.json new file mode 100644 index 000000000..cd2ce61bb --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/granite_brick_wall_inventory.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/wall_inventory","textures":{"wall":"pyrite:block/granite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/granite_brick_wall_post.json b/common/src/main/resources/assets/pyrite/models/block/granite_brick_wall_post.json new file mode 100644 index 000000000..15e5529c4 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/granite_brick_wall_post.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_wall_post","textures":{"wall":"pyrite:block/granite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/granite_brick_wall_side.json b/common/src/main/resources/assets/pyrite/models/block/granite_brick_wall_side.json new file mode 100644 index 000000000..eaba482b5 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/granite_brick_wall_side.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_wall_side","textures":{"wall":"pyrite:block/granite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/granite_brick_wall_side_tall.json b/common/src/main/resources/assets/pyrite/models/block/granite_brick_wall_side_tall.json new file mode 100644 index 000000000..2ac67be3f --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/granite_brick_wall_side_tall.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_wall_side_tall","textures":{"wall":"pyrite:block/granite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/granite_bricks.json b/common/src/main/resources/assets/pyrite/models/block/granite_bricks.json new file mode 100644 index 000000000..a08673521 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/granite_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/cube_all","textures":{"all":"pyrite:block/granite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/hellfire_wall_gate.json b/common/src/main/resources/assets/pyrite/models/block/hellfire_wall_gate.json new file mode 100644 index 000000000..a0234d120 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/hellfire_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_fence_gate","textures":{"texture":"aether:block/hellfire_stone"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/hellfire_wall_gate_open.json b/common/src/main/resources/assets/pyrite/models/block/hellfire_wall_gate_open.json new file mode 100644 index 000000000..f17e10056 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/hellfire_wall_gate_open.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_fence_gate_open","textures":{"texture":"aether:block/hellfire_stone"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/hellfire_wall_gate_wall.json b/common/src/main/resources/assets/pyrite/models/block/hellfire_wall_gate_wall.json new file mode 100644 index 000000000..2ea222d93 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/hellfire_wall_gate_wall.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/template_wall_gate_wall","textures":{"texture":"aether:block/hellfire_stone"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/hellfire_wall_gate_wall_open.json b/common/src/main/resources/assets/pyrite/models/block/hellfire_wall_gate_wall_open.json new file mode 100644 index 000000000..24ba9a0f6 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/hellfire_wall_gate_wall_open.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/template_wall_gate_wall_open","textures":{"texture":"aether:block/hellfire_stone"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/holystone_brick_wall_gate.json b/common/src/main/resources/assets/pyrite/models/block/holystone_brick_wall_gate.json new file mode 100644 index 000000000..1a20edfef --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/holystone_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_fence_gate","textures":{"texture":"aether:block/holystone_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/holystone_brick_wall_gate_open.json b/common/src/main/resources/assets/pyrite/models/block/holystone_brick_wall_gate_open.json new file mode 100644 index 000000000..180122abb --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/holystone_brick_wall_gate_open.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_fence_gate_open","textures":{"texture":"aether:block/holystone_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/holystone_brick_wall_gate_wall.json b/common/src/main/resources/assets/pyrite/models/block/holystone_brick_wall_gate_wall.json new file mode 100644 index 000000000..dc4eb5b85 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/holystone_brick_wall_gate_wall.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/template_wall_gate_wall","textures":{"texture":"aether:block/holystone_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/holystone_brick_wall_gate_wall_open.json b/common/src/main/resources/assets/pyrite/models/block/holystone_brick_wall_gate_wall_open.json new file mode 100644 index 000000000..db035fec7 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/holystone_brick_wall_gate_wall_open.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/template_wall_gate_wall_open","textures":{"texture":"aether:block/holystone_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/holystone_wall_gate.json b/common/src/main/resources/assets/pyrite/models/block/holystone_wall_gate.json new file mode 100644 index 000000000..774f4aac5 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/holystone_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_fence_gate","textures":{"texture":"aether:block/holystone"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/holystone_wall_gate_open.json b/common/src/main/resources/assets/pyrite/models/block/holystone_wall_gate_open.json new file mode 100644 index 000000000..103bc7ffb --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/holystone_wall_gate_open.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_fence_gate_open","textures":{"texture":"aether:block/holystone"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/holystone_wall_gate_wall.json b/common/src/main/resources/assets/pyrite/models/block/holystone_wall_gate_wall.json new file mode 100644 index 000000000..275709ba5 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/holystone_wall_gate_wall.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/template_wall_gate_wall","textures":{"texture":"aether:block/holystone"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/holystone_wall_gate_wall_open.json b/common/src/main/resources/assets/pyrite/models/block/holystone_wall_gate_wall_open.json new file mode 100644 index 000000000..4e6b882f5 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/holystone_wall_gate_wall_open.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/template_wall_gate_wall_open","textures":{"texture":"aether:block/holystone"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/icestone_wall_gate.json b/common/src/main/resources/assets/pyrite/models/block/icestone_wall_gate.json new file mode 100644 index 000000000..671eeca02 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/icestone_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_fence_gate","textures":{"texture":"aether:block/icestone"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/icestone_wall_gate_open.json b/common/src/main/resources/assets/pyrite/models/block/icestone_wall_gate_open.json new file mode 100644 index 000000000..67ae89bc1 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/icestone_wall_gate_open.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_fence_gate_open","textures":{"texture":"aether:block/icestone"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/icestone_wall_gate_wall.json b/common/src/main/resources/assets/pyrite/models/block/icestone_wall_gate_wall.json new file mode 100644 index 000000000..e724a26de --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/icestone_wall_gate_wall.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/template_wall_gate_wall","textures":{"texture":"aether:block/icestone"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/icestone_wall_gate_wall_open.json b/common/src/main/resources/assets/pyrite/models/block/icestone_wall_gate_wall_open.json new file mode 100644 index 000000000..a9ff04566 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/icestone_wall_gate_wall_open.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/template_wall_gate_wall_open","textures":{"texture":"aether:block/icestone"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_slab.json b/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_slab.json new file mode 100644 index 000000000..ecf4bd9ad --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/slab","textures":{"bottom":"pyrite:block/mossy_andesite_bricks","top":"pyrite:block/mossy_andesite_bricks","side":"pyrite:block/mossy_andesite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_slab_top.json b/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_slab_top.json new file mode 100644 index 000000000..5d9821b6b --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_slab_top.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/slab_top","textures":{"bottom":"pyrite:block/mossy_andesite_bricks","top":"pyrite:block/mossy_andesite_bricks","side":"pyrite:block/mossy_andesite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_stairs.json b/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_stairs.json new file mode 100644 index 000000000..cfdff7d3f --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/stairs","textures":{"bottom":"pyrite:block/mossy_andesite_bricks","top":"pyrite:block/mossy_andesite_bricks","side":"pyrite:block/mossy_andesite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_stairs_inner.json b/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_stairs_inner.json new file mode 100644 index 000000000..04d69a2af --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_stairs_inner.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/inner_stairs","textures":{"bottom":"pyrite:block/mossy_andesite_bricks","top":"pyrite:block/mossy_andesite_bricks","side":"pyrite:block/mossy_andesite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_stairs_outer.json b/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_stairs_outer.json new file mode 100644 index 000000000..d2d0a1748 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_stairs_outer.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/outer_stairs","textures":{"bottom":"pyrite:block/mossy_andesite_bricks","top":"pyrite:block/mossy_andesite_bricks","side":"pyrite:block/mossy_andesite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_wall_gate.json b/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_wall_gate.json new file mode 100644 index 000000000..f770d3460 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_fence_gate","textures":{"texture":"pyrite:block/mossy_andesite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_wall_gate_open.json b/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_wall_gate_open.json new file mode 100644 index 000000000..f5c1f5575 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_wall_gate_open.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_fence_gate_open","textures":{"texture":"pyrite:block/mossy_andesite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_wall_gate_wall.json b/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_wall_gate_wall.json new file mode 100644 index 000000000..5c2153ea7 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_wall_gate_wall.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/template_wall_gate_wall","textures":{"texture":"pyrite:block/mossy_andesite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_wall_gate_wall_open.json b/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_wall_gate_wall_open.json new file mode 100644 index 000000000..faacfcbad --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_wall_gate_wall_open.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/template_wall_gate_wall_open","textures":{"texture":"pyrite:block/mossy_andesite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_wall_inventory.json b/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_wall_inventory.json new file mode 100644 index 000000000..595cbd27c --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_wall_inventory.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/wall_inventory","textures":{"wall":"pyrite:block/mossy_andesite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_wall_post.json b/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_wall_post.json new file mode 100644 index 000000000..35872a649 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_wall_post.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_wall_post","textures":{"wall":"pyrite:block/mossy_andesite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_wall_side.json b/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_wall_side.json new file mode 100644 index 000000000..3f65c2c33 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_wall_side.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_wall_side","textures":{"wall":"pyrite:block/mossy_andesite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_wall_side_tall.json b/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_wall_side_tall.json new file mode 100644 index 000000000..1a4112f33 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_brick_wall_side_tall.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_wall_side_tall","textures":{"wall":"pyrite:block/mossy_andesite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_bricks.json b/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_bricks.json new file mode 100644 index 000000000..2a26ea9fa --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_andesite_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/cube_all","textures":{"all":"pyrite:block/mossy_andesite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_slab.json b/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_slab.json new file mode 100644 index 000000000..5da74b198 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/slab","textures":{"bottom":"pyrite:block/mossy_calcite_bricks","top":"pyrite:block/mossy_calcite_bricks","side":"pyrite:block/mossy_calcite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_slab_top.json b/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_slab_top.json new file mode 100644 index 000000000..a0ebc4faa --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_slab_top.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/slab_top","textures":{"bottom":"pyrite:block/mossy_calcite_bricks","top":"pyrite:block/mossy_calcite_bricks","side":"pyrite:block/mossy_calcite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_stairs.json b/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_stairs.json new file mode 100644 index 000000000..7ffd28b5e --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/stairs","textures":{"bottom":"pyrite:block/mossy_calcite_bricks","top":"pyrite:block/mossy_calcite_bricks","side":"pyrite:block/mossy_calcite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_stairs_inner.json b/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_stairs_inner.json new file mode 100644 index 000000000..20733f354 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_stairs_inner.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/inner_stairs","textures":{"bottom":"pyrite:block/mossy_calcite_bricks","top":"pyrite:block/mossy_calcite_bricks","side":"pyrite:block/mossy_calcite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_stairs_outer.json b/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_stairs_outer.json new file mode 100644 index 000000000..3b398f8b5 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_stairs_outer.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/outer_stairs","textures":{"bottom":"pyrite:block/mossy_calcite_bricks","top":"pyrite:block/mossy_calcite_bricks","side":"pyrite:block/mossy_calcite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_wall_gate.json b/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_wall_gate.json new file mode 100644 index 000000000..be7d2dc7f --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_fence_gate","textures":{"texture":"pyrite:block/mossy_calcite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_wall_gate_open.json b/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_wall_gate_open.json new file mode 100644 index 000000000..c6e249e4e --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_wall_gate_open.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_fence_gate_open","textures":{"texture":"pyrite:block/mossy_calcite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_wall_gate_wall.json b/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_wall_gate_wall.json new file mode 100644 index 000000000..f6a63046f --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_wall_gate_wall.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/template_wall_gate_wall","textures":{"texture":"pyrite:block/mossy_calcite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_wall_gate_wall_open.json b/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_wall_gate_wall_open.json new file mode 100644 index 000000000..3d138de98 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_wall_gate_wall_open.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/template_wall_gate_wall_open","textures":{"texture":"pyrite:block/mossy_calcite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_wall_inventory.json b/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_wall_inventory.json new file mode 100644 index 000000000..ded3fbe74 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_wall_inventory.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/wall_inventory","textures":{"wall":"pyrite:block/mossy_calcite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_wall_post.json b/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_wall_post.json new file mode 100644 index 000000000..cb823b119 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_wall_post.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_wall_post","textures":{"wall":"pyrite:block/mossy_calcite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_wall_side.json b/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_wall_side.json new file mode 100644 index 000000000..c011e4932 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_wall_side.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_wall_side","textures":{"wall":"pyrite:block/mossy_calcite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_wall_side_tall.json b/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_wall_side_tall.json new file mode 100644 index 000000000..424e14b58 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_brick_wall_side_tall.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_wall_side_tall","textures":{"wall":"pyrite:block/mossy_calcite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_bricks.json b/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_bricks.json new file mode 100644 index 000000000..051b41d22 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_calcite_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/cube_all","textures":{"all":"pyrite:block/mossy_calcite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_slab.json b/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_slab.json new file mode 100644 index 000000000..f99c32faf --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/slab","textures":{"bottom":"pyrite:block/mossy_deepslate_bricks","top":"pyrite:block/mossy_deepslate_bricks","side":"pyrite:block/mossy_deepslate_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_slab_top.json b/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_slab_top.json new file mode 100644 index 000000000..8af5b9650 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_slab_top.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/slab_top","textures":{"bottom":"pyrite:block/mossy_deepslate_bricks","top":"pyrite:block/mossy_deepslate_bricks","side":"pyrite:block/mossy_deepslate_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_stairs.json b/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_stairs.json new file mode 100644 index 000000000..b0ce4343d --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/stairs","textures":{"bottom":"pyrite:block/mossy_deepslate_bricks","top":"pyrite:block/mossy_deepslate_bricks","side":"pyrite:block/mossy_deepslate_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_stairs_inner.json b/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_stairs_inner.json new file mode 100644 index 000000000..02ff8696c --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_stairs_inner.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/inner_stairs","textures":{"bottom":"pyrite:block/mossy_deepslate_bricks","top":"pyrite:block/mossy_deepslate_bricks","side":"pyrite:block/mossy_deepslate_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_stairs_outer.json b/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_stairs_outer.json new file mode 100644 index 000000000..c5d3ec8a3 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_stairs_outer.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/outer_stairs","textures":{"bottom":"pyrite:block/mossy_deepslate_bricks","top":"pyrite:block/mossy_deepslate_bricks","side":"pyrite:block/mossy_deepslate_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_wall_gate.json b/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_wall_gate.json new file mode 100644 index 000000000..7423e7aab --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_fence_gate","textures":{"texture":"pyrite:block/mossy_deepslate_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_wall_gate_open.json b/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_wall_gate_open.json new file mode 100644 index 000000000..dc0286205 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_wall_gate_open.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_fence_gate_open","textures":{"texture":"pyrite:block/mossy_deepslate_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_wall_gate_wall.json b/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_wall_gate_wall.json new file mode 100644 index 000000000..d3164af75 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_wall_gate_wall.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/template_wall_gate_wall","textures":{"texture":"pyrite:block/mossy_deepslate_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_wall_gate_wall_open.json b/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_wall_gate_wall_open.json new file mode 100644 index 000000000..5667cad73 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_wall_gate_wall_open.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/template_wall_gate_wall_open","textures":{"texture":"pyrite:block/mossy_deepslate_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_wall_inventory.json b/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_wall_inventory.json new file mode 100644 index 000000000..6b4561885 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_wall_inventory.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/wall_inventory","textures":{"wall":"pyrite:block/mossy_deepslate_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_wall_post.json b/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_wall_post.json new file mode 100644 index 000000000..51b5ebce8 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_wall_post.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_wall_post","textures":{"wall":"pyrite:block/mossy_deepslate_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_wall_side.json b/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_wall_side.json new file mode 100644 index 000000000..494e28cde --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_wall_side.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_wall_side","textures":{"wall":"pyrite:block/mossy_deepslate_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_wall_side_tall.json b/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_wall_side_tall.json new file mode 100644 index 000000000..4afb0b22c --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_brick_wall_side_tall.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_wall_side_tall","textures":{"wall":"pyrite:block/mossy_deepslate_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_bricks.json b/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_bricks.json new file mode 100644 index 000000000..9d9e9ba3c --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_deepslate_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/cube_all","textures":{"all":"pyrite:block/mossy_deepslate_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_slab.json b/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_slab.json new file mode 100644 index 000000000..2928d865d --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/slab","textures":{"bottom":"pyrite:block/mossy_diorite_bricks","top":"pyrite:block/mossy_diorite_bricks","side":"pyrite:block/mossy_diorite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_slab_top.json b/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_slab_top.json new file mode 100644 index 000000000..6fa62e35d --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_slab_top.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/slab_top","textures":{"bottom":"pyrite:block/mossy_diorite_bricks","top":"pyrite:block/mossy_diorite_bricks","side":"pyrite:block/mossy_diorite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_stairs.json b/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_stairs.json new file mode 100644 index 000000000..0c868d267 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/stairs","textures":{"bottom":"pyrite:block/mossy_diorite_bricks","top":"pyrite:block/mossy_diorite_bricks","side":"pyrite:block/mossy_diorite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_stairs_inner.json b/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_stairs_inner.json new file mode 100644 index 000000000..b0f1f0889 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_stairs_inner.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/inner_stairs","textures":{"bottom":"pyrite:block/mossy_diorite_bricks","top":"pyrite:block/mossy_diorite_bricks","side":"pyrite:block/mossy_diorite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_stairs_outer.json b/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_stairs_outer.json new file mode 100644 index 000000000..79fe0a871 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_stairs_outer.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/outer_stairs","textures":{"bottom":"pyrite:block/mossy_diorite_bricks","top":"pyrite:block/mossy_diorite_bricks","side":"pyrite:block/mossy_diorite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_wall_gate.json b/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_wall_gate.json new file mode 100644 index 000000000..e45a10d96 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_fence_gate","textures":{"texture":"pyrite:block/mossy_diorite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_wall_gate_open.json b/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_wall_gate_open.json new file mode 100644 index 000000000..d6deadb8f --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_wall_gate_open.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_fence_gate_open","textures":{"texture":"pyrite:block/mossy_diorite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_wall_gate_wall.json b/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_wall_gate_wall.json new file mode 100644 index 000000000..c9379f3f8 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_wall_gate_wall.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/template_wall_gate_wall","textures":{"texture":"pyrite:block/mossy_diorite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_wall_gate_wall_open.json b/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_wall_gate_wall_open.json new file mode 100644 index 000000000..cf5063bd7 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_wall_gate_wall_open.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/template_wall_gate_wall_open","textures":{"texture":"pyrite:block/mossy_diorite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_wall_inventory.json b/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_wall_inventory.json new file mode 100644 index 000000000..b008a7314 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_wall_inventory.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/wall_inventory","textures":{"wall":"pyrite:block/mossy_diorite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_wall_post.json b/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_wall_post.json new file mode 100644 index 000000000..db6d26ae1 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_wall_post.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_wall_post","textures":{"wall":"pyrite:block/mossy_diorite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_wall_side.json b/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_wall_side.json new file mode 100644 index 000000000..0b9e71b67 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_wall_side.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_wall_side","textures":{"wall":"pyrite:block/mossy_diorite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_wall_side_tall.json b/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_wall_side_tall.json new file mode 100644 index 000000000..b642c0163 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_brick_wall_side_tall.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_wall_side_tall","textures":{"wall":"pyrite:block/mossy_diorite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_bricks.json b/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_bricks.json new file mode 100644 index 000000000..90e2bdac1 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_diorite_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/cube_all","textures":{"all":"pyrite:block/mossy_diorite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_slab.json b/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_slab.json new file mode 100644 index 000000000..f77cde236 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/slab","textures":{"bottom":"pyrite:block/mossy_granite_bricks","top":"pyrite:block/mossy_granite_bricks","side":"pyrite:block/mossy_granite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_slab_top.json b/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_slab_top.json new file mode 100644 index 000000000..6a28373a5 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_slab_top.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/slab_top","textures":{"bottom":"pyrite:block/mossy_granite_bricks","top":"pyrite:block/mossy_granite_bricks","side":"pyrite:block/mossy_granite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_stairs.json b/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_stairs.json new file mode 100644 index 000000000..936a839d4 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/stairs","textures":{"bottom":"pyrite:block/mossy_granite_bricks","top":"pyrite:block/mossy_granite_bricks","side":"pyrite:block/mossy_granite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_stairs_inner.json b/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_stairs_inner.json new file mode 100644 index 000000000..90b8b783f --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_stairs_inner.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/inner_stairs","textures":{"bottom":"pyrite:block/mossy_granite_bricks","top":"pyrite:block/mossy_granite_bricks","side":"pyrite:block/mossy_granite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_stairs_outer.json b/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_stairs_outer.json new file mode 100644 index 000000000..5c36de13d --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_stairs_outer.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/outer_stairs","textures":{"bottom":"pyrite:block/mossy_granite_bricks","top":"pyrite:block/mossy_granite_bricks","side":"pyrite:block/mossy_granite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_wall_gate.json b/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_wall_gate.json new file mode 100644 index 000000000..d2eb2e552 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_fence_gate","textures":{"texture":"pyrite:block/mossy_granite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_wall_gate_open.json b/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_wall_gate_open.json new file mode 100644 index 000000000..9aa9f32f3 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_wall_gate_open.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_fence_gate_open","textures":{"texture":"pyrite:block/mossy_granite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_wall_gate_wall.json b/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_wall_gate_wall.json new file mode 100644 index 000000000..57d6d38d2 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_wall_gate_wall.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/template_wall_gate_wall","textures":{"texture":"pyrite:block/mossy_granite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_wall_gate_wall_open.json b/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_wall_gate_wall_open.json new file mode 100644 index 000000000..c6f44cee5 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_wall_gate_wall_open.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/template_wall_gate_wall_open","textures":{"texture":"pyrite:block/mossy_granite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_wall_inventory.json b/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_wall_inventory.json new file mode 100644 index 000000000..9dee0e076 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_wall_inventory.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/wall_inventory","textures":{"wall":"pyrite:block/mossy_granite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_wall_post.json b/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_wall_post.json new file mode 100644 index 000000000..30506cfad --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_wall_post.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_wall_post","textures":{"wall":"pyrite:block/mossy_granite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_wall_side.json b/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_wall_side.json new file mode 100644 index 000000000..5143a4ce1 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_wall_side.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_wall_side","textures":{"wall":"pyrite:block/mossy_granite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_wall_side_tall.json b/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_wall_side_tall.json new file mode 100644 index 000000000..c77e4eede --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_granite_brick_wall_side_tall.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_wall_side_tall","textures":{"wall":"pyrite:block/mossy_granite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_granite_bricks.json b/common/src/main/resources/assets/pyrite/models/block/mossy_granite_bricks.json new file mode 100644 index 000000000..c36cf9308 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_granite_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/cube_all","textures":{"all":"pyrite:block/mossy_granite_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_holystone_wall_gate.json b/common/src/main/resources/assets/pyrite/models/block/mossy_holystone_wall_gate.json new file mode 100644 index 000000000..62e3c39c4 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_holystone_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_fence_gate","textures":{"texture":"aether:block/mossy_holystone"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_holystone_wall_gate_open.json b/common/src/main/resources/assets/pyrite/models/block/mossy_holystone_wall_gate_open.json new file mode 100644 index 000000000..ce08baa4f --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_holystone_wall_gate_open.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_fence_gate_open","textures":{"texture":"aether:block/mossy_holystone"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_holystone_wall_gate_wall.json b/common/src/main/resources/assets/pyrite/models/block/mossy_holystone_wall_gate_wall.json new file mode 100644 index 000000000..c76aadfef --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_holystone_wall_gate_wall.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/template_wall_gate_wall","textures":{"texture":"aether:block/mossy_holystone"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_holystone_wall_gate_wall_open.json b/common/src/main/resources/assets/pyrite/models/block/mossy_holystone_wall_gate_wall_open.json new file mode 100644 index 000000000..6352e4457 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_holystone_wall_gate_wall_open.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/template_wall_gate_wall_open","textures":{"texture":"aether:block/mossy_holystone"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_slab.json b/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_slab.json new file mode 100644 index 000000000..cf951da1e --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/slab","textures":{"bottom":"pyrite:block/mossy_smooth_stone_bricks","top":"pyrite:block/mossy_smooth_stone_bricks","side":"pyrite:block/mossy_smooth_stone_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_slab_top.json b/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_slab_top.json new file mode 100644 index 000000000..1fe0680f4 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_slab_top.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/slab_top","textures":{"bottom":"pyrite:block/mossy_smooth_stone_bricks","top":"pyrite:block/mossy_smooth_stone_bricks","side":"pyrite:block/mossy_smooth_stone_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_stairs.json b/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_stairs.json new file mode 100644 index 000000000..692eaf6a6 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/stairs","textures":{"bottom":"pyrite:block/mossy_smooth_stone_bricks","top":"pyrite:block/mossy_smooth_stone_bricks","side":"pyrite:block/mossy_smooth_stone_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_stairs_inner.json b/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_stairs_inner.json new file mode 100644 index 000000000..fa2290361 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_stairs_inner.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/inner_stairs","textures":{"bottom":"pyrite:block/mossy_smooth_stone_bricks","top":"pyrite:block/mossy_smooth_stone_bricks","side":"pyrite:block/mossy_smooth_stone_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_stairs_outer.json b/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_stairs_outer.json new file mode 100644 index 000000000..197d4e39f --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_stairs_outer.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/outer_stairs","textures":{"bottom":"pyrite:block/mossy_smooth_stone_bricks","top":"pyrite:block/mossy_smooth_stone_bricks","side":"pyrite:block/mossy_smooth_stone_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_wall_gate.json b/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_wall_gate.json new file mode 100644 index 000000000..8814b4efa --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_fence_gate","textures":{"texture":"pyrite:block/mossy_smooth_stone_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_wall_gate_open.json b/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_wall_gate_open.json new file mode 100644 index 000000000..3f7cc61e1 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_wall_gate_open.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_fence_gate_open","textures":{"texture":"pyrite:block/mossy_smooth_stone_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_wall_gate_wall.json b/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_wall_gate_wall.json new file mode 100644 index 000000000..24274eb3b --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_wall_gate_wall.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/template_wall_gate_wall","textures":{"texture":"pyrite:block/mossy_smooth_stone_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_wall_gate_wall_open.json b/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_wall_gate_wall_open.json new file mode 100644 index 000000000..01860809b --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_wall_gate_wall_open.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/template_wall_gate_wall_open","textures":{"texture":"pyrite:block/mossy_smooth_stone_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_wall_inventory.json b/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_wall_inventory.json new file mode 100644 index 000000000..1715fdd6b --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_wall_inventory.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/wall_inventory","textures":{"wall":"pyrite:block/mossy_smooth_stone_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_wall_post.json b/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_wall_post.json new file mode 100644 index 000000000..3d1852c66 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_wall_post.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_wall_post","textures":{"wall":"pyrite:block/mossy_smooth_stone_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_wall_side.json b/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_wall_side.json new file mode 100644 index 000000000..c7fc4edfb --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_wall_side.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_wall_side","textures":{"wall":"pyrite:block/mossy_smooth_stone_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_wall_side_tall.json b/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_wall_side_tall.json new file mode 100644 index 000000000..43143a8d5 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_brick_wall_side_tall.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/template_wall_side_tall","textures":{"wall":"pyrite:block/mossy_smooth_stone_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_bricks.json b/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_bricks.json new file mode 100644 index 000000000..3ba8ce388 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/block/mossy_smooth_stone_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:block/cube_all","textures":{"all":"pyrite:block/mossy_smooth_stone_bricks"}} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/andesite_brick_slab.json b/common/src/main/resources/assets/pyrite/models/item/andesite_brick_slab.json new file mode 100644 index 000000000..1e560f538 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/andesite_brick_slab.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/andesite_brick_slab"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/andesite_brick_stairs.json b/common/src/main/resources/assets/pyrite/models/item/andesite_brick_stairs.json new file mode 100644 index 000000000..7e17c16fe --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/andesite_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/andesite_brick_stairs"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/andesite_brick_wall.json b/common/src/main/resources/assets/pyrite/models/item/andesite_brick_wall.json new file mode 100644 index 000000000..48aea3cc7 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/andesite_brick_wall.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/andesite_brick_wall_inventory"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/andesite_brick_wall_gate.json b/common/src/main/resources/assets/pyrite/models/item/andesite_brick_wall_gate.json new file mode 100644 index 000000000..4854e9f2a --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/andesite_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/andesite_brick_wall_gate"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/andesite_bricks.json b/common/src/main/resources/assets/pyrite/models/item/andesite_bricks.json new file mode 100644 index 000000000..fdff87c10 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/andesite_bricks.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/andesite_bricks"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/calcite_brick_slab.json b/common/src/main/resources/assets/pyrite/models/item/calcite_brick_slab.json new file mode 100644 index 000000000..60657cbc6 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/calcite_brick_slab.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/calcite_brick_slab"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/calcite_brick_stairs.json b/common/src/main/resources/assets/pyrite/models/item/calcite_brick_stairs.json new file mode 100644 index 000000000..680d7005d --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/calcite_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/calcite_brick_stairs"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/calcite_brick_wall.json b/common/src/main/resources/assets/pyrite/models/item/calcite_brick_wall.json new file mode 100644 index 000000000..2bcf128b2 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/calcite_brick_wall.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/calcite_brick_wall_inventory"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/calcite_brick_wall_gate.json b/common/src/main/resources/assets/pyrite/models/item/calcite_brick_wall_gate.json new file mode 100644 index 000000000..ce77b2856 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/calcite_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/calcite_brick_wall_gate"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/calcite_bricks.json b/common/src/main/resources/assets/pyrite/models/item/calcite_bricks.json new file mode 100644 index 000000000..6cc97f81f --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/calcite_bricks.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/calcite_bricks"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/diorite_brick_slab.json b/common/src/main/resources/assets/pyrite/models/item/diorite_brick_slab.json new file mode 100644 index 000000000..61c5f17da --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/diorite_brick_slab.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/diorite_brick_slab"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/diorite_brick_stairs.json b/common/src/main/resources/assets/pyrite/models/item/diorite_brick_stairs.json new file mode 100644 index 000000000..f0ee3308e --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/diorite_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/diorite_brick_stairs"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/diorite_brick_wall.json b/common/src/main/resources/assets/pyrite/models/item/diorite_brick_wall.json new file mode 100644 index 000000000..978efe7f0 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/diorite_brick_wall.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/diorite_brick_wall_inventory"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/diorite_brick_wall_gate.json b/common/src/main/resources/assets/pyrite/models/item/diorite_brick_wall_gate.json new file mode 100644 index 000000000..1e1c0cea0 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/diorite_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/diorite_brick_wall_gate"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/diorite_bricks.json b/common/src/main/resources/assets/pyrite/models/item/diorite_bricks.json new file mode 100644 index 000000000..41c91434b --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/diorite_bricks.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/diorite_bricks"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/granite_brick_slab.json b/common/src/main/resources/assets/pyrite/models/item/granite_brick_slab.json new file mode 100644 index 000000000..f307ec249 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/granite_brick_slab.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/granite_brick_slab"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/granite_brick_stairs.json b/common/src/main/resources/assets/pyrite/models/item/granite_brick_stairs.json new file mode 100644 index 000000000..0245da4c8 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/granite_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/granite_brick_stairs"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/granite_brick_wall.json b/common/src/main/resources/assets/pyrite/models/item/granite_brick_wall.json new file mode 100644 index 000000000..5869ace88 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/granite_brick_wall.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/granite_brick_wall_inventory"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/granite_brick_wall_gate.json b/common/src/main/resources/assets/pyrite/models/item/granite_brick_wall_gate.json new file mode 100644 index 000000000..97fe055ca --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/granite_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/granite_brick_wall_gate"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/granite_bricks.json b/common/src/main/resources/assets/pyrite/models/item/granite_bricks.json new file mode 100644 index 000000000..978585f9b --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/granite_bricks.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/granite_bricks"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/mossy_andesite_brick_slab.json b/common/src/main/resources/assets/pyrite/models/item/mossy_andesite_brick_slab.json new file mode 100644 index 000000000..1dca677a5 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/mossy_andesite_brick_slab.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/mossy_andesite_brick_slab"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/mossy_andesite_brick_stairs.json b/common/src/main/resources/assets/pyrite/models/item/mossy_andesite_brick_stairs.json new file mode 100644 index 000000000..9a275fba4 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/mossy_andesite_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/mossy_andesite_brick_stairs"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/mossy_andesite_brick_wall.json b/common/src/main/resources/assets/pyrite/models/item/mossy_andesite_brick_wall.json new file mode 100644 index 000000000..ca8e35175 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/mossy_andesite_brick_wall.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/mossy_andesite_brick_wall_inventory"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/mossy_andesite_brick_wall_gate.json b/common/src/main/resources/assets/pyrite/models/item/mossy_andesite_brick_wall_gate.json new file mode 100644 index 000000000..8532ac742 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/mossy_andesite_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/mossy_andesite_brick_wall_gate"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/mossy_andesite_bricks.json b/common/src/main/resources/assets/pyrite/models/item/mossy_andesite_bricks.json new file mode 100644 index 000000000..9ce6f6c75 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/mossy_andesite_bricks.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/mossy_andesite_bricks"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/mossy_calcite_brick_slab.json b/common/src/main/resources/assets/pyrite/models/item/mossy_calcite_brick_slab.json new file mode 100644 index 000000000..a7e541037 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/mossy_calcite_brick_slab.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/mossy_calcite_brick_slab"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/mossy_calcite_brick_stairs.json b/common/src/main/resources/assets/pyrite/models/item/mossy_calcite_brick_stairs.json new file mode 100644 index 000000000..3bc633a98 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/mossy_calcite_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/mossy_calcite_brick_stairs"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/mossy_calcite_brick_wall.json b/common/src/main/resources/assets/pyrite/models/item/mossy_calcite_brick_wall.json new file mode 100644 index 000000000..d17d578f9 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/mossy_calcite_brick_wall.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/mossy_calcite_brick_wall_inventory"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/mossy_calcite_brick_wall_gate.json b/common/src/main/resources/assets/pyrite/models/item/mossy_calcite_brick_wall_gate.json new file mode 100644 index 000000000..08fd188c5 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/mossy_calcite_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/mossy_calcite_brick_wall_gate"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/mossy_calcite_bricks.json b/common/src/main/resources/assets/pyrite/models/item/mossy_calcite_bricks.json new file mode 100644 index 000000000..a17f48d54 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/mossy_calcite_bricks.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/mossy_calcite_bricks"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/mossy_deepslate_brick_slab.json b/common/src/main/resources/assets/pyrite/models/item/mossy_deepslate_brick_slab.json new file mode 100644 index 000000000..e42bb6097 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/mossy_deepslate_brick_slab.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/mossy_deepslate_brick_slab"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/mossy_deepslate_brick_stairs.json b/common/src/main/resources/assets/pyrite/models/item/mossy_deepslate_brick_stairs.json new file mode 100644 index 000000000..acbe98297 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/mossy_deepslate_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/mossy_deepslate_brick_stairs"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/mossy_deepslate_brick_wall.json b/common/src/main/resources/assets/pyrite/models/item/mossy_deepslate_brick_wall.json new file mode 100644 index 000000000..28b156996 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/mossy_deepslate_brick_wall.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/mossy_deepslate_brick_wall_inventory"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/mossy_deepslate_brick_wall_gate.json b/common/src/main/resources/assets/pyrite/models/item/mossy_deepslate_brick_wall_gate.json new file mode 100644 index 000000000..ca692a432 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/mossy_deepslate_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/mossy_deepslate_brick_wall_gate"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/mossy_deepslate_bricks.json b/common/src/main/resources/assets/pyrite/models/item/mossy_deepslate_bricks.json new file mode 100644 index 000000000..33ba42315 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/mossy_deepslate_bricks.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/mossy_deepslate_bricks"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/mossy_diorite_brick_slab.json b/common/src/main/resources/assets/pyrite/models/item/mossy_diorite_brick_slab.json new file mode 100644 index 000000000..dbf9ec13a --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/mossy_diorite_brick_slab.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/mossy_diorite_brick_slab"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/mossy_diorite_brick_stairs.json b/common/src/main/resources/assets/pyrite/models/item/mossy_diorite_brick_stairs.json new file mode 100644 index 000000000..9553c82d2 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/mossy_diorite_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/mossy_diorite_brick_stairs"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/mossy_diorite_brick_wall.json b/common/src/main/resources/assets/pyrite/models/item/mossy_diorite_brick_wall.json new file mode 100644 index 000000000..f34481367 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/mossy_diorite_brick_wall.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/mossy_diorite_brick_wall_inventory"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/mossy_diorite_brick_wall_gate.json b/common/src/main/resources/assets/pyrite/models/item/mossy_diorite_brick_wall_gate.json new file mode 100644 index 000000000..5bd2a2ccb --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/mossy_diorite_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/mossy_diorite_brick_wall_gate"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/mossy_diorite_bricks.json b/common/src/main/resources/assets/pyrite/models/item/mossy_diorite_bricks.json new file mode 100644 index 000000000..a99f7709e --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/mossy_diorite_bricks.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/mossy_diorite_bricks"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/mossy_granite_brick_slab.json b/common/src/main/resources/assets/pyrite/models/item/mossy_granite_brick_slab.json new file mode 100644 index 000000000..bcccc4b65 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/mossy_granite_brick_slab.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/mossy_granite_brick_slab"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/mossy_granite_brick_stairs.json b/common/src/main/resources/assets/pyrite/models/item/mossy_granite_brick_stairs.json new file mode 100644 index 000000000..f21829ad0 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/mossy_granite_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/mossy_granite_brick_stairs"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/mossy_granite_brick_wall.json b/common/src/main/resources/assets/pyrite/models/item/mossy_granite_brick_wall.json new file mode 100644 index 000000000..82e16fcb4 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/mossy_granite_brick_wall.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/mossy_granite_brick_wall_inventory"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/mossy_granite_brick_wall_gate.json b/common/src/main/resources/assets/pyrite/models/item/mossy_granite_brick_wall_gate.json new file mode 100644 index 000000000..07349e3ca --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/mossy_granite_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/mossy_granite_brick_wall_gate"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/mossy_granite_bricks.json b/common/src/main/resources/assets/pyrite/models/item/mossy_granite_bricks.json new file mode 100644 index 000000000..8b8d3e998 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/mossy_granite_bricks.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/mossy_granite_bricks"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/mossy_smooth_stone_brick_slab.json b/common/src/main/resources/assets/pyrite/models/item/mossy_smooth_stone_brick_slab.json new file mode 100644 index 000000000..8a1b19175 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/mossy_smooth_stone_brick_slab.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/mossy_smooth_stone_brick_slab"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/mossy_smooth_stone_brick_stairs.json b/common/src/main/resources/assets/pyrite/models/item/mossy_smooth_stone_brick_stairs.json new file mode 100644 index 000000000..403052142 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/mossy_smooth_stone_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/mossy_smooth_stone_brick_stairs"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/mossy_smooth_stone_brick_wall.json b/common/src/main/resources/assets/pyrite/models/item/mossy_smooth_stone_brick_wall.json new file mode 100644 index 000000000..ba1201d4a --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/mossy_smooth_stone_brick_wall.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/mossy_smooth_stone_brick_wall_inventory"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/mossy_smooth_stone_brick_wall_gate.json b/common/src/main/resources/assets/pyrite/models/item/mossy_smooth_stone_brick_wall_gate.json new file mode 100644 index 000000000..2bb0b0d37 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/mossy_smooth_stone_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/mossy_smooth_stone_brick_wall_gate"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/mossy_smooth_stone_bricks.json b/common/src/main/resources/assets/pyrite/models/item/mossy_smooth_stone_bricks.json new file mode 100644 index 000000000..e3176acc4 --- /dev/null +++ b/common/src/main/resources/assets/pyrite/models/item/mossy_smooth_stone_bricks.json @@ -0,0 +1 @@ +{"parent":"pyrite:block/mossy_smooth_stone_bricks"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/polished_tuff_wall_gate.json b/common/src/main/resources/assets/pyrite/models/item/polished_tuff_wall_gate.json deleted file mode 100644 index 7b3be9e57..000000000 --- a/common/src/main/resources/assets/pyrite/models/item/polished_tuff_wall_gate.json +++ /dev/null @@ -1 +0,0 @@ -{"parent":"pyrite:block/polished_tuff_wall_gate"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/tuff_brick_wall_gate.json b/common/src/main/resources/assets/pyrite/models/item/tuff_brick_wall_gate.json deleted file mode 100644 index afe748720..000000000 --- a/common/src/main/resources/assets/pyrite/models/item/tuff_brick_wall_gate.json +++ /dev/null @@ -1 +0,0 @@ -{"parent":"pyrite:block/tuff_brick_wall_gate"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/models/item/tuff_wall_gate.json b/common/src/main/resources/assets/pyrite/models/item/tuff_wall_gate.json deleted file mode 100644 index f30554883..000000000 --- a/common/src/main/resources/assets/pyrite/models/item/tuff_wall_gate.json +++ /dev/null @@ -1 +0,0 @@ -{"parent":"pyrite:block/tuff_wall_gate"} \ No newline at end of file diff --git a/common/src/main/resources/assets/pyrite/textures/block/mossy_andesite_bricks.png b/common/src/main/resources/assets/pyrite/textures/block/mossy_andesite_bricks.png new file mode 100644 index 000000000..a3c0a3ea8 Binary files /dev/null and b/common/src/main/resources/assets/pyrite/textures/block/mossy_andesite_bricks.png differ diff --git a/common/src/main/resources/assets/pyrite/textures/block/mossy_calcite_bricks.png b/common/src/main/resources/assets/pyrite/textures/block/mossy_calcite_bricks.png new file mode 100644 index 000000000..ea5359881 Binary files /dev/null and b/common/src/main/resources/assets/pyrite/textures/block/mossy_calcite_bricks.png differ diff --git a/common/src/main/resources/assets/pyrite/textures/block/mossy_deepslate_bricks.png b/common/src/main/resources/assets/pyrite/textures/block/mossy_deepslate_bricks.png new file mode 100644 index 000000000..f1304e12c Binary files /dev/null and b/common/src/main/resources/assets/pyrite/textures/block/mossy_deepslate_bricks.png differ diff --git a/common/src/main/resources/assets/pyrite/textures/block/mossy_diorite_bricks.png b/common/src/main/resources/assets/pyrite/textures/block/mossy_diorite_bricks.png new file mode 100644 index 000000000..0e5c1944f Binary files /dev/null and b/common/src/main/resources/assets/pyrite/textures/block/mossy_diorite_bricks.png differ diff --git a/common/src/main/resources/assets/pyrite/textures/block/mossy_granite_bricks.png b/common/src/main/resources/assets/pyrite/textures/block/mossy_granite_bricks.png new file mode 100644 index 000000000..131d2c503 Binary files /dev/null and b/common/src/main/resources/assets/pyrite/textures/block/mossy_granite_bricks.png differ diff --git a/common/src/main/resources/assets/pyrite/textures/block/mossy_smooth_stone_bricks.png b/common/src/main/resources/assets/pyrite/textures/block/mossy_smooth_stone_bricks.png new file mode 100644 index 000000000..f40082bc2 Binary files /dev/null and b/common/src/main/resources/assets/pyrite/textures/block/mossy_smooth_stone_bricks.png differ diff --git a/common/src/main/resources/assets/pyrite/textures/block/mossy_tuff_bricks.png b/common/src/main/resources/assets/pyrite/textures/block/mossy_tuff_bricks.png new file mode 100644 index 000000000..6bf59105b Binary files /dev/null and b/common/src/main/resources/assets/pyrite/textures/block/mossy_tuff_bricks.png differ diff --git a/common/src/main/resources/data/minecraft/tags/block/slabs.json b/common/src/main/resources/data/minecraft/tags/block/slabs.json index f700882c1..b9040155d 100644 --- a/common/src/main/resources/data/minecraft/tags/block/slabs.json +++ b/common/src/main/resources/data/minecraft/tags/block/slabs.json @@ -1 +1 @@ -{"replace":false,"values":["pyrite:white_stained_slab","pyrite:white_brick_slab","pyrite:white_terracotta_brick_slab","pyrite:orange_stained_slab","pyrite:orange_brick_slab","pyrite:orange_terracotta_brick_slab","pyrite:magenta_stained_slab","pyrite:magenta_brick_slab","pyrite:magenta_terracotta_brick_slab","pyrite:light_blue_stained_slab","pyrite:light_blue_brick_slab","pyrite:light_blue_terracotta_brick_slab","pyrite:yellow_stained_slab","pyrite:yellow_brick_slab","pyrite:yellow_terracotta_brick_slab","pyrite:lime_stained_slab","pyrite:lime_brick_slab","pyrite:lime_terracotta_brick_slab","pyrite:pink_stained_slab","pyrite:pink_brick_slab","pyrite:pink_terracotta_brick_slab","pyrite:gray_stained_slab","pyrite:gray_brick_slab","pyrite:gray_terracotta_brick_slab","pyrite:light_gray_stained_slab","pyrite:light_gray_brick_slab","pyrite:light_gray_terracotta_brick_slab","pyrite:cyan_stained_slab","pyrite:cyan_brick_slab","pyrite:cyan_terracotta_brick_slab","pyrite:purple_stained_slab","pyrite:purple_brick_slab","pyrite:purple_terracotta_brick_slab","pyrite:blue_stained_slab","pyrite:blue_brick_slab","pyrite:blue_terracotta_brick_slab","pyrite:brown_stained_slab","pyrite:brown_brick_slab","pyrite:brown_terracotta_brick_slab","pyrite:green_stained_slab","pyrite:green_brick_slab","pyrite:green_terracotta_brick_slab","pyrite:red_stained_slab","pyrite:red_brick_slab","pyrite:red_terracotta_brick_slab","pyrite:black_stained_slab","pyrite:black_brick_slab","pyrite:black_terracotta_brick_slab","pyrite:glow_stained_slab","pyrite:glow_brick_slab","pyrite:glow_terracotta_brick_slab","pyrite:dragon_stained_slab","pyrite:dragon_brick_slab","pyrite:dragon_terracotta_brick_slab","pyrite:star_stained_slab","pyrite:star_brick_slab","pyrite:star_terracotta_brick_slab","pyrite:honey_stained_slab","pyrite:honey_brick_slab","pyrite:honey_terracotta_brick_slab","pyrite:nostalgia_stained_slab","pyrite:nostalgia_brick_slab","pyrite:nostalgia_terracotta_brick_slab","pyrite:rose_stained_slab","pyrite:rose_brick_slab","pyrite:rose_terracotta_brick_slab","pyrite:poisonous_stained_slab","pyrite:poisonous_brick_slab","pyrite:poisonous_terracotta_brick_slab","pyrite:red_mushroom_slab","pyrite:brown_mushroom_slab","pyrite:cobblestone_brick_slab","pyrite:mossy_cobblestone_brick_slab","pyrite:smooth_stone_brick_slab","pyrite:nostalgia_grass_slab","pyrite:podzol_slab","pyrite:grass_slab","pyrite:mycelium_slab","pyrite:path_slab","pyrite:white_concrete_slab","pyrite:orange_concrete_slab","pyrite:magenta_concrete_slab","pyrite:light_blue_concrete_slab","pyrite:yellow_concrete_slab","pyrite:lime_concrete_slab","pyrite:pink_concrete_slab","pyrite:gray_concrete_slab","pyrite:light_gray_concrete_slab","pyrite:cyan_concrete_slab","pyrite:purple_concrete_slab","pyrite:blue_concrete_slab","pyrite:brown_concrete_slab","pyrite:green_concrete_slab","pyrite:red_concrete_slab","pyrite:black_concrete_slab","pyrite:glow_concrete_slab","pyrite:dragon_concrete_slab","pyrite:star_concrete_slab","pyrite:honey_concrete_slab","pyrite:nostalgia_concrete_slab","pyrite:rose_concrete_slab","pyrite:poisonous_concrete_slab","pyrite:charred_nether_brick_slab","pyrite:blue_nether_brick_slab","pyrite:cut_iron_slab","pyrite:smooth_iron_slab","pyrite:cut_gold_slab","pyrite:smooth_gold_slab","pyrite:cut_emerald_slab","pyrite:smooth_emerald_slab","pyrite:cut_diamond_slab","pyrite:smooth_diamond_slab","pyrite:cut_netherite_slab","pyrite:smooth_netherite_slab","pyrite:cut_quartz_slab","pyrite:cut_amethyst_slab","pyrite:smooth_amethyst_slab","pyrite:cut_lapis_slab","pyrite:smooth_lapis_slab","pyrite:cut_redstone_slab","pyrite:smooth_redstone_slab","pyrite:smooth_copper_slab","pyrite:smooth_exposed_copper_slab","pyrite:smooth_weathered_copper_slab","pyrite:smooth_oxidized_copper_slab"]} \ No newline at end of file +{"replace":false,"values":["pyrite:white_stained_slab","pyrite:white_brick_slab","pyrite:white_terracotta_brick_slab","pyrite:orange_stained_slab","pyrite:orange_brick_slab","pyrite:orange_terracotta_brick_slab","pyrite:magenta_stained_slab","pyrite:magenta_brick_slab","pyrite:magenta_terracotta_brick_slab","pyrite:light_blue_stained_slab","pyrite:light_blue_brick_slab","pyrite:light_blue_terracotta_brick_slab","pyrite:yellow_stained_slab","pyrite:yellow_brick_slab","pyrite:yellow_terracotta_brick_slab","pyrite:lime_stained_slab","pyrite:lime_brick_slab","pyrite:lime_terracotta_brick_slab","pyrite:pink_stained_slab","pyrite:pink_brick_slab","pyrite:pink_terracotta_brick_slab","pyrite:gray_stained_slab","pyrite:gray_brick_slab","pyrite:gray_terracotta_brick_slab","pyrite:light_gray_stained_slab","pyrite:light_gray_brick_slab","pyrite:light_gray_terracotta_brick_slab","pyrite:cyan_stained_slab","pyrite:cyan_brick_slab","pyrite:cyan_terracotta_brick_slab","pyrite:purple_stained_slab","pyrite:purple_brick_slab","pyrite:purple_terracotta_brick_slab","pyrite:blue_stained_slab","pyrite:blue_brick_slab","pyrite:blue_terracotta_brick_slab","pyrite:brown_stained_slab","pyrite:brown_brick_slab","pyrite:brown_terracotta_brick_slab","pyrite:green_stained_slab","pyrite:green_brick_slab","pyrite:green_terracotta_brick_slab","pyrite:red_stained_slab","pyrite:red_brick_slab","pyrite:red_terracotta_brick_slab","pyrite:black_stained_slab","pyrite:black_brick_slab","pyrite:black_terracotta_brick_slab","pyrite:glow_stained_slab","pyrite:glow_brick_slab","pyrite:glow_terracotta_brick_slab","pyrite:dragon_stained_slab","pyrite:dragon_brick_slab","pyrite:dragon_terracotta_brick_slab","pyrite:star_stained_slab","pyrite:star_brick_slab","pyrite:star_terracotta_brick_slab","pyrite:honey_stained_slab","pyrite:honey_brick_slab","pyrite:honey_terracotta_brick_slab","pyrite:nostalgia_stained_slab","pyrite:nostalgia_brick_slab","pyrite:nostalgia_terracotta_brick_slab","pyrite:rose_stained_slab","pyrite:rose_brick_slab","pyrite:rose_terracotta_brick_slab","pyrite:poisonous_stained_slab","pyrite:poisonous_brick_slab","pyrite:poisonous_terracotta_brick_slab","pyrite:red_mushroom_slab","pyrite:brown_mushroom_slab","pyrite:cobblestone_brick_slab","pyrite:mossy_cobblestone_brick_slab","pyrite:smooth_stone_brick_slab","pyrite:nostalgia_grass_slab","pyrite:podzol_slab","pyrite:grass_slab","pyrite:mycelium_slab","pyrite:path_slab","pyrite:white_concrete_slab","pyrite:orange_concrete_slab","pyrite:magenta_concrete_slab","pyrite:light_blue_concrete_slab","pyrite:yellow_concrete_slab","pyrite:lime_concrete_slab","pyrite:pink_concrete_slab","pyrite:gray_concrete_slab","pyrite:light_gray_concrete_slab","pyrite:cyan_concrete_slab","pyrite:purple_concrete_slab","pyrite:blue_concrete_slab","pyrite:brown_concrete_slab","pyrite:green_concrete_slab","pyrite:red_concrete_slab","pyrite:black_concrete_slab","pyrite:glow_concrete_slab","pyrite:dragon_concrete_slab","pyrite:star_concrete_slab","pyrite:honey_concrete_slab","pyrite:nostalgia_concrete_slab","pyrite:rose_concrete_slab","pyrite:poisonous_concrete_slab","pyrite:charred_nether_brick_slab","pyrite:blue_nether_brick_slab","pyrite:cut_iron_slab","pyrite:smooth_iron_slab","pyrite:cut_gold_slab","pyrite:smooth_gold_slab","pyrite:cut_emerald_slab","pyrite:smooth_emerald_slab","pyrite:cut_diamond_slab","pyrite:smooth_diamond_slab","pyrite:cut_netherite_slab","pyrite:smooth_netherite_slab","pyrite:cut_quartz_slab","pyrite:cut_amethyst_slab","pyrite:smooth_amethyst_slab","pyrite:cut_lapis_slab","pyrite:smooth_lapis_slab","pyrite:cut_redstone_slab","pyrite:smooth_redstone_slab","pyrite:smooth_copper_slab","pyrite:smooth_exposed_copper_slab","pyrite:smooth_weathered_copper_slab","pyrite:smooth_oxidized_copper_slab","pyrite:mossy_smooth_stone_brick_slab","pyrite:granite_brick_slab","pyrite:mossy_granite_brick_slab","pyrite:andesite_brick_slab","pyrite:mossy_andesite_brick_slab","pyrite:diorite_brick_slab","pyrite:mossy_diorite_brick_slab","pyrite:calcite_brick_slab","pyrite:mossy_calcite_brick_slab","pyrite:mossy_deepslate_brick_slab"]} \ No newline at end of file diff --git a/common/src/main/resources/data/minecraft/tags/block/stairs.json b/common/src/main/resources/data/minecraft/tags/block/stairs.json index d69d75594..dee110498 100644 --- a/common/src/main/resources/data/minecraft/tags/block/stairs.json +++ b/common/src/main/resources/data/minecraft/tags/block/stairs.json @@ -1 +1 @@ -{"replace":false,"values":["pyrite:white_stained_stairs","pyrite:white_brick_stairs","pyrite:white_terracotta_brick_stairs","pyrite:orange_stained_stairs","pyrite:orange_brick_stairs","pyrite:orange_terracotta_brick_stairs","pyrite:magenta_stained_stairs","pyrite:magenta_brick_stairs","pyrite:magenta_terracotta_brick_stairs","pyrite:light_blue_stained_stairs","pyrite:light_blue_brick_stairs","pyrite:light_blue_terracotta_brick_stairs","pyrite:yellow_stained_stairs","pyrite:yellow_brick_stairs","pyrite:yellow_terracotta_brick_stairs","pyrite:lime_stained_stairs","pyrite:lime_brick_stairs","pyrite:lime_terracotta_brick_stairs","pyrite:pink_stained_stairs","pyrite:pink_brick_stairs","pyrite:pink_terracotta_brick_stairs","pyrite:gray_stained_stairs","pyrite:gray_brick_stairs","pyrite:gray_terracotta_brick_stairs","pyrite:light_gray_stained_stairs","pyrite:light_gray_brick_stairs","pyrite:light_gray_terracotta_brick_stairs","pyrite:cyan_stained_stairs","pyrite:cyan_brick_stairs","pyrite:cyan_terracotta_brick_stairs","pyrite:purple_stained_stairs","pyrite:purple_brick_stairs","pyrite:purple_terracotta_brick_stairs","pyrite:blue_stained_stairs","pyrite:blue_brick_stairs","pyrite:blue_terracotta_brick_stairs","pyrite:brown_stained_stairs","pyrite:brown_brick_stairs","pyrite:brown_terracotta_brick_stairs","pyrite:green_stained_stairs","pyrite:green_brick_stairs","pyrite:green_terracotta_brick_stairs","pyrite:red_stained_stairs","pyrite:red_brick_stairs","pyrite:red_terracotta_brick_stairs","pyrite:black_stained_stairs","pyrite:black_brick_stairs","pyrite:black_terracotta_brick_stairs","pyrite:glow_stained_stairs","pyrite:glow_brick_stairs","pyrite:glow_terracotta_brick_stairs","pyrite:dragon_stained_stairs","pyrite:dragon_brick_stairs","pyrite:dragon_terracotta_brick_stairs","pyrite:star_stained_stairs","pyrite:star_brick_stairs","pyrite:star_terracotta_brick_stairs","pyrite:honey_stained_stairs","pyrite:honey_brick_stairs","pyrite:honey_terracotta_brick_stairs","pyrite:nostalgia_stained_stairs","pyrite:nostalgia_brick_stairs","pyrite:nostalgia_terracotta_brick_stairs","pyrite:rose_stained_stairs","pyrite:rose_brick_stairs","pyrite:rose_terracotta_brick_stairs","pyrite:poisonous_stained_stairs","pyrite:poisonous_brick_stairs","pyrite:poisonous_terracotta_brick_stairs","pyrite:red_mushroom_stairs","pyrite:brown_mushroom_stairs","pyrite:cobblestone_brick_stairs","pyrite:mossy_cobblestone_brick_stairs","pyrite:smooth_stone_brick_stairs","pyrite:nostalgia_grass_stairs","pyrite:podzol_stairs","pyrite:grass_stairs","pyrite:mycelium_stairs","pyrite:path_stairs","pyrite:white_concrete_stairs","pyrite:orange_concrete_stairs","pyrite:magenta_concrete_stairs","pyrite:light_blue_concrete_stairs","pyrite:yellow_concrete_stairs","pyrite:lime_concrete_stairs","pyrite:pink_concrete_stairs","pyrite:gray_concrete_stairs","pyrite:light_gray_concrete_stairs","pyrite:cyan_concrete_stairs","pyrite:purple_concrete_stairs","pyrite:blue_concrete_stairs","pyrite:brown_concrete_stairs","pyrite:green_concrete_stairs","pyrite:red_concrete_stairs","pyrite:black_concrete_stairs","pyrite:glow_concrete_stairs","pyrite:dragon_concrete_stairs","pyrite:star_concrete_stairs","pyrite:honey_concrete_stairs","pyrite:nostalgia_concrete_stairs","pyrite:rose_concrete_stairs","pyrite:poisonous_concrete_stairs","pyrite:charred_nether_brick_stairs","pyrite:blue_nether_brick_stairs","pyrite:cut_iron_stairs","pyrite:smooth_iron_stairs","pyrite:cut_gold_stairs","pyrite:smooth_gold_stairs","pyrite:cut_emerald_stairs","pyrite:smooth_emerald_stairs","pyrite:cut_diamond_stairs","pyrite:smooth_diamond_stairs","pyrite:cut_netherite_stairs","pyrite:smooth_netherite_stairs","pyrite:cut_quartz_stairs","pyrite:cut_amethyst_stairs","pyrite:smooth_amethyst_stairs","pyrite:cut_lapis_stairs","pyrite:smooth_lapis_stairs","pyrite:cut_redstone_stairs","pyrite:smooth_redstone_stairs","pyrite:smooth_copper_stairs","pyrite:smooth_exposed_copper_stairs","pyrite:smooth_weathered_copper_stairs","pyrite:smooth_oxidized_copper_stairs"]} \ No newline at end of file +{"replace":false,"values":["pyrite:white_stained_stairs","pyrite:white_brick_stairs","pyrite:white_terracotta_brick_stairs","pyrite:orange_stained_stairs","pyrite:orange_brick_stairs","pyrite:orange_terracotta_brick_stairs","pyrite:magenta_stained_stairs","pyrite:magenta_brick_stairs","pyrite:magenta_terracotta_brick_stairs","pyrite:light_blue_stained_stairs","pyrite:light_blue_brick_stairs","pyrite:light_blue_terracotta_brick_stairs","pyrite:yellow_stained_stairs","pyrite:yellow_brick_stairs","pyrite:yellow_terracotta_brick_stairs","pyrite:lime_stained_stairs","pyrite:lime_brick_stairs","pyrite:lime_terracotta_brick_stairs","pyrite:pink_stained_stairs","pyrite:pink_brick_stairs","pyrite:pink_terracotta_brick_stairs","pyrite:gray_stained_stairs","pyrite:gray_brick_stairs","pyrite:gray_terracotta_brick_stairs","pyrite:light_gray_stained_stairs","pyrite:light_gray_brick_stairs","pyrite:light_gray_terracotta_brick_stairs","pyrite:cyan_stained_stairs","pyrite:cyan_brick_stairs","pyrite:cyan_terracotta_brick_stairs","pyrite:purple_stained_stairs","pyrite:purple_brick_stairs","pyrite:purple_terracotta_brick_stairs","pyrite:blue_stained_stairs","pyrite:blue_brick_stairs","pyrite:blue_terracotta_brick_stairs","pyrite:brown_stained_stairs","pyrite:brown_brick_stairs","pyrite:brown_terracotta_brick_stairs","pyrite:green_stained_stairs","pyrite:green_brick_stairs","pyrite:green_terracotta_brick_stairs","pyrite:red_stained_stairs","pyrite:red_brick_stairs","pyrite:red_terracotta_brick_stairs","pyrite:black_stained_stairs","pyrite:black_brick_stairs","pyrite:black_terracotta_brick_stairs","pyrite:glow_stained_stairs","pyrite:glow_brick_stairs","pyrite:glow_terracotta_brick_stairs","pyrite:dragon_stained_stairs","pyrite:dragon_brick_stairs","pyrite:dragon_terracotta_brick_stairs","pyrite:star_stained_stairs","pyrite:star_brick_stairs","pyrite:star_terracotta_brick_stairs","pyrite:honey_stained_stairs","pyrite:honey_brick_stairs","pyrite:honey_terracotta_brick_stairs","pyrite:nostalgia_stained_stairs","pyrite:nostalgia_brick_stairs","pyrite:nostalgia_terracotta_brick_stairs","pyrite:rose_stained_stairs","pyrite:rose_brick_stairs","pyrite:rose_terracotta_brick_stairs","pyrite:poisonous_stained_stairs","pyrite:poisonous_brick_stairs","pyrite:poisonous_terracotta_brick_stairs","pyrite:red_mushroom_stairs","pyrite:brown_mushroom_stairs","pyrite:cobblestone_brick_stairs","pyrite:mossy_cobblestone_brick_stairs","pyrite:smooth_stone_brick_stairs","pyrite:nostalgia_grass_stairs","pyrite:podzol_stairs","pyrite:grass_stairs","pyrite:mycelium_stairs","pyrite:path_stairs","pyrite:white_concrete_stairs","pyrite:orange_concrete_stairs","pyrite:magenta_concrete_stairs","pyrite:light_blue_concrete_stairs","pyrite:yellow_concrete_stairs","pyrite:lime_concrete_stairs","pyrite:pink_concrete_stairs","pyrite:gray_concrete_stairs","pyrite:light_gray_concrete_stairs","pyrite:cyan_concrete_stairs","pyrite:purple_concrete_stairs","pyrite:blue_concrete_stairs","pyrite:brown_concrete_stairs","pyrite:green_concrete_stairs","pyrite:red_concrete_stairs","pyrite:black_concrete_stairs","pyrite:glow_concrete_stairs","pyrite:dragon_concrete_stairs","pyrite:star_concrete_stairs","pyrite:honey_concrete_stairs","pyrite:nostalgia_concrete_stairs","pyrite:rose_concrete_stairs","pyrite:poisonous_concrete_stairs","pyrite:charred_nether_brick_stairs","pyrite:blue_nether_brick_stairs","pyrite:cut_iron_stairs","pyrite:smooth_iron_stairs","pyrite:cut_gold_stairs","pyrite:smooth_gold_stairs","pyrite:cut_emerald_stairs","pyrite:smooth_emerald_stairs","pyrite:cut_diamond_stairs","pyrite:smooth_diamond_stairs","pyrite:cut_netherite_stairs","pyrite:smooth_netherite_stairs","pyrite:cut_quartz_stairs","pyrite:cut_amethyst_stairs","pyrite:smooth_amethyst_stairs","pyrite:cut_lapis_stairs","pyrite:smooth_lapis_stairs","pyrite:cut_redstone_stairs","pyrite:smooth_redstone_stairs","pyrite:smooth_copper_stairs","pyrite:smooth_exposed_copper_stairs","pyrite:smooth_weathered_copper_stairs","pyrite:smooth_oxidized_copper_stairs","pyrite:mossy_smooth_stone_brick_stairs","pyrite:granite_brick_stairs","pyrite:mossy_granite_brick_stairs","pyrite:andesite_brick_stairs","pyrite:mossy_andesite_brick_stairs","pyrite:diorite_brick_stairs","pyrite:mossy_diorite_brick_stairs","pyrite:calcite_brick_stairs","pyrite:mossy_calcite_brick_stairs","pyrite:mossy_deepslate_brick_stairs"]} \ No newline at end of file diff --git a/common/src/main/resources/data/minecraft/tags/block/walls.json b/common/src/main/resources/data/minecraft/tags/block/walls.json index ec949e1b3..9370a1d2f 100644 --- a/common/src/main/resources/data/minecraft/tags/block/walls.json +++ b/common/src/main/resources/data/minecraft/tags/block/walls.json @@ -1 +1 @@ -{"replace":false,"values":["pyrite:white_brick_wall","pyrite:white_terracotta_brick_wall","pyrite:orange_brick_wall","pyrite:orange_terracotta_brick_wall","pyrite:magenta_brick_wall","pyrite:magenta_terracotta_brick_wall","pyrite:light_blue_brick_wall","pyrite:light_blue_terracotta_brick_wall","pyrite:yellow_brick_wall","pyrite:yellow_terracotta_brick_wall","pyrite:lime_brick_wall","pyrite:lime_terracotta_brick_wall","pyrite:pink_brick_wall","pyrite:pink_terracotta_brick_wall","pyrite:gray_brick_wall","pyrite:gray_terracotta_brick_wall","pyrite:light_gray_brick_wall","pyrite:light_gray_terracotta_brick_wall","pyrite:cyan_brick_wall","pyrite:cyan_terracotta_brick_wall","pyrite:purple_brick_wall","pyrite:purple_terracotta_brick_wall","pyrite:blue_brick_wall","pyrite:blue_terracotta_brick_wall","pyrite:brown_brick_wall","pyrite:brown_terracotta_brick_wall","pyrite:green_brick_wall","pyrite:green_terracotta_brick_wall","pyrite:red_brick_wall","pyrite:red_terracotta_brick_wall","pyrite:black_brick_wall","pyrite:black_terracotta_brick_wall","pyrite:glow_brick_wall","pyrite:glow_terracotta_brick_wall","pyrite:dragon_brick_wall","pyrite:dragon_terracotta_brick_wall","pyrite:star_brick_wall","pyrite:star_terracotta_brick_wall","pyrite:honey_brick_wall","pyrite:honey_terracotta_brick_wall","pyrite:nostalgia_brick_wall","pyrite:nostalgia_terracotta_brick_wall","pyrite:rose_brick_wall","pyrite:rose_terracotta_brick_wall","pyrite:poisonous_brick_wall","pyrite:poisonous_terracotta_brick_wall","pyrite:cobblestone_brick_wall","pyrite:mossy_cobblestone_brick_wall","pyrite:smooth_stone_brick_wall","pyrite:charred_nether_brick_wall","pyrite:blue_nether_brick_wall","pyrite:cut_iron_wall","pyrite:smooth_iron_wall","pyrite:cut_gold_wall","pyrite:smooth_gold_wall","pyrite:cut_emerald_wall","pyrite:smooth_emerald_wall","pyrite:cut_diamond_wall","pyrite:smooth_diamond_wall","pyrite:cut_netherite_wall","pyrite:smooth_netherite_wall","pyrite:cut_quartz_wall","pyrite:smooth_quartz_wall","pyrite:cut_amethyst_wall","pyrite:smooth_amethyst_wall","pyrite:cut_lapis_wall","pyrite:smooth_lapis_wall","pyrite:cut_redstone_wall","pyrite:smooth_redstone_wall","pyrite:cut_copper_wall","pyrite:smooth_copper_wall","pyrite:cut_exposed_copper_wall","pyrite:smooth_exposed_copper_wall","pyrite:cut_weathered_copper_wall","pyrite:smooth_weathered_copper_wall","pyrite:cut_oxidized_copper_wall","pyrite:smooth_oxidized_copper_wall"]} \ No newline at end of file +{"replace":false,"values":["pyrite:white_brick_wall","pyrite:white_terracotta_brick_wall","pyrite:orange_brick_wall","pyrite:orange_terracotta_brick_wall","pyrite:magenta_brick_wall","pyrite:magenta_terracotta_brick_wall","pyrite:light_blue_brick_wall","pyrite:light_blue_terracotta_brick_wall","pyrite:yellow_brick_wall","pyrite:yellow_terracotta_brick_wall","pyrite:lime_brick_wall","pyrite:lime_terracotta_brick_wall","pyrite:pink_brick_wall","pyrite:pink_terracotta_brick_wall","pyrite:gray_brick_wall","pyrite:gray_terracotta_brick_wall","pyrite:light_gray_brick_wall","pyrite:light_gray_terracotta_brick_wall","pyrite:cyan_brick_wall","pyrite:cyan_terracotta_brick_wall","pyrite:purple_brick_wall","pyrite:purple_terracotta_brick_wall","pyrite:blue_brick_wall","pyrite:blue_terracotta_brick_wall","pyrite:brown_brick_wall","pyrite:brown_terracotta_brick_wall","pyrite:green_brick_wall","pyrite:green_terracotta_brick_wall","pyrite:red_brick_wall","pyrite:red_terracotta_brick_wall","pyrite:black_brick_wall","pyrite:black_terracotta_brick_wall","pyrite:glow_brick_wall","pyrite:glow_terracotta_brick_wall","pyrite:dragon_brick_wall","pyrite:dragon_terracotta_brick_wall","pyrite:star_brick_wall","pyrite:star_terracotta_brick_wall","pyrite:honey_brick_wall","pyrite:honey_terracotta_brick_wall","pyrite:nostalgia_brick_wall","pyrite:nostalgia_terracotta_brick_wall","pyrite:rose_brick_wall","pyrite:rose_terracotta_brick_wall","pyrite:poisonous_brick_wall","pyrite:poisonous_terracotta_brick_wall","pyrite:cobblestone_brick_wall","pyrite:mossy_cobblestone_brick_wall","pyrite:smooth_stone_brick_wall","pyrite:charred_nether_brick_wall","pyrite:blue_nether_brick_wall","pyrite:cut_iron_wall","pyrite:smooth_iron_wall","pyrite:cut_gold_wall","pyrite:smooth_gold_wall","pyrite:cut_emerald_wall","pyrite:smooth_emerald_wall","pyrite:cut_diamond_wall","pyrite:smooth_diamond_wall","pyrite:cut_netherite_wall","pyrite:smooth_netherite_wall","pyrite:cut_quartz_wall","pyrite:smooth_quartz_wall","pyrite:cut_amethyst_wall","pyrite:smooth_amethyst_wall","pyrite:cut_lapis_wall","pyrite:smooth_lapis_wall","pyrite:cut_redstone_wall","pyrite:smooth_redstone_wall","pyrite:cut_copper_wall","pyrite:smooth_copper_wall","pyrite:cut_exposed_copper_wall","pyrite:smooth_exposed_copper_wall","pyrite:cut_weathered_copper_wall","pyrite:smooth_weathered_copper_wall","pyrite:cut_oxidized_copper_wall","pyrite:smooth_oxidized_copper_wall","pyrite:mossy_smooth_stone_brick_wall","pyrite:granite_brick_wall","pyrite:mossy_granite_brick_wall","pyrite:andesite_brick_wall","pyrite:mossy_andesite_brick_wall","pyrite:diorite_brick_wall","pyrite:mossy_diorite_brick_wall","pyrite:calcite_brick_wall","pyrite:mossy_calcite_brick_wall","pyrite:mossy_deepslate_brick_wall"]} \ No newline at end of file diff --git a/common/src/main/resources/data/minecraft/tags/item/stairs.json b/common/src/main/resources/data/minecraft/tags/item/stairs.json index d69d75594..dee110498 100644 --- a/common/src/main/resources/data/minecraft/tags/item/stairs.json +++ b/common/src/main/resources/data/minecraft/tags/item/stairs.json @@ -1 +1 @@ -{"replace":false,"values":["pyrite:white_stained_stairs","pyrite:white_brick_stairs","pyrite:white_terracotta_brick_stairs","pyrite:orange_stained_stairs","pyrite:orange_brick_stairs","pyrite:orange_terracotta_brick_stairs","pyrite:magenta_stained_stairs","pyrite:magenta_brick_stairs","pyrite:magenta_terracotta_brick_stairs","pyrite:light_blue_stained_stairs","pyrite:light_blue_brick_stairs","pyrite:light_blue_terracotta_brick_stairs","pyrite:yellow_stained_stairs","pyrite:yellow_brick_stairs","pyrite:yellow_terracotta_brick_stairs","pyrite:lime_stained_stairs","pyrite:lime_brick_stairs","pyrite:lime_terracotta_brick_stairs","pyrite:pink_stained_stairs","pyrite:pink_brick_stairs","pyrite:pink_terracotta_brick_stairs","pyrite:gray_stained_stairs","pyrite:gray_brick_stairs","pyrite:gray_terracotta_brick_stairs","pyrite:light_gray_stained_stairs","pyrite:light_gray_brick_stairs","pyrite:light_gray_terracotta_brick_stairs","pyrite:cyan_stained_stairs","pyrite:cyan_brick_stairs","pyrite:cyan_terracotta_brick_stairs","pyrite:purple_stained_stairs","pyrite:purple_brick_stairs","pyrite:purple_terracotta_brick_stairs","pyrite:blue_stained_stairs","pyrite:blue_brick_stairs","pyrite:blue_terracotta_brick_stairs","pyrite:brown_stained_stairs","pyrite:brown_brick_stairs","pyrite:brown_terracotta_brick_stairs","pyrite:green_stained_stairs","pyrite:green_brick_stairs","pyrite:green_terracotta_brick_stairs","pyrite:red_stained_stairs","pyrite:red_brick_stairs","pyrite:red_terracotta_brick_stairs","pyrite:black_stained_stairs","pyrite:black_brick_stairs","pyrite:black_terracotta_brick_stairs","pyrite:glow_stained_stairs","pyrite:glow_brick_stairs","pyrite:glow_terracotta_brick_stairs","pyrite:dragon_stained_stairs","pyrite:dragon_brick_stairs","pyrite:dragon_terracotta_brick_stairs","pyrite:star_stained_stairs","pyrite:star_brick_stairs","pyrite:star_terracotta_brick_stairs","pyrite:honey_stained_stairs","pyrite:honey_brick_stairs","pyrite:honey_terracotta_brick_stairs","pyrite:nostalgia_stained_stairs","pyrite:nostalgia_brick_stairs","pyrite:nostalgia_terracotta_brick_stairs","pyrite:rose_stained_stairs","pyrite:rose_brick_stairs","pyrite:rose_terracotta_brick_stairs","pyrite:poisonous_stained_stairs","pyrite:poisonous_brick_stairs","pyrite:poisonous_terracotta_brick_stairs","pyrite:red_mushroom_stairs","pyrite:brown_mushroom_stairs","pyrite:cobblestone_brick_stairs","pyrite:mossy_cobblestone_brick_stairs","pyrite:smooth_stone_brick_stairs","pyrite:nostalgia_grass_stairs","pyrite:podzol_stairs","pyrite:grass_stairs","pyrite:mycelium_stairs","pyrite:path_stairs","pyrite:white_concrete_stairs","pyrite:orange_concrete_stairs","pyrite:magenta_concrete_stairs","pyrite:light_blue_concrete_stairs","pyrite:yellow_concrete_stairs","pyrite:lime_concrete_stairs","pyrite:pink_concrete_stairs","pyrite:gray_concrete_stairs","pyrite:light_gray_concrete_stairs","pyrite:cyan_concrete_stairs","pyrite:purple_concrete_stairs","pyrite:blue_concrete_stairs","pyrite:brown_concrete_stairs","pyrite:green_concrete_stairs","pyrite:red_concrete_stairs","pyrite:black_concrete_stairs","pyrite:glow_concrete_stairs","pyrite:dragon_concrete_stairs","pyrite:star_concrete_stairs","pyrite:honey_concrete_stairs","pyrite:nostalgia_concrete_stairs","pyrite:rose_concrete_stairs","pyrite:poisonous_concrete_stairs","pyrite:charred_nether_brick_stairs","pyrite:blue_nether_brick_stairs","pyrite:cut_iron_stairs","pyrite:smooth_iron_stairs","pyrite:cut_gold_stairs","pyrite:smooth_gold_stairs","pyrite:cut_emerald_stairs","pyrite:smooth_emerald_stairs","pyrite:cut_diamond_stairs","pyrite:smooth_diamond_stairs","pyrite:cut_netherite_stairs","pyrite:smooth_netherite_stairs","pyrite:cut_quartz_stairs","pyrite:cut_amethyst_stairs","pyrite:smooth_amethyst_stairs","pyrite:cut_lapis_stairs","pyrite:smooth_lapis_stairs","pyrite:cut_redstone_stairs","pyrite:smooth_redstone_stairs","pyrite:smooth_copper_stairs","pyrite:smooth_exposed_copper_stairs","pyrite:smooth_weathered_copper_stairs","pyrite:smooth_oxidized_copper_stairs"]} \ No newline at end of file +{"replace":false,"values":["pyrite:white_stained_stairs","pyrite:white_brick_stairs","pyrite:white_terracotta_brick_stairs","pyrite:orange_stained_stairs","pyrite:orange_brick_stairs","pyrite:orange_terracotta_brick_stairs","pyrite:magenta_stained_stairs","pyrite:magenta_brick_stairs","pyrite:magenta_terracotta_brick_stairs","pyrite:light_blue_stained_stairs","pyrite:light_blue_brick_stairs","pyrite:light_blue_terracotta_brick_stairs","pyrite:yellow_stained_stairs","pyrite:yellow_brick_stairs","pyrite:yellow_terracotta_brick_stairs","pyrite:lime_stained_stairs","pyrite:lime_brick_stairs","pyrite:lime_terracotta_brick_stairs","pyrite:pink_stained_stairs","pyrite:pink_brick_stairs","pyrite:pink_terracotta_brick_stairs","pyrite:gray_stained_stairs","pyrite:gray_brick_stairs","pyrite:gray_terracotta_brick_stairs","pyrite:light_gray_stained_stairs","pyrite:light_gray_brick_stairs","pyrite:light_gray_terracotta_brick_stairs","pyrite:cyan_stained_stairs","pyrite:cyan_brick_stairs","pyrite:cyan_terracotta_brick_stairs","pyrite:purple_stained_stairs","pyrite:purple_brick_stairs","pyrite:purple_terracotta_brick_stairs","pyrite:blue_stained_stairs","pyrite:blue_brick_stairs","pyrite:blue_terracotta_brick_stairs","pyrite:brown_stained_stairs","pyrite:brown_brick_stairs","pyrite:brown_terracotta_brick_stairs","pyrite:green_stained_stairs","pyrite:green_brick_stairs","pyrite:green_terracotta_brick_stairs","pyrite:red_stained_stairs","pyrite:red_brick_stairs","pyrite:red_terracotta_brick_stairs","pyrite:black_stained_stairs","pyrite:black_brick_stairs","pyrite:black_terracotta_brick_stairs","pyrite:glow_stained_stairs","pyrite:glow_brick_stairs","pyrite:glow_terracotta_brick_stairs","pyrite:dragon_stained_stairs","pyrite:dragon_brick_stairs","pyrite:dragon_terracotta_brick_stairs","pyrite:star_stained_stairs","pyrite:star_brick_stairs","pyrite:star_terracotta_brick_stairs","pyrite:honey_stained_stairs","pyrite:honey_brick_stairs","pyrite:honey_terracotta_brick_stairs","pyrite:nostalgia_stained_stairs","pyrite:nostalgia_brick_stairs","pyrite:nostalgia_terracotta_brick_stairs","pyrite:rose_stained_stairs","pyrite:rose_brick_stairs","pyrite:rose_terracotta_brick_stairs","pyrite:poisonous_stained_stairs","pyrite:poisonous_brick_stairs","pyrite:poisonous_terracotta_brick_stairs","pyrite:red_mushroom_stairs","pyrite:brown_mushroom_stairs","pyrite:cobblestone_brick_stairs","pyrite:mossy_cobblestone_brick_stairs","pyrite:smooth_stone_brick_stairs","pyrite:nostalgia_grass_stairs","pyrite:podzol_stairs","pyrite:grass_stairs","pyrite:mycelium_stairs","pyrite:path_stairs","pyrite:white_concrete_stairs","pyrite:orange_concrete_stairs","pyrite:magenta_concrete_stairs","pyrite:light_blue_concrete_stairs","pyrite:yellow_concrete_stairs","pyrite:lime_concrete_stairs","pyrite:pink_concrete_stairs","pyrite:gray_concrete_stairs","pyrite:light_gray_concrete_stairs","pyrite:cyan_concrete_stairs","pyrite:purple_concrete_stairs","pyrite:blue_concrete_stairs","pyrite:brown_concrete_stairs","pyrite:green_concrete_stairs","pyrite:red_concrete_stairs","pyrite:black_concrete_stairs","pyrite:glow_concrete_stairs","pyrite:dragon_concrete_stairs","pyrite:star_concrete_stairs","pyrite:honey_concrete_stairs","pyrite:nostalgia_concrete_stairs","pyrite:rose_concrete_stairs","pyrite:poisonous_concrete_stairs","pyrite:charred_nether_brick_stairs","pyrite:blue_nether_brick_stairs","pyrite:cut_iron_stairs","pyrite:smooth_iron_stairs","pyrite:cut_gold_stairs","pyrite:smooth_gold_stairs","pyrite:cut_emerald_stairs","pyrite:smooth_emerald_stairs","pyrite:cut_diamond_stairs","pyrite:smooth_diamond_stairs","pyrite:cut_netherite_stairs","pyrite:smooth_netherite_stairs","pyrite:cut_quartz_stairs","pyrite:cut_amethyst_stairs","pyrite:smooth_amethyst_stairs","pyrite:cut_lapis_stairs","pyrite:smooth_lapis_stairs","pyrite:cut_redstone_stairs","pyrite:smooth_redstone_stairs","pyrite:smooth_copper_stairs","pyrite:smooth_exposed_copper_stairs","pyrite:smooth_weathered_copper_stairs","pyrite:smooth_oxidized_copper_stairs","pyrite:mossy_smooth_stone_brick_stairs","pyrite:granite_brick_stairs","pyrite:mossy_granite_brick_stairs","pyrite:andesite_brick_stairs","pyrite:mossy_andesite_brick_stairs","pyrite:diorite_brick_stairs","pyrite:mossy_diorite_brick_stairs","pyrite:calcite_brick_stairs","pyrite:mossy_calcite_brick_stairs","pyrite:mossy_deepslate_brick_stairs"]} \ No newline at end of file diff --git a/common/src/main/resources/data/minecraft/tags/item/walls.json b/common/src/main/resources/data/minecraft/tags/item/walls.json index ec949e1b3..9370a1d2f 100644 --- a/common/src/main/resources/data/minecraft/tags/item/walls.json +++ b/common/src/main/resources/data/minecraft/tags/item/walls.json @@ -1 +1 @@ -{"replace":false,"values":["pyrite:white_brick_wall","pyrite:white_terracotta_brick_wall","pyrite:orange_brick_wall","pyrite:orange_terracotta_brick_wall","pyrite:magenta_brick_wall","pyrite:magenta_terracotta_brick_wall","pyrite:light_blue_brick_wall","pyrite:light_blue_terracotta_brick_wall","pyrite:yellow_brick_wall","pyrite:yellow_terracotta_brick_wall","pyrite:lime_brick_wall","pyrite:lime_terracotta_brick_wall","pyrite:pink_brick_wall","pyrite:pink_terracotta_brick_wall","pyrite:gray_brick_wall","pyrite:gray_terracotta_brick_wall","pyrite:light_gray_brick_wall","pyrite:light_gray_terracotta_brick_wall","pyrite:cyan_brick_wall","pyrite:cyan_terracotta_brick_wall","pyrite:purple_brick_wall","pyrite:purple_terracotta_brick_wall","pyrite:blue_brick_wall","pyrite:blue_terracotta_brick_wall","pyrite:brown_brick_wall","pyrite:brown_terracotta_brick_wall","pyrite:green_brick_wall","pyrite:green_terracotta_brick_wall","pyrite:red_brick_wall","pyrite:red_terracotta_brick_wall","pyrite:black_brick_wall","pyrite:black_terracotta_brick_wall","pyrite:glow_brick_wall","pyrite:glow_terracotta_brick_wall","pyrite:dragon_brick_wall","pyrite:dragon_terracotta_brick_wall","pyrite:star_brick_wall","pyrite:star_terracotta_brick_wall","pyrite:honey_brick_wall","pyrite:honey_terracotta_brick_wall","pyrite:nostalgia_brick_wall","pyrite:nostalgia_terracotta_brick_wall","pyrite:rose_brick_wall","pyrite:rose_terracotta_brick_wall","pyrite:poisonous_brick_wall","pyrite:poisonous_terracotta_brick_wall","pyrite:cobblestone_brick_wall","pyrite:mossy_cobblestone_brick_wall","pyrite:smooth_stone_brick_wall","pyrite:charred_nether_brick_wall","pyrite:blue_nether_brick_wall","pyrite:cut_iron_wall","pyrite:smooth_iron_wall","pyrite:cut_gold_wall","pyrite:smooth_gold_wall","pyrite:cut_emerald_wall","pyrite:smooth_emerald_wall","pyrite:cut_diamond_wall","pyrite:smooth_diamond_wall","pyrite:cut_netherite_wall","pyrite:smooth_netherite_wall","pyrite:cut_quartz_wall","pyrite:smooth_quartz_wall","pyrite:cut_amethyst_wall","pyrite:smooth_amethyst_wall","pyrite:cut_lapis_wall","pyrite:smooth_lapis_wall","pyrite:cut_redstone_wall","pyrite:smooth_redstone_wall","pyrite:cut_copper_wall","pyrite:smooth_copper_wall","pyrite:cut_exposed_copper_wall","pyrite:smooth_exposed_copper_wall","pyrite:cut_weathered_copper_wall","pyrite:smooth_weathered_copper_wall","pyrite:cut_oxidized_copper_wall","pyrite:smooth_oxidized_copper_wall"]} \ No newline at end of file +{"replace":false,"values":["pyrite:white_brick_wall","pyrite:white_terracotta_brick_wall","pyrite:orange_brick_wall","pyrite:orange_terracotta_brick_wall","pyrite:magenta_brick_wall","pyrite:magenta_terracotta_brick_wall","pyrite:light_blue_brick_wall","pyrite:light_blue_terracotta_brick_wall","pyrite:yellow_brick_wall","pyrite:yellow_terracotta_brick_wall","pyrite:lime_brick_wall","pyrite:lime_terracotta_brick_wall","pyrite:pink_brick_wall","pyrite:pink_terracotta_brick_wall","pyrite:gray_brick_wall","pyrite:gray_terracotta_brick_wall","pyrite:light_gray_brick_wall","pyrite:light_gray_terracotta_brick_wall","pyrite:cyan_brick_wall","pyrite:cyan_terracotta_brick_wall","pyrite:purple_brick_wall","pyrite:purple_terracotta_brick_wall","pyrite:blue_brick_wall","pyrite:blue_terracotta_brick_wall","pyrite:brown_brick_wall","pyrite:brown_terracotta_brick_wall","pyrite:green_brick_wall","pyrite:green_terracotta_brick_wall","pyrite:red_brick_wall","pyrite:red_terracotta_brick_wall","pyrite:black_brick_wall","pyrite:black_terracotta_brick_wall","pyrite:glow_brick_wall","pyrite:glow_terracotta_brick_wall","pyrite:dragon_brick_wall","pyrite:dragon_terracotta_brick_wall","pyrite:star_brick_wall","pyrite:star_terracotta_brick_wall","pyrite:honey_brick_wall","pyrite:honey_terracotta_brick_wall","pyrite:nostalgia_brick_wall","pyrite:nostalgia_terracotta_brick_wall","pyrite:rose_brick_wall","pyrite:rose_terracotta_brick_wall","pyrite:poisonous_brick_wall","pyrite:poisonous_terracotta_brick_wall","pyrite:cobblestone_brick_wall","pyrite:mossy_cobblestone_brick_wall","pyrite:smooth_stone_brick_wall","pyrite:charred_nether_brick_wall","pyrite:blue_nether_brick_wall","pyrite:cut_iron_wall","pyrite:smooth_iron_wall","pyrite:cut_gold_wall","pyrite:smooth_gold_wall","pyrite:cut_emerald_wall","pyrite:smooth_emerald_wall","pyrite:cut_diamond_wall","pyrite:smooth_diamond_wall","pyrite:cut_netherite_wall","pyrite:smooth_netherite_wall","pyrite:cut_quartz_wall","pyrite:smooth_quartz_wall","pyrite:cut_amethyst_wall","pyrite:smooth_amethyst_wall","pyrite:cut_lapis_wall","pyrite:smooth_lapis_wall","pyrite:cut_redstone_wall","pyrite:smooth_redstone_wall","pyrite:cut_copper_wall","pyrite:smooth_copper_wall","pyrite:cut_exposed_copper_wall","pyrite:smooth_exposed_copper_wall","pyrite:cut_weathered_copper_wall","pyrite:smooth_weathered_copper_wall","pyrite:cut_oxidized_copper_wall","pyrite:smooth_oxidized_copper_wall","pyrite:mossy_smooth_stone_brick_wall","pyrite:granite_brick_wall","pyrite:mossy_granite_brick_wall","pyrite:andesite_brick_wall","pyrite:mossy_andesite_brick_wall","pyrite:diorite_brick_wall","pyrite:mossy_diorite_brick_wall","pyrite:calcite_brick_wall","pyrite:mossy_calcite_brick_wall","pyrite:mossy_deepslate_brick_wall"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/acacia_crafting_table.json b/common/src/main/resources/data/pyrite/advancements/recipes/acacia_crafting_table.json new file mode 100644 index 000000000..8aa5916b1 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/acacia_crafting_table.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:acacia_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:acacia_crafting_table"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:acacia_crafting_table"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/amethyst_bars.json b/common/src/main/resources/data/pyrite/advancements/recipes/amethyst_bars.json new file mode 100644 index 000000000..390811318 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/amethyst_bars.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_amethyst"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:amethyst_bars"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:amethyst_bars"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/amethyst_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/amethyst_button.json new file mode 100644 index 000000000..7900b4d09 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/amethyst_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:amethyst_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:amethyst_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:amethyst_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/amethyst_door.json b/common/src/main/resources/data/pyrite/advancements/recipes/amethyst_door.json new file mode 100644 index 000000000..0f23721e3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/amethyst_door.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:amethyst_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:amethyst_door"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:amethyst_door"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/amethyst_pillar.json b/common/src/main/resources/data/pyrite/advancements/recipes/amethyst_pillar.json new file mode 100644 index 000000000..5fac494a3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/amethyst_pillar.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:amethyst_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:amethyst_pillar"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:amethyst_pillar"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/amethyst_pressure_plate.json b/common/src/main/resources/data/pyrite/advancements/recipes/amethyst_pressure_plate.json new file mode 100644 index 000000000..7d2f4851a --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/amethyst_pressure_plate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:amethyst_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:amethyst_pressure_plate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:amethyst_pressure_plate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/amethyst_trapdoor.json b/common/src/main/resources/data/pyrite/advancements/recipes/amethyst_trapdoor.json new file mode 100644 index 000000000..316479a95 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/amethyst_trapdoor.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:amethyst_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:amethyst_trapdoor"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:amethyst_trapdoor"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/andesite_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/andesite_brick_slab.json new file mode 100644 index 000000000..51f163ad9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/andesite_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:andesite_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:andesite_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:andesite_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/andesite_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/andesite_brick_stairs.json new file mode 100644 index 000000000..3cb16fd66 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/andesite_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:andesite_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:andesite_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:andesite_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/andesite_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/andesite_brick_wall.json new file mode 100644 index 000000000..d452b2777 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/andesite_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:andesite_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:andesite_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:andesite_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/andesite_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/andesite_brick_wall_gate.json new file mode 100644 index 000000000..30fdd8063 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/andesite_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:andesite_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:andesite_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:andesite_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/andesite_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/andesite_bricks.json new file mode 100644 index 000000000..e8b089ca9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/andesite_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:polished_andesite"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:andesite_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:andesite_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/andesite_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/andesite_wall_gate.json new file mode 100644 index 000000000..aa1944d8c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/andesite_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:andesite"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:andesite_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:andesite_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/bamboo_crafting_table.json b/common/src/main/resources/data/pyrite/advancements/recipes/bamboo_crafting_table.json new file mode 100644 index 000000000..329fa8950 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/bamboo_crafting_table.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:bamboo_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:bamboo_crafting_table"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:bamboo_crafting_table"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/birch_crafting_table.json b/common/src/main/resources/data/pyrite/advancements/recipes/birch_crafting_table.json new file mode 100644 index 000000000..3c3404923 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/birch_crafting_table.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:birch_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:birch_crafting_table"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:birch_crafting_table"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/black_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/black_brick_slab.json new file mode 100644 index 000000000..3cfacfa00 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/black_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:black_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:black_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:black_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/black_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/black_brick_stairs.json new file mode 100644 index 000000000..74e8ab879 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/black_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:black_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:black_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:black_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/black_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/black_brick_wall.json new file mode 100644 index 000000000..c65953ed6 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/black_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:black_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:black_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:black_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/black_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/black_brick_wall_gate.json new file mode 100644 index 000000000..e13ac5265 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/black_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:black_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:black_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:black_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/black_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/black_bricks.json new file mode 100644 index 000000000..3b50f6be1 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/black_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:black_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:black_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/black_concrete_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/black_concrete_slab.json new file mode 100644 index 000000000..e1720254f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/black_concrete_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:black_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:black_concrete_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:black_concrete_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/black_concrete_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/black_concrete_stairs.json new file mode 100644 index 000000000..5a0f47015 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/black_concrete_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:black_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:black_concrete_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:black_concrete_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/black_framed_glass.json b/common/src/main/resources/data/pyrite/advancements/recipes/black_framed_glass.json new file mode 100644 index 000000000..45655a345 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/black_framed_glass.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:black_framed_glass"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:black_framed_glass"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/black_framed_glass_pane.json b/common/src/main/resources/data/pyrite/advancements/recipes/black_framed_glass_pane.json new file mode 100644 index 000000000..91e4c72a0 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/black_framed_glass_pane.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:black_framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:black_framed_glass_pane"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:black_framed_glass_pane"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/black_lamp.json b/common/src/main/resources/data/pyrite/advancements/recipes/black_lamp.json new file mode 100644 index 000000000..b0aeb9d05 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/black_lamp.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glowstone_lamp"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:black_lamp"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:black_lamp"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_button.json new file mode 100644 index 000000000..5ba2f843e --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:black_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:black_stained_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:black_stained_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_crafting_table.json b/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_crafting_table.json new file mode 100644 index 000000000..c088e74cf --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_crafting_table.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:black_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:black_stained_crafting_table"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:black_stained_crafting_table"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_door.json b/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_door.json new file mode 100644 index 000000000..aa933e258 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_door.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:black_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:black_stained_door"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:black_stained_door"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_fence.json b/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_fence.json new file mode 100644 index 000000000..186a117e2 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_fence.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:black_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:black_stained_fence"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:black_stained_fence"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_fence_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_fence_gate.json new file mode 100644 index 000000000..e0e7eb38f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_fence_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:black_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:black_stained_fence_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:black_stained_fence_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_hanging_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_hanging_sign.json new file mode 100644 index 000000000..47a89fc49 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_hanging_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:black_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:black_stained_hanging_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:black_stained_hanging_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_ladder.json b/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_ladder.json new file mode 100644 index 000000000..98e4b5fe3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_ladder.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:black_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:black_stained_ladder"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:black_stained_ladder"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_planks.json b/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_planks.json new file mode 100644 index 000000000..3df9b2b6c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_planks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"#minecraft:planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:black_stained_planks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:black_stained_planks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_pressure_plate.json b/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_pressure_plate.json new file mode 100644 index 000000000..8d023ddaa --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_pressure_plate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:black_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:black_stained_pressure_plate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:black_stained_pressure_plate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_sign.json new file mode 100644 index 000000000..d458395f2 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:black_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:black_stained_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:black_stained_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_slab.json new file mode 100644 index 000000000..ac1768215 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:black_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:black_stained_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:black_stained_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_stairs.json new file mode 100644 index 000000000..599932b44 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:black_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:black_stained_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:black_stained_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_trapdoor.json b/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_trapdoor.json new file mode 100644 index 000000000..279f3ae32 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/black_stained_trapdoor.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:black_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:black_stained_trapdoor"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:black_stained_trapdoor"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/black_terracotta_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/black_terracotta_brick_slab.json new file mode 100644 index 000000000..6c62e27ab --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/black_terracotta_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:black_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:black_terracotta_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:black_terracotta_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/black_terracotta_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/black_terracotta_brick_stairs.json new file mode 100644 index 000000000..ef80e33c5 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/black_terracotta_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:black_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:black_terracotta_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:black_terracotta_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/black_terracotta_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/black_terracotta_brick_wall.json new file mode 100644 index 000000000..3fe62db23 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/black_terracotta_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:black_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:black_terracotta_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:black_terracotta_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/black_terracotta_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/black_terracotta_brick_wall_gate.json new file mode 100644 index 000000000..5f84e0533 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/black_terracotta_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:black_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:black_terracotta_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:black_terracotta_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/black_terracotta_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/black_terracotta_bricks.json new file mode 100644 index 000000000..ee6151326 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/black_terracotta_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:black_terracotta"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:black_terracotta_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:black_terracotta_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/black_torch.json b/common/src/main/resources/data/pyrite/advancements/recipes/black_torch.json new file mode 100644 index 000000000..55bb17681 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/black_torch.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:black_torch"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:black_torch"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/black_torch_lever.json b/common/src/main/resources/data/pyrite/advancements/recipes/black_torch_lever.json new file mode 100644 index 000000000..9815a839b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/black_torch_lever.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:black_torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:black_torch_lever"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:black_torch_lever"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/blackstone_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/blackstone_wall_gate.json new file mode 100644 index 000000000..cd85e5111 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/blackstone_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:blackstone"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:blackstone_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:blackstone_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/blue_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/blue_brick_slab.json new file mode 100644 index 000000000..1083d590e --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/blue_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:blue_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:blue_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:blue_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/blue_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/blue_brick_stairs.json new file mode 100644 index 000000000..0396b5939 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/blue_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:blue_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:blue_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:blue_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/blue_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/blue_brick_wall.json new file mode 100644 index 000000000..2a86beef9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/blue_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:blue_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:blue_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:blue_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/blue_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/blue_brick_wall_gate.json new file mode 100644 index 000000000..328c15ba2 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/blue_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:blue_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:blue_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:blue_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/blue_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/blue_bricks.json new file mode 100644 index 000000000..865547dba --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/blue_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:blue_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:blue_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/blue_concrete_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/blue_concrete_slab.json new file mode 100644 index 000000000..06e487cef --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/blue_concrete_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:blue_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:blue_concrete_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:blue_concrete_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/blue_concrete_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/blue_concrete_stairs.json new file mode 100644 index 000000000..322f707d9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/blue_concrete_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:blue_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:blue_concrete_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:blue_concrete_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/blue_framed_glass.json b/common/src/main/resources/data/pyrite/advancements/recipes/blue_framed_glass.json new file mode 100644 index 000000000..d10662050 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/blue_framed_glass.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:blue_framed_glass"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:blue_framed_glass"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/blue_framed_glass_pane.json b/common/src/main/resources/data/pyrite/advancements/recipes/blue_framed_glass_pane.json new file mode 100644 index 000000000..7b9eedf55 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/blue_framed_glass_pane.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:blue_framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:blue_framed_glass_pane"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:blue_framed_glass_pane"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/blue_lamp.json b/common/src/main/resources/data/pyrite/advancements/recipes/blue_lamp.json new file mode 100644 index 000000000..1a9018f16 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/blue_lamp.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glowstone_lamp"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:blue_lamp"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:blue_lamp"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/blue_nether_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/blue_nether_brick_slab.json new file mode 100644 index 000000000..a57633e85 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/blue_nether_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:blue_nether_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:blue_nether_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:blue_nether_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/blue_nether_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/blue_nether_brick_stairs.json new file mode 100644 index 000000000..0a3a698b3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/blue_nether_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:blue_nether_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:blue_nether_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:blue_nether_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/blue_nether_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/blue_nether_brick_wall.json new file mode 100644 index 000000000..bef8b2669 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/blue_nether_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:blue_nether_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:blue_nether_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:blue_nether_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/blue_nether_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/blue_nether_brick_wall_gate.json new file mode 100644 index 000000000..a6ee10736 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/blue_nether_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:blue_nether_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:blue_nether_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:blue_nether_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/blue_nether_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/blue_nether_bricks.json new file mode 100644 index 000000000..15028d94b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/blue_nether_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:nether_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:blue_nether_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:blue_nether_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/blue_rose.json b/common/src/main/resources/data/pyrite/advancements/recipes/blue_rose.json new file mode 100644 index 000000000..3170ab3cb --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/blue_rose.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:poppy"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:blue_rose"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:blue_rose"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_button.json new file mode 100644 index 000000000..cf5100fdf --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:blue_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:blue_stained_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:blue_stained_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_crafting_table.json b/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_crafting_table.json new file mode 100644 index 000000000..33b12c6dc --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_crafting_table.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:blue_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:blue_stained_crafting_table"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:blue_stained_crafting_table"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_door.json b/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_door.json new file mode 100644 index 000000000..2563c00d6 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_door.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:blue_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:blue_stained_door"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:blue_stained_door"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_fence.json b/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_fence.json new file mode 100644 index 000000000..cf405b7b1 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_fence.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:blue_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:blue_stained_fence"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:blue_stained_fence"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_fence_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_fence_gate.json new file mode 100644 index 000000000..3c7da582c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_fence_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:blue_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:blue_stained_fence_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:blue_stained_fence_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_hanging_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_hanging_sign.json new file mode 100644 index 000000000..745b1cd83 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_hanging_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:blue_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:blue_stained_hanging_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:blue_stained_hanging_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_ladder.json b/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_ladder.json new file mode 100644 index 000000000..6eadfdfbc --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_ladder.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:blue_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:blue_stained_ladder"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:blue_stained_ladder"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_planks.json b/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_planks.json new file mode 100644 index 000000000..6f916709b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_planks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"#minecraft:planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:blue_stained_planks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:blue_stained_planks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_pressure_plate.json b/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_pressure_plate.json new file mode 100644 index 000000000..a117af64d --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_pressure_plate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:blue_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:blue_stained_pressure_plate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:blue_stained_pressure_plate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_sign.json new file mode 100644 index 000000000..06e7bca7d --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:blue_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:blue_stained_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:blue_stained_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_slab.json new file mode 100644 index 000000000..4a0e1d1e5 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:blue_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:blue_stained_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:blue_stained_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_stairs.json new file mode 100644 index 000000000..920202edf --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:blue_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:blue_stained_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:blue_stained_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_trapdoor.json b/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_trapdoor.json new file mode 100644 index 000000000..57a48aa17 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/blue_stained_trapdoor.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:blue_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:blue_stained_trapdoor"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:blue_stained_trapdoor"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/blue_terracotta_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/blue_terracotta_brick_slab.json new file mode 100644 index 000000000..98e57fd48 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/blue_terracotta_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:blue_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:blue_terracotta_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:blue_terracotta_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/blue_terracotta_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/blue_terracotta_brick_stairs.json new file mode 100644 index 000000000..2f2650190 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/blue_terracotta_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:blue_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:blue_terracotta_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:blue_terracotta_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/blue_terracotta_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/blue_terracotta_brick_wall.json new file mode 100644 index 000000000..af0aa6186 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/blue_terracotta_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:blue_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:blue_terracotta_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:blue_terracotta_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/blue_terracotta_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/blue_terracotta_brick_wall_gate.json new file mode 100644 index 000000000..029389b41 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/blue_terracotta_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:blue_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:blue_terracotta_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:blue_terracotta_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/blue_terracotta_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/blue_terracotta_bricks.json new file mode 100644 index 000000000..3f63aadab --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/blue_terracotta_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:blue_terracotta"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:blue_terracotta_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:blue_terracotta_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/blue_torch.json b/common/src/main/resources/data/pyrite/advancements/recipes/blue_torch.json new file mode 100644 index 000000000..64746b106 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/blue_torch.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:blue_torch"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:blue_torch"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/blue_torch_lever.json b/common/src/main/resources/data/pyrite/advancements/recipes/blue_torch_lever.json new file mode 100644 index 000000000..eb51cdfed --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/blue_torch_lever.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:blue_torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:blue_torch_lever"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:blue_torch_lever"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/brick_wall_gate.json new file mode 100644 index 000000000..cf6c212f8 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_brick_slab.json new file mode 100644 index 000000000..759642080 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:brown_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_brick_stairs.json new file mode 100644 index 000000000..6b84cf811 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:brown_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_brick_wall.json new file mode 100644 index 000000000..1da27eeba --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:brown_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_brick_wall_gate.json new file mode 100644 index 000000000..d57b54fc7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:brown_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_bricks.json new file mode 100644 index 000000000..cf417904a --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_concrete_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_concrete_slab.json new file mode 100644 index 000000000..a418e9a27 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_concrete_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:brown_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_concrete_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_concrete_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_concrete_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_concrete_stairs.json new file mode 100644 index 000000000..e51028d08 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_concrete_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:brown_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_concrete_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_concrete_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_framed_glass.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_framed_glass.json new file mode 100644 index 000000000..c61aeaaf7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_framed_glass.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_framed_glass"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_framed_glass"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_framed_glass_pane.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_framed_glass_pane.json new file mode 100644 index 000000000..531bda5d0 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_framed_glass_pane.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:brown_framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_framed_glass_pane"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_framed_glass_pane"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_lamp.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_lamp.json new file mode 100644 index 000000000..333b2beab --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_lamp.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glowstone_lamp"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_lamp"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_lamp"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_button.json new file mode 100644 index 000000000..ca0d763b4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:brown_mushroom_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_mushroom_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_mushroom_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_crafting_table.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_crafting_table.json new file mode 100644 index 000000000..7191e4864 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_crafting_table.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:brown_mushroom_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_mushroom_crafting_table"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_mushroom_crafting_table"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_door.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_door.json new file mode 100644 index 000000000..15b7ee49e --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_door.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:brown_mushroom_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_mushroom_door"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_mushroom_door"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_fence.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_fence.json new file mode 100644 index 000000000..f4fd383ee --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_fence.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:brown_mushroom_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_mushroom_fence"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_mushroom_fence"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_fence_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_fence_gate.json new file mode 100644 index 000000000..661def7a5 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_fence_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:brown_mushroom_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_mushroom_fence_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_mushroom_fence_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_hanging_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_hanging_sign.json new file mode 100644 index 000000000..d98171378 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_hanging_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:brown_mushroom_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_mushroom_hanging_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_mushroom_hanging_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_ladder.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_ladder.json new file mode 100644 index 000000000..7e62750ef --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_ladder.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:brown_mushroom_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_mushroom_ladder"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_mushroom_ladder"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_planks.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_planks.json new file mode 100644 index 000000000..62debffcf --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_planks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"#minecraft:planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_mushroom_planks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_mushroom_planks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_pressure_plate.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_pressure_plate.json new file mode 100644 index 000000000..5fa4c5d18 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_pressure_plate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:brown_mushroom_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_mushroom_pressure_plate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_mushroom_pressure_plate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_sign.json new file mode 100644 index 000000000..6b3861cb7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:brown_mushroom_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_mushroom_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_mushroom_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_slab.json new file mode 100644 index 000000000..63d9c1593 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:brown_mushroom_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_mushroom_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_mushroom_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_stairs.json new file mode 100644 index 000000000..af051302c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:brown_mushroom_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_mushroom_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_mushroom_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_trapdoor.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_trapdoor.json new file mode 100644 index 000000000..14ad748f3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_mushroom_trapdoor.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:brown_mushroom_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_mushroom_trapdoor"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_mushroom_trapdoor"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_button.json new file mode 100644 index 000000000..8781e86be --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:brown_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_stained_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_stained_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_crafting_table.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_crafting_table.json new file mode 100644 index 000000000..0179c1dc6 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_crafting_table.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:brown_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_stained_crafting_table"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_stained_crafting_table"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_door.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_door.json new file mode 100644 index 000000000..ed71e1bf4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_door.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:brown_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_stained_door"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_stained_door"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_fence.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_fence.json new file mode 100644 index 000000000..efacb86a3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_fence.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:brown_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_stained_fence"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_stained_fence"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_fence_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_fence_gate.json new file mode 100644 index 000000000..2aa40a32b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_fence_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:brown_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_stained_fence_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_stained_fence_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_hanging_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_hanging_sign.json new file mode 100644 index 000000000..be520ee7f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_hanging_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:brown_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_stained_hanging_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_stained_hanging_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_ladder.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_ladder.json new file mode 100644 index 000000000..40998772e --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_ladder.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:brown_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_stained_ladder"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_stained_ladder"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_planks.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_planks.json new file mode 100644 index 000000000..9d246e636 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_planks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"#minecraft:planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_stained_planks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_stained_planks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_pressure_plate.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_pressure_plate.json new file mode 100644 index 000000000..3ea64e16c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_pressure_plate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:brown_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_stained_pressure_plate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_stained_pressure_plate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_sign.json new file mode 100644 index 000000000..863eff01a --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:brown_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_stained_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_stained_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_slab.json new file mode 100644 index 000000000..7de15896b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:brown_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_stained_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_stained_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_stairs.json new file mode 100644 index 000000000..306bb6bf5 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:brown_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_stained_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_stained_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_trapdoor.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_trapdoor.json new file mode 100644 index 000000000..19fc7c249 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_stained_trapdoor.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:brown_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_stained_trapdoor"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_stained_trapdoor"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_terracotta_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_terracotta_brick_slab.json new file mode 100644 index 000000000..5d65bb4ea --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_terracotta_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:brown_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_terracotta_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_terracotta_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_terracotta_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_terracotta_brick_stairs.json new file mode 100644 index 000000000..765a284a9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_terracotta_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:brown_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_terracotta_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_terracotta_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_terracotta_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_terracotta_brick_wall.json new file mode 100644 index 000000000..278fd7618 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_terracotta_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:brown_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_terracotta_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_terracotta_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_terracotta_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_terracotta_brick_wall_gate.json new file mode 100644 index 000000000..1085389e2 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_terracotta_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:brown_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_terracotta_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_terracotta_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_terracotta_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_terracotta_bricks.json new file mode 100644 index 000000000..db04a9546 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_terracotta_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:brown_terracotta"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_terracotta_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_terracotta_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_torch.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_torch.json new file mode 100644 index 000000000..992dbd690 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_torch.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_torch"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_torch"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/brown_torch_lever.json b/common/src/main/resources/data/pyrite/advancements/recipes/brown_torch_lever.json new file mode 100644 index 000000000..4244840a2 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/brown_torch_lever.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:brown_torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:brown_torch_lever"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:brown_torch_lever"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/buttercup.json b/common/src/main/resources/data/pyrite/advancements/recipes/buttercup.json new file mode 100644 index 000000000..e6b65734f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/buttercup.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:poppy"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:buttercup"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:buttercup"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/calcite_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/calcite_brick_slab.json new file mode 100644 index 000000000..52b8fbd6c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/calcite_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:calcite_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:calcite_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:calcite_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/calcite_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/calcite_brick_stairs.json new file mode 100644 index 000000000..c1cc7f7cb --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/calcite_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:calcite_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:calcite_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:calcite_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/calcite_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/calcite_brick_wall.json new file mode 100644 index 000000000..62c1a8569 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/calcite_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:calcite_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:calcite_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:calcite_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/calcite_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/calcite_brick_wall_gate.json new file mode 100644 index 000000000..0e49c47d3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/calcite_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:calcite_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:calcite_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:calcite_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/calcite_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/calcite_bricks.json new file mode 100644 index 000000000..cdae08927 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/calcite_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:calcite"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:calcite_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:calcite_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/charred_nether_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/charred_nether_brick_slab.json new file mode 100644 index 000000000..332826f17 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/charred_nether_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:charred_nether_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:charred_nether_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:charred_nether_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/charred_nether_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/charred_nether_brick_stairs.json new file mode 100644 index 000000000..8105bd131 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/charred_nether_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:charred_nether_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:charred_nether_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:charred_nether_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/charred_nether_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/charred_nether_brick_wall.json new file mode 100644 index 000000000..330201333 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/charred_nether_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:charred_nether_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:charred_nether_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:charred_nether_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/charred_nether_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/charred_nether_brick_wall_gate.json new file mode 100644 index 000000000..4edc58084 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/charred_nether_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:charred_nether_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:charred_nether_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:charred_nether_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/charred_nether_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/charred_nether_bricks.json new file mode 100644 index 000000000..930db55f3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/charred_nether_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:nether_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:charred_nether_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:charred_nether_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cherry_crafting_table.json b/common/src/main/resources/data/pyrite/advancements/recipes/cherry_crafting_table.json new file mode 100644 index 000000000..a3f3cebb0 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cherry_crafting_table.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:cherry_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cherry_crafting_table"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cherry_crafting_table"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/chiseled_amethyst_block.json b/common/src/main/resources/data/pyrite/advancements/recipes/chiseled_amethyst_block.json new file mode 100644 index 000000000..4d9dd2dd8 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/chiseled_amethyst_block.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:amethyst_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:chiseled_amethyst_block"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:chiseled_amethyst_block"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/chiseled_copper_block.json b/common/src/main/resources/data/pyrite/advancements/recipes/chiseled_copper_block.json new file mode 100644 index 000000000..94a134872 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/chiseled_copper_block.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:copper_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:chiseled_copper_block"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:chiseled_copper_block"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/chiseled_diamond_block.json b/common/src/main/resources/data/pyrite/advancements/recipes/chiseled_diamond_block.json new file mode 100644 index 000000000..12aab576d --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/chiseled_diamond_block.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:diamond_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:chiseled_diamond_block"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:chiseled_diamond_block"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/chiseled_emerald_block.json b/common/src/main/resources/data/pyrite/advancements/recipes/chiseled_emerald_block.json new file mode 100644 index 000000000..0575b59ce --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/chiseled_emerald_block.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:emerald_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:chiseled_emerald_block"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:chiseled_emerald_block"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/chiseled_exposed_copper_block.json b/common/src/main/resources/data/pyrite/advancements/recipes/chiseled_exposed_copper_block.json new file mode 100644 index 000000000..709c2bf09 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/chiseled_exposed_copper_block.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:exposed_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:chiseled_exposed_copper_block"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:chiseled_exposed_copper_block"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/chiseled_gold_block.json b/common/src/main/resources/data/pyrite/advancements/recipes/chiseled_gold_block.json new file mode 100644 index 000000000..cde4cffd9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/chiseled_gold_block.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:gold_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:chiseled_gold_block"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:chiseled_gold_block"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/chiseled_iron_block.json b/common/src/main/resources/data/pyrite/advancements/recipes/chiseled_iron_block.json new file mode 100644 index 000000000..d818577a5 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/chiseled_iron_block.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:iron_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:chiseled_iron_block"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:chiseled_iron_block"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/chiseled_lapis_block.json b/common/src/main/resources/data/pyrite/advancements/recipes/chiseled_lapis_block.json new file mode 100644 index 000000000..c9fb595f7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/chiseled_lapis_block.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:lapis_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:chiseled_lapis_block"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:chiseled_lapis_block"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/chiseled_netherite_block.json b/common/src/main/resources/data/pyrite/advancements/recipes/chiseled_netherite_block.json new file mode 100644 index 000000000..4b2a52d9a --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/chiseled_netherite_block.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:netherite_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:chiseled_netherite_block"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:chiseled_netherite_block"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/chiseled_oxidized_copper_block.json b/common/src/main/resources/data/pyrite/advancements/recipes/chiseled_oxidized_copper_block.json new file mode 100644 index 000000000..8201e0586 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/chiseled_oxidized_copper_block.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:oxidized_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:chiseled_oxidized_copper_block"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:chiseled_oxidized_copper_block"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/chiseled_redstone_block.json b/common/src/main/resources/data/pyrite/advancements/recipes/chiseled_redstone_block.json new file mode 100644 index 000000000..5580b6336 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/chiseled_redstone_block.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:redstone_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:chiseled_redstone_block"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:chiseled_redstone_block"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/chiseled_weathered_copper_block.json b/common/src/main/resources/data/pyrite/advancements/recipes/chiseled_weathered_copper_block.json new file mode 100644 index 000000000..ed7dc05dc --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/chiseled_weathered_copper_block.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:weathered_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:chiseled_weathered_copper_block"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:chiseled_weathered_copper_block"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cobbled_deepslate_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/cobbled_deepslate_wall_gate.json new file mode 100644 index 000000000..443817fc0 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cobbled_deepslate_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:cobbled_deepslate"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cobbled_deepslate_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cobbled_deepslate_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cobblestone_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/cobblestone_brick_slab.json new file mode 100644 index 000000000..3b6cf7343 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cobblestone_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cobblestone_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cobblestone_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cobblestone_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cobblestone_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/cobblestone_brick_stairs.json new file mode 100644 index 000000000..6c8712ed1 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cobblestone_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cobblestone_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cobblestone_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cobblestone_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cobblestone_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/cobblestone_brick_wall.json new file mode 100644 index 000000000..a0ff103d9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cobblestone_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cobblestone_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cobblestone_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cobblestone_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cobblestone_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/cobblestone_brick_wall_gate.json new file mode 100644 index 000000000..05f1d0af6 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cobblestone_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cobblestone_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cobblestone_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cobblestone_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cobblestone_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/cobblestone_bricks.json new file mode 100644 index 000000000..0b648d7fd --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cobblestone_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:cobblestone"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cobblestone_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cobblestone_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cobblestone_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/cobblestone_wall_gate.json new file mode 100644 index 000000000..83339fa85 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cobblestone_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:cobblestone"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cobblestone_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cobblestone_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/copper_bars.json b/common/src/main/resources/data/pyrite/advancements/recipes/copper_bars.json new file mode 100644 index 000000000..38cb9b191 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/copper_bars.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:cut_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:copper_bars"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:copper_bars"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/copper_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/copper_button.json new file mode 100644 index 000000000..aa2386079 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/copper_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:copper_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:copper_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:copper_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/copper_door.json b/common/src/main/resources/data/pyrite/advancements/recipes/copper_door.json new file mode 100644 index 000000000..adab07ee2 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/copper_door.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:copper_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:copper_door"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:copper_door"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/copper_pillar.json b/common/src/main/resources/data/pyrite/advancements/recipes/copper_pillar.json new file mode 100644 index 000000000..1691e155e --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/copper_pillar.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:copper_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:copper_pillar"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:copper_pillar"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/copper_pressure_plate.json b/common/src/main/resources/data/pyrite/advancements/recipes/copper_pressure_plate.json new file mode 100644 index 000000000..e0e4558b6 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/copper_pressure_plate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:copper_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:copper_pressure_plate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:copper_pressure_plate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/copper_trapdoor.json b/common/src/main/resources/data/pyrite/advancements/recipes/copper_trapdoor.json new file mode 100644 index 000000000..46c052172 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/copper_trapdoor.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:copper_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:copper_trapdoor"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:copper_trapdoor"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/crimson_crafting_table.json b/common/src/main/resources/data/pyrite/advancements/recipes/crimson_crafting_table.json new file mode 100644 index 000000000..7f1312470 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/crimson_crafting_table.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:crimson_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:crimson_crafting_table"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:crimson_crafting_table"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_amethyst.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_amethyst.json new file mode 100644 index 000000000..a32250fda --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_amethyst.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:amethyst_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_amethyst"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_amethyst"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_amethyst_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_amethyst_slab.json new file mode 100644 index 000000000..d43b213f6 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_amethyst_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_amethyst"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_amethyst_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_amethyst_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_amethyst_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_amethyst_stairs.json new file mode 100644 index 000000000..c54a5c067 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_amethyst_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_amethyst"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_amethyst_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_amethyst_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_amethyst_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_amethyst_wall.json new file mode 100644 index 000000000..737b36ab6 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_amethyst_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_amethyst"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_amethyst_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_amethyst_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_amethyst_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_amethyst_wall_gate.json new file mode 100644 index 000000000..c01835902 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_amethyst_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_amethyst"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_amethyst_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_amethyst_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_copper_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_copper_wall.json new file mode 100644 index 000000000..b20f58a6f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_copper_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:cut_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_copper_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_copper_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_copper_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_copper_wall_gate.json new file mode 100644 index 000000000..190314c37 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_copper_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:cut_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_copper_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_copper_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_diamond.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_diamond.json new file mode 100644 index 000000000..bc7a47088 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_diamond.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:diamond_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_diamond"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_diamond"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_diamond_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_diamond_slab.json new file mode 100644 index 000000000..9760406f0 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_diamond_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_diamond"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_diamond_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_diamond_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_diamond_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_diamond_stairs.json new file mode 100644 index 000000000..cddca6d9a --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_diamond_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_diamond"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_diamond_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_diamond_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_diamond_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_diamond_wall.json new file mode 100644 index 000000000..3f76ec452 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_diamond_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_diamond"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_diamond_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_diamond_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_diamond_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_diamond_wall_gate.json new file mode 100644 index 000000000..2bbb40750 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_diamond_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_diamond"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_diamond_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_diamond_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_emerald.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_emerald.json new file mode 100644 index 000000000..8e1d0f997 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_emerald.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:emerald_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_emerald"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_emerald"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_emerald_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_emerald_slab.json new file mode 100644 index 000000000..0fa2465e0 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_emerald_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_emerald"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_emerald_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_emerald_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_emerald_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_emerald_stairs.json new file mode 100644 index 000000000..2a105ab82 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_emerald_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_emerald"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_emerald_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_emerald_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_emerald_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_emerald_wall.json new file mode 100644 index 000000000..8a1b923d5 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_emerald_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_emerald"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_emerald_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_emerald_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_emerald_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_emerald_wall_gate.json new file mode 100644 index 000000000..e33cb0fb4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_emerald_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_emerald"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_emerald_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_emerald_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_exposed_copper_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_exposed_copper_wall.json new file mode 100644 index 000000000..6a9993a48 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_exposed_copper_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:exposed_cut_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_exposed_copper_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_exposed_copper_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_exposed_copper_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_exposed_copper_wall_gate.json new file mode 100644 index 000000000..5e6d2f849 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_exposed_copper_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:exposed_cut_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_exposed_copper_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_exposed_copper_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_gold.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_gold.json new file mode 100644 index 000000000..da72c2244 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_gold.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:gold_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_gold"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_gold"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_gold_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_gold_slab.json new file mode 100644 index 000000000..73fed247d --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_gold_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_gold"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_gold_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_gold_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_gold_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_gold_stairs.json new file mode 100644 index 000000000..6479274b4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_gold_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_gold"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_gold_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_gold_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_gold_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_gold_wall.json new file mode 100644 index 000000000..41bbd212e --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_gold_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_gold"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_gold_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_gold_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_gold_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_gold_wall_gate.json new file mode 100644 index 000000000..0360e904e --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_gold_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_gold"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_gold_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_gold_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_iron.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_iron.json new file mode 100644 index 000000000..09379c5fa --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_iron.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:iron_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_iron"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_iron"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_iron_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_iron_slab.json new file mode 100644 index 000000000..b707b756c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_iron_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_iron"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_iron_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_iron_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_iron_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_iron_stairs.json new file mode 100644 index 000000000..95cb22426 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_iron_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_iron"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_iron_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_iron_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_iron_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_iron_wall.json new file mode 100644 index 000000000..88fe372f5 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_iron_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_iron"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_iron_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_iron_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_iron_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_iron_wall_gate.json new file mode 100644 index 000000000..7fc985e2c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_iron_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_iron"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_iron_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_iron_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_lapis.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_lapis.json new file mode 100644 index 000000000..7389a832f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_lapis.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:lapis_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_lapis"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_lapis"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_lapis_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_lapis_slab.json new file mode 100644 index 000000000..983023fa4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_lapis_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_lapis"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_lapis_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_lapis_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_lapis_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_lapis_stairs.json new file mode 100644 index 000000000..2f96b001e --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_lapis_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_lapis"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_lapis_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_lapis_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_lapis_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_lapis_wall.json new file mode 100644 index 000000000..eef6e221f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_lapis_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_lapis"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_lapis_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_lapis_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_lapis_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_lapis_wall_gate.json new file mode 100644 index 000000000..5e03a3275 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_lapis_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_lapis"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_lapis_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_lapis_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_netherite.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_netherite.json new file mode 100644 index 000000000..4823b8dfa --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_netherite.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:netherite_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_netherite"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_netherite"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_netherite_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_netherite_slab.json new file mode 100644 index 000000000..cbe2e2b0f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_netherite_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_netherite"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_netherite_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_netherite_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_netherite_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_netherite_stairs.json new file mode 100644 index 000000000..ec151e0cb --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_netherite_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_netherite"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_netherite_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_netherite_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_netherite_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_netherite_wall.json new file mode 100644 index 000000000..4297a9bf7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_netherite_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_netherite"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_netherite_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_netherite_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_netherite_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_netherite_wall_gate.json new file mode 100644 index 000000000..14d178145 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_netherite_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_netherite"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_netherite_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_netherite_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_oxidized_copper_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_oxidized_copper_wall.json new file mode 100644 index 000000000..998b36890 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_oxidized_copper_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:oxidized_cut_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_oxidized_copper_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_oxidized_copper_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_oxidized_copper_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_oxidized_copper_wall_gate.json new file mode 100644 index 000000000..69dc7c155 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_oxidized_copper_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:oxidized_cut_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_oxidized_copper_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_oxidized_copper_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_quartz.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_quartz.json new file mode 100644 index 000000000..4f7635c31 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_quartz.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:quartz_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_quartz"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_quartz"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_quartz_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_quartz_slab.json new file mode 100644 index 000000000..883c3eac0 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_quartz_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_quartz"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_quartz_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_quartz_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_quartz_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_quartz_stairs.json new file mode 100644 index 000000000..71648da85 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_quartz_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_quartz"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_quartz_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_quartz_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_quartz_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_quartz_wall.json new file mode 100644 index 000000000..69e6d64c3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_quartz_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_quartz"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_quartz_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_quartz_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_quartz_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_quartz_wall_gate.json new file mode 100644 index 000000000..02e97fa25 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_quartz_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_quartz"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_quartz_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_quartz_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_redstone.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_redstone.json new file mode 100644 index 000000000..4fe2a5b3b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_redstone.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:redstone_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_redstone"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_redstone"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_redstone_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_redstone_slab.json new file mode 100644 index 000000000..713b0132b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_redstone_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_redstone"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_redstone_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_redstone_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_redstone_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_redstone_stairs.json new file mode 100644 index 000000000..c5b15c9a6 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_redstone_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_redstone"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_redstone_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_redstone_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_redstone_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_redstone_wall.json new file mode 100644 index 000000000..b5c278902 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_redstone_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_redstone"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_redstone_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_redstone_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_redstone_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_redstone_wall_gate.json new file mode 100644 index 000000000..07ce10f27 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_redstone_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_redstone"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_redstone_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_redstone_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_weathered_copper_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_weathered_copper_wall.json new file mode 100644 index 000000000..3c800ac0d --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_weathered_copper_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:weathered_cut_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_weathered_copper_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_weathered_copper_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cut_weathered_copper_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/cut_weathered_copper_wall_gate.json new file mode 100644 index 000000000..6f3c34b71 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cut_weathered_copper_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:weathered_cut_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cut_weathered_copper_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cut_weathered_copper_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cyan_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_brick_slab.json new file mode 100644 index 000000000..0734c6cf2 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cyan_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cyan_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cyan_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cyan_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_brick_stairs.json new file mode 100644 index 000000000..5502f4149 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cyan_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cyan_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cyan_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cyan_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_brick_wall.json new file mode 100644 index 000000000..1733b8fd7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cyan_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cyan_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cyan_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cyan_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_brick_wall_gate.json new file mode 100644 index 000000000..d317c9ee2 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cyan_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cyan_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cyan_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cyan_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_bricks.json new file mode 100644 index 000000000..db22936cf --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cyan_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cyan_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cyan_concrete_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_concrete_slab.json new file mode 100644 index 000000000..945ccb35e --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_concrete_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:cyan_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cyan_concrete_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cyan_concrete_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cyan_concrete_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_concrete_stairs.json new file mode 100644 index 000000000..d61837424 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_concrete_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:cyan_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cyan_concrete_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cyan_concrete_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cyan_framed_glass.json b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_framed_glass.json new file mode 100644 index 000000000..879e223ac --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_framed_glass.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cyan_framed_glass"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cyan_framed_glass"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cyan_framed_glass_pane.json b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_framed_glass_pane.json new file mode 100644 index 000000000..c2fca28f5 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_framed_glass_pane.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cyan_framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cyan_framed_glass_pane"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cyan_framed_glass_pane"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cyan_lamp.json b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_lamp.json new file mode 100644 index 000000000..23f7706c3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_lamp.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glowstone_lamp"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cyan_lamp"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cyan_lamp"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_button.json new file mode 100644 index 000000000..769c4f83f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cyan_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cyan_stained_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cyan_stained_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_crafting_table.json b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_crafting_table.json new file mode 100644 index 000000000..3a4176ff7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_crafting_table.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cyan_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cyan_stained_crafting_table"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cyan_stained_crafting_table"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_door.json b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_door.json new file mode 100644 index 000000000..40c2b6594 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_door.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cyan_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cyan_stained_door"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cyan_stained_door"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_fence.json b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_fence.json new file mode 100644 index 000000000..ab316d031 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_fence.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cyan_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cyan_stained_fence"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cyan_stained_fence"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_fence_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_fence_gate.json new file mode 100644 index 000000000..e7b5951e8 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_fence_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cyan_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cyan_stained_fence_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cyan_stained_fence_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_hanging_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_hanging_sign.json new file mode 100644 index 000000000..82ce73cc3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_hanging_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cyan_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cyan_stained_hanging_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cyan_stained_hanging_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_ladder.json b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_ladder.json new file mode 100644 index 000000000..9852ca94f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_ladder.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cyan_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cyan_stained_ladder"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cyan_stained_ladder"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_planks.json b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_planks.json new file mode 100644 index 000000000..7ff98bb39 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_planks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"#minecraft:planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cyan_stained_planks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cyan_stained_planks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_pressure_plate.json b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_pressure_plate.json new file mode 100644 index 000000000..1061ef18c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_pressure_plate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cyan_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cyan_stained_pressure_plate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cyan_stained_pressure_plate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_sign.json new file mode 100644 index 000000000..e81abedb5 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cyan_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cyan_stained_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cyan_stained_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_slab.json new file mode 100644 index 000000000..967c92388 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cyan_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cyan_stained_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cyan_stained_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_stairs.json new file mode 100644 index 000000000..157c9ff62 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cyan_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cyan_stained_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cyan_stained_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_trapdoor.json b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_trapdoor.json new file mode 100644 index 000000000..b20ea335c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_stained_trapdoor.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cyan_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cyan_stained_trapdoor"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cyan_stained_trapdoor"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cyan_terracotta_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_terracotta_brick_slab.json new file mode 100644 index 000000000..38d714401 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_terracotta_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cyan_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cyan_terracotta_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cyan_terracotta_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cyan_terracotta_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_terracotta_brick_stairs.json new file mode 100644 index 000000000..158acc542 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_terracotta_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cyan_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cyan_terracotta_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cyan_terracotta_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cyan_terracotta_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_terracotta_brick_wall.json new file mode 100644 index 000000000..ba26e5cab --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_terracotta_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cyan_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cyan_terracotta_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cyan_terracotta_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cyan_terracotta_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_terracotta_brick_wall_gate.json new file mode 100644 index 000000000..aa703fa78 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_terracotta_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cyan_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cyan_terracotta_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cyan_terracotta_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cyan_terracotta_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_terracotta_bricks.json new file mode 100644 index 000000000..426ff3326 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_terracotta_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:cyan_terracotta"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cyan_terracotta_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cyan_terracotta_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cyan_torch.json b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_torch.json new file mode 100644 index 000000000..61a42c8f2 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_torch.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cyan_torch"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cyan_torch"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/cyan_torch_lever.json b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_torch_lever.json new file mode 100644 index 000000000..d74ba311f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/cyan_torch_lever.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cyan_torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:cyan_torch_lever"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:cyan_torch_lever"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/dark_oak_crafting_table.json b/common/src/main/resources/data/pyrite/advancements/recipes/dark_oak_crafting_table.json new file mode 100644 index 000000000..443f38199 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/dark_oak_crafting_table.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:dark_oak_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:dark_oak_crafting_table"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:dark_oak_crafting_table"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/deepslate_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/deepslate_brick_wall_gate.json new file mode 100644 index 000000000..67f258fd6 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/deepslate_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:deepslate_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:deepslate_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:deepslate_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/deepslate_tile_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/deepslate_tile_wall_gate.json new file mode 100644 index 000000000..63f888c0b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/deepslate_tile_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:deepslate_tiles"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:deepslate_tile_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:deepslate_tile_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/diamond_bars.json b/common/src/main/resources/data/pyrite/advancements/recipes/diamond_bars.json new file mode 100644 index 000000000..8e6888a0f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/diamond_bars.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_diamond"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:diamond_bars"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:diamond_bars"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/diamond_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/diamond_button.json new file mode 100644 index 000000000..0522706a7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/diamond_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:diamond_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:diamond_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:diamond_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/diamond_door.json b/common/src/main/resources/data/pyrite/advancements/recipes/diamond_door.json new file mode 100644 index 000000000..68b6faadb --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/diamond_door.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:diamond_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:diamond_door"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:diamond_door"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/diamond_pillar.json b/common/src/main/resources/data/pyrite/advancements/recipes/diamond_pillar.json new file mode 100644 index 000000000..b5318b638 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/diamond_pillar.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:diamond_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:diamond_pillar"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:diamond_pillar"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/diamond_pressure_plate.json b/common/src/main/resources/data/pyrite/advancements/recipes/diamond_pressure_plate.json new file mode 100644 index 000000000..f2a62eb4d --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/diamond_pressure_plate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:diamond_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:diamond_pressure_plate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:diamond_pressure_plate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/diamond_trapdoor.json b/common/src/main/resources/data/pyrite/advancements/recipes/diamond_trapdoor.json new file mode 100644 index 000000000..c21a64950 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/diamond_trapdoor.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:diamond_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:diamond_trapdoor"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:diamond_trapdoor"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/diorite_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/diorite_brick_slab.json new file mode 100644 index 000000000..502ffe19d --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/diorite_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:diorite_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:diorite_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:diorite_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/diorite_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/diorite_brick_stairs.json new file mode 100644 index 000000000..42b9c4413 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/diorite_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:diorite_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:diorite_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:diorite_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/diorite_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/diorite_brick_wall.json new file mode 100644 index 000000000..7e681dcc1 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/diorite_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:diorite_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:diorite_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:diorite_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/diorite_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/diorite_brick_wall_gate.json new file mode 100644 index 000000000..654e429e2 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/diorite_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:diorite_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:diorite_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:diorite_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/diorite_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/diorite_bricks.json new file mode 100644 index 000000000..7ead16796 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/diorite_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:polished_diorite"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:diorite_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:diorite_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/diorite_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/diorite_wall_gate.json new file mode 100644 index 000000000..cbc2dee94 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/diorite_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:diorite"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:diorite_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:diorite_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/dragon_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_brick_slab.json new file mode 100644 index 000000000..67ef00bcc --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:dragon_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:dragon_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:dragon_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/dragon_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_brick_stairs.json new file mode 100644 index 000000000..ecc264de5 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:dragon_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:dragon_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:dragon_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/dragon_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_brick_wall.json new file mode 100644 index 000000000..ef2e87596 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:dragon_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:dragon_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:dragon_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/dragon_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_brick_wall_gate.json new file mode 100644 index 000000000..d53374002 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:dragon_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:dragon_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:dragon_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/dragon_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_bricks.json new file mode 100644 index 000000000..bd68feb7a --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:dragon_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:dragon_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/dragon_carpet.json b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_carpet.json new file mode 100644 index 000000000..c465048d6 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_carpet.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:dragon_wool"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:dragon_carpet"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:dragon_carpet"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/dragon_concrete_powder.json b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_concrete_powder.json new file mode 100644 index 000000000..d55c835e7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_concrete_powder.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:dragon_dye"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:dragon_concrete_powder"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:dragon_concrete_powder"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/dragon_concrete_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_concrete_slab.json new file mode 100644 index 000000000..a875c6630 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_concrete_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:dragon_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:dragon_concrete_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:dragon_concrete_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/dragon_concrete_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_concrete_stairs.json new file mode 100644 index 000000000..1a3f5adf8 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_concrete_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:dragon_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:dragon_concrete_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:dragon_concrete_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/dragon_dye.json b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_dye.json new file mode 100644 index 000000000..4dc05610f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_dye.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:dragon_breath"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:dragon_dye"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:dragon_dye"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/dragon_framed_glass.json b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_framed_glass.json new file mode 100644 index 000000000..96f5726e1 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_framed_glass.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:dragon_framed_glass"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:dragon_framed_glass"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/dragon_framed_glass_pane.json b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_framed_glass_pane.json new file mode 100644 index 000000000..581933a9d --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_framed_glass_pane.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:dragon_framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:dragon_framed_glass_pane"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:dragon_framed_glass_pane"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/dragon_lamp.json b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_lamp.json new file mode 100644 index 000000000..96c0290c3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_lamp.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glowstone_lamp"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:dragon_lamp"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:dragon_lamp"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_button.json new file mode 100644 index 000000000..80ea52318 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:dragon_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:dragon_stained_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:dragon_stained_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_crafting_table.json b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_crafting_table.json new file mode 100644 index 000000000..f022e5213 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_crafting_table.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:dragon_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:dragon_stained_crafting_table"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:dragon_stained_crafting_table"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_door.json b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_door.json new file mode 100644 index 000000000..3fb5956ea --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_door.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:dragon_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:dragon_stained_door"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:dragon_stained_door"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_fence.json b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_fence.json new file mode 100644 index 000000000..d77565b84 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_fence.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:dragon_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:dragon_stained_fence"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:dragon_stained_fence"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_fence_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_fence_gate.json new file mode 100644 index 000000000..298e43e43 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_fence_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:dragon_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:dragon_stained_fence_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:dragon_stained_fence_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_hanging_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_hanging_sign.json new file mode 100644 index 000000000..7352ac368 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_hanging_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:dragon_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:dragon_stained_hanging_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:dragon_stained_hanging_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_ladder.json b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_ladder.json new file mode 100644 index 000000000..cb028cd0c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_ladder.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:dragon_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:dragon_stained_ladder"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:dragon_stained_ladder"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_planks.json b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_planks.json new file mode 100644 index 000000000..0d6f16c29 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_planks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"#minecraft:planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:dragon_stained_planks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:dragon_stained_planks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_pressure_plate.json b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_pressure_plate.json new file mode 100644 index 000000000..a24402b2f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_pressure_plate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:dragon_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:dragon_stained_pressure_plate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:dragon_stained_pressure_plate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_sign.json new file mode 100644 index 000000000..2b93211cd --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:dragon_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:dragon_stained_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:dragon_stained_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_slab.json new file mode 100644 index 000000000..181d064eb --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:dragon_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:dragon_stained_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:dragon_stained_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_stairs.json new file mode 100644 index 000000000..c23232118 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:dragon_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:dragon_stained_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:dragon_stained_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_trapdoor.json b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_trapdoor.json new file mode 100644 index 000000000..51ab3e9ea --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_stained_trapdoor.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:dragon_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:dragon_stained_trapdoor"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:dragon_stained_trapdoor"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/dragon_terracotta.json b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_terracotta.json new file mode 100644 index 000000000..c29c45a2f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_terracotta.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:dragon_dye"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:dragon_terracotta"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:dragon_terracotta"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/dragon_terracotta_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_terracotta_brick_slab.json new file mode 100644 index 000000000..42a946631 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_terracotta_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:dragon_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:dragon_terracotta_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:dragon_terracotta_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/dragon_terracotta_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_terracotta_brick_stairs.json new file mode 100644 index 000000000..27612f951 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_terracotta_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:dragon_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:dragon_terracotta_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:dragon_terracotta_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/dragon_terracotta_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_terracotta_brick_wall.json new file mode 100644 index 000000000..cd3c70852 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_terracotta_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:dragon_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:dragon_terracotta_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:dragon_terracotta_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/dragon_terracotta_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_terracotta_brick_wall_gate.json new file mode 100644 index 000000000..1fe1018f5 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_terracotta_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:dragon_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:dragon_terracotta_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:dragon_terracotta_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/dragon_terracotta_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_terracotta_bricks.json new file mode 100644 index 000000000..00adef8a0 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_terracotta_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:dragon_terracotta"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:dragon_terracotta_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:dragon_terracotta_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/dragon_torch.json b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_torch.json new file mode 100644 index 000000000..9800bafdb --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_torch.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:dragon_torch"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:dragon_torch"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/dragon_torch_lever.json b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_torch_lever.json new file mode 100644 index 000000000..0d445db9a --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_torch_lever.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:dragon_torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:dragon_torch_lever"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:dragon_torch_lever"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/dragon_wool.json b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_wool.json new file mode 100644 index 000000000..84a925f39 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/dragon_wool.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:dragon_dye"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:dragon_wool"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:dragon_wool"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/emerald_bars.json b/common/src/main/resources/data/pyrite/advancements/recipes/emerald_bars.json new file mode 100644 index 000000000..f7ccb0f5a --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/emerald_bars.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_emerald"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:emerald_bars"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:emerald_bars"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/emerald_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/emerald_button.json new file mode 100644 index 000000000..86c20b0e4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/emerald_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:emerald_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:emerald_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:emerald_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/emerald_door.json b/common/src/main/resources/data/pyrite/advancements/recipes/emerald_door.json new file mode 100644 index 000000000..31ba9918e --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/emerald_door.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:emerald_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:emerald_door"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:emerald_door"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/emerald_pillar.json b/common/src/main/resources/data/pyrite/advancements/recipes/emerald_pillar.json new file mode 100644 index 000000000..2b14532fe --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/emerald_pillar.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:emerald_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:emerald_pillar"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:emerald_pillar"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/emerald_pressure_plate.json b/common/src/main/resources/data/pyrite/advancements/recipes/emerald_pressure_plate.json new file mode 100644 index 000000000..d21414a2f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/emerald_pressure_plate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:emerald_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:emerald_pressure_plate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:emerald_pressure_plate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/emerald_trapdoor.json b/common/src/main/resources/data/pyrite/advancements/recipes/emerald_trapdoor.json new file mode 100644 index 000000000..5324bd6b6 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/emerald_trapdoor.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:emerald_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:emerald_trapdoor"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:emerald_trapdoor"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/end_stone_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/end_stone_brick_wall_gate.json new file mode 100644 index 000000000..d1d2ea109 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/end_stone_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:end_stone_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:end_stone_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:end_stone_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/exposed_copper_bars.json b/common/src/main/resources/data/pyrite/advancements/recipes/exposed_copper_bars.json new file mode 100644 index 000000000..46b635b16 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/exposed_copper_bars.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:exposed_cut_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:exposed_copper_bars"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:exposed_copper_bars"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/exposed_copper_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/exposed_copper_button.json new file mode 100644 index 000000000..88650069b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/exposed_copper_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:exposed_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:exposed_copper_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:exposed_copper_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/exposed_copper_door.json b/common/src/main/resources/data/pyrite/advancements/recipes/exposed_copper_door.json new file mode 100644 index 000000000..6a1a89461 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/exposed_copper_door.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:exposed_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:exposed_copper_door"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:exposed_copper_door"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/exposed_copper_pillar.json b/common/src/main/resources/data/pyrite/advancements/recipes/exposed_copper_pillar.json new file mode 100644 index 000000000..64e57aae3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/exposed_copper_pillar.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:exposed_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:exposed_copper_pillar"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:exposed_copper_pillar"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/exposed_copper_pressure_plate.json b/common/src/main/resources/data/pyrite/advancements/recipes/exposed_copper_pressure_plate.json new file mode 100644 index 000000000..f63658c88 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/exposed_copper_pressure_plate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:exposed_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:exposed_copper_pressure_plate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:exposed_copper_pressure_plate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/exposed_copper_trapdoor.json b/common/src/main/resources/data/pyrite/advancements/recipes/exposed_copper_trapdoor.json new file mode 100644 index 000000000..fc6b1ee19 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/exposed_copper_trapdoor.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:exposed_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:exposed_copper_trapdoor"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:exposed_copper_trapdoor"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/framed_glass.json b/common/src/main/resources/data/pyrite/advancements/recipes/framed_glass.json new file mode 100644 index 000000000..65194456b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/framed_glass.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:framed_glass"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:framed_glass"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/framed_glass_pane.json b/common/src/main/resources/data/pyrite/advancements/recipes/framed_glass_pane.json new file mode 100644 index 000000000..926963b24 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/framed_glass_pane.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:framed_glass_pane"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:framed_glass_pane"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/glow_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/glow_brick_slab.json new file mode 100644 index 000000000..8daefe3a9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/glow_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glow_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:glow_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:glow_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/glow_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/glow_brick_stairs.json new file mode 100644 index 000000000..378381135 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/glow_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glow_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:glow_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:glow_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/glow_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/glow_brick_wall.json new file mode 100644 index 000000000..8e156566f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/glow_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glow_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:glow_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:glow_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/glow_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/glow_brick_wall_gate.json new file mode 100644 index 000000000..3b7d23a3a --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/glow_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glow_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:glow_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:glow_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/glow_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/glow_bricks.json new file mode 100644 index 000000000..53e2c9cc6 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/glow_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:glow_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:glow_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/glow_carpet.json b/common/src/main/resources/data/pyrite/advancements/recipes/glow_carpet.json new file mode 100644 index 000000000..b5a5fb80d --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/glow_carpet.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glow_wool"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:glow_carpet"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:glow_carpet"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/glow_concrete_powder.json b/common/src/main/resources/data/pyrite/advancements/recipes/glow_concrete_powder.json new file mode 100644 index 000000000..166f94bb7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/glow_concrete_powder.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glow_dye"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:glow_concrete_powder"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:glow_concrete_powder"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/glow_concrete_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/glow_concrete_slab.json new file mode 100644 index 000000000..bec021bfa --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/glow_concrete_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glow_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:glow_concrete_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:glow_concrete_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/glow_concrete_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/glow_concrete_stairs.json new file mode 100644 index 000000000..5dd4fe40b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/glow_concrete_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glow_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:glow_concrete_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:glow_concrete_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/glow_dye.json b/common/src/main/resources/data/pyrite/advancements/recipes/glow_dye.json new file mode 100644 index 000000000..2f95eb6df --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/glow_dye.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:glow_ink_sac"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:glow_dye"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:glow_dye"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/glow_framed_glass.json b/common/src/main/resources/data/pyrite/advancements/recipes/glow_framed_glass.json new file mode 100644 index 000000000..7ccd63b36 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/glow_framed_glass.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:glow_framed_glass"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:glow_framed_glass"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/glow_framed_glass_pane.json b/common/src/main/resources/data/pyrite/advancements/recipes/glow_framed_glass_pane.json new file mode 100644 index 000000000..da7ffae7f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/glow_framed_glass_pane.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glow_framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:glow_framed_glass_pane"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:glow_framed_glass_pane"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/glow_lamp.json b/common/src/main/resources/data/pyrite/advancements/recipes/glow_lamp.json new file mode 100644 index 000000000..7a74c9926 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/glow_lamp.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glowstone_lamp"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:glow_lamp"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:glow_lamp"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_button.json new file mode 100644 index 000000000..ca3f00cef --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glow_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:glow_stained_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:glow_stained_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_crafting_table.json b/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_crafting_table.json new file mode 100644 index 000000000..6d3a54892 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_crafting_table.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glow_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:glow_stained_crafting_table"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:glow_stained_crafting_table"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_door.json b/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_door.json new file mode 100644 index 000000000..5ba8e5c3b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_door.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glow_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:glow_stained_door"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:glow_stained_door"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_fence.json b/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_fence.json new file mode 100644 index 000000000..eda9c519b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_fence.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glow_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:glow_stained_fence"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:glow_stained_fence"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_fence_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_fence_gate.json new file mode 100644 index 000000000..40097a0f5 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_fence_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glow_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:glow_stained_fence_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:glow_stained_fence_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_hanging_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_hanging_sign.json new file mode 100644 index 000000000..fce2460b0 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_hanging_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glow_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:glow_stained_hanging_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:glow_stained_hanging_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_ladder.json b/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_ladder.json new file mode 100644 index 000000000..580829c41 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_ladder.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glow_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:glow_stained_ladder"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:glow_stained_ladder"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_planks.json b/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_planks.json new file mode 100644 index 000000000..65e9e2275 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_planks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"#minecraft:planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:glow_stained_planks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:glow_stained_planks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_pressure_plate.json b/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_pressure_plate.json new file mode 100644 index 000000000..016bc6dbe --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_pressure_plate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glow_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:glow_stained_pressure_plate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:glow_stained_pressure_plate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_sign.json new file mode 100644 index 000000000..e1949ca9c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glow_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:glow_stained_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:glow_stained_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_slab.json new file mode 100644 index 000000000..a96e69b13 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glow_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:glow_stained_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:glow_stained_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_stairs.json new file mode 100644 index 000000000..80e8e56de --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glow_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:glow_stained_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:glow_stained_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_trapdoor.json b/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_trapdoor.json new file mode 100644 index 000000000..ac44d53ae --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/glow_stained_trapdoor.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glow_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:glow_stained_trapdoor"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:glow_stained_trapdoor"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/glow_terracotta.json b/common/src/main/resources/data/pyrite/advancements/recipes/glow_terracotta.json new file mode 100644 index 000000000..57b001992 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/glow_terracotta.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glow_dye"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:glow_terracotta"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:glow_terracotta"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/glow_terracotta_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/glow_terracotta_brick_slab.json new file mode 100644 index 000000000..3c0474c72 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/glow_terracotta_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glow_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:glow_terracotta_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:glow_terracotta_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/glow_terracotta_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/glow_terracotta_brick_stairs.json new file mode 100644 index 000000000..776c4aafb --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/glow_terracotta_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glow_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:glow_terracotta_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:glow_terracotta_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/glow_terracotta_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/glow_terracotta_brick_wall.json new file mode 100644 index 000000000..3746459d1 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/glow_terracotta_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glow_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:glow_terracotta_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:glow_terracotta_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/glow_terracotta_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/glow_terracotta_brick_wall_gate.json new file mode 100644 index 000000000..baee41842 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/glow_terracotta_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glow_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:glow_terracotta_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:glow_terracotta_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/glow_terracotta_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/glow_terracotta_bricks.json new file mode 100644 index 000000000..3e6e7f8e3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/glow_terracotta_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glow_terracotta"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:glow_terracotta_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:glow_terracotta_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/glow_torch.json b/common/src/main/resources/data/pyrite/advancements/recipes/glow_torch.json new file mode 100644 index 000000000..195f3b84b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/glow_torch.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:glow_torch"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:glow_torch"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/glow_torch_lever.json b/common/src/main/resources/data/pyrite/advancements/recipes/glow_torch_lever.json new file mode 100644 index 000000000..7da73cfb3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/glow_torch_lever.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glow_torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:glow_torch_lever"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:glow_torch_lever"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/glow_wool.json b/common/src/main/resources/data/pyrite/advancements/recipes/glow_wool.json new file mode 100644 index 000000000..61e42a1e1 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/glow_wool.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glow_dye"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:glow_wool"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:glow_wool"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/glowstone_lamp.json b/common/src/main/resources/data/pyrite/advancements/recipes/glowstone_lamp.json new file mode 100644 index 000000000..9e194c3db --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/glowstone_lamp.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:redstone_lamp"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:glowstone_lamp"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:glowstone_lamp"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/gold_bars.json b/common/src/main/resources/data/pyrite/advancements/recipes/gold_bars.json new file mode 100644 index 000000000..ea9ce39dc --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/gold_bars.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_gold"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:gold_bars"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:gold_bars"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/gold_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/gold_button.json new file mode 100644 index 000000000..3d8f944f3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/gold_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:gold_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:gold_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:gold_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/gold_door.json b/common/src/main/resources/data/pyrite/advancements/recipes/gold_door.json new file mode 100644 index 000000000..d367851c2 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/gold_door.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:gold_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:gold_door"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:gold_door"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/gold_pillar.json b/common/src/main/resources/data/pyrite/advancements/recipes/gold_pillar.json new file mode 100644 index 000000000..e9cda417b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/gold_pillar.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:gold_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:gold_pillar"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:gold_pillar"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/gold_trapdoor.json b/common/src/main/resources/data/pyrite/advancements/recipes/gold_trapdoor.json new file mode 100644 index 000000000..e8b746d76 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/gold_trapdoor.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:gold_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:gold_trapdoor"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:gold_trapdoor"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/granite_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/granite_brick_slab.json new file mode 100644 index 000000000..89194a199 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/granite_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:granite_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:granite_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:granite_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/granite_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/granite_brick_stairs.json new file mode 100644 index 000000000..eb447d85d --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/granite_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:granite_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:granite_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:granite_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/granite_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/granite_brick_wall.json new file mode 100644 index 000000000..3aac2d1bb --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/granite_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:granite_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:granite_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:granite_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/granite_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/granite_brick_wall_gate.json new file mode 100644 index 000000000..54d127e40 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/granite_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:granite_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:granite_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:granite_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/granite_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/granite_bricks.json new file mode 100644 index 000000000..fcce26f42 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/granite_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:polished_granite"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:granite_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:granite_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/granite_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/granite_wall_gate.json new file mode 100644 index 000000000..e006e2e35 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/granite_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:granite"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:granite_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:granite_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/grass_carpet.json b/common/src/main/resources/data/pyrite/advancements/recipes/grass_carpet.json new file mode 100644 index 000000000..c8fe267e9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/grass_carpet.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:grass_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:grass_carpet"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:grass_carpet"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/grass_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/grass_slab.json new file mode 100644 index 000000000..16c340e93 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/grass_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:grass_turf"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:grass_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:grass_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/grass_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/grass_stairs.json new file mode 100644 index 000000000..560885fe9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/grass_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:grass_turf"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:grass_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:grass_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/gray_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/gray_brick_slab.json new file mode 100644 index 000000000..257289607 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/gray_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:gray_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:gray_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:gray_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/gray_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/gray_brick_stairs.json new file mode 100644 index 000000000..4ee7554fc --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/gray_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:gray_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:gray_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:gray_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/gray_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/gray_brick_wall.json new file mode 100644 index 000000000..20f4acfb2 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/gray_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:gray_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:gray_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:gray_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/gray_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/gray_brick_wall_gate.json new file mode 100644 index 000000000..f3a2f6bca --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/gray_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:gray_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:gray_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:gray_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/gray_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/gray_bricks.json new file mode 100644 index 000000000..73efec3cf --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/gray_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:gray_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:gray_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/gray_concrete_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/gray_concrete_slab.json new file mode 100644 index 000000000..c268c1eca --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/gray_concrete_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:gray_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:gray_concrete_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:gray_concrete_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/gray_concrete_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/gray_concrete_stairs.json new file mode 100644 index 000000000..4bf64b0da --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/gray_concrete_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:gray_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:gray_concrete_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:gray_concrete_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/gray_framed_glass.json b/common/src/main/resources/data/pyrite/advancements/recipes/gray_framed_glass.json new file mode 100644 index 000000000..9f34918e4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/gray_framed_glass.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:gray_framed_glass"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:gray_framed_glass"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/gray_framed_glass_pane.json b/common/src/main/resources/data/pyrite/advancements/recipes/gray_framed_glass_pane.json new file mode 100644 index 000000000..b485bfcaa --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/gray_framed_glass_pane.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:gray_framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:gray_framed_glass_pane"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:gray_framed_glass_pane"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/gray_lamp.json b/common/src/main/resources/data/pyrite/advancements/recipes/gray_lamp.json new file mode 100644 index 000000000..963cc5f0b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/gray_lamp.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glowstone_lamp"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:gray_lamp"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:gray_lamp"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_button.json new file mode 100644 index 000000000..2c73a6c9f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:gray_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:gray_stained_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:gray_stained_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_crafting_table.json b/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_crafting_table.json new file mode 100644 index 000000000..10778eaba --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_crafting_table.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:gray_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:gray_stained_crafting_table"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:gray_stained_crafting_table"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_door.json b/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_door.json new file mode 100644 index 000000000..bb328d0b9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_door.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:gray_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:gray_stained_door"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:gray_stained_door"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_fence.json b/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_fence.json new file mode 100644 index 000000000..f878896ec --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_fence.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:gray_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:gray_stained_fence"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:gray_stained_fence"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_fence_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_fence_gate.json new file mode 100644 index 000000000..c1a1ac523 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_fence_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:gray_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:gray_stained_fence_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:gray_stained_fence_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_hanging_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_hanging_sign.json new file mode 100644 index 000000000..5d730ea6a --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_hanging_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:gray_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:gray_stained_hanging_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:gray_stained_hanging_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_ladder.json b/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_ladder.json new file mode 100644 index 000000000..f9093c8d6 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_ladder.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:gray_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:gray_stained_ladder"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:gray_stained_ladder"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_planks.json b/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_planks.json new file mode 100644 index 000000000..3ad0f1395 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_planks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"#minecraft:planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:gray_stained_planks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:gray_stained_planks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_pressure_plate.json b/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_pressure_plate.json new file mode 100644 index 000000000..d20dad7c2 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_pressure_plate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:gray_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:gray_stained_pressure_plate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:gray_stained_pressure_plate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_sign.json new file mode 100644 index 000000000..2bf930167 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:gray_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:gray_stained_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:gray_stained_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_slab.json new file mode 100644 index 000000000..9464d8148 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:gray_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:gray_stained_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:gray_stained_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_stairs.json new file mode 100644 index 000000000..46b59efeb --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:gray_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:gray_stained_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:gray_stained_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_trapdoor.json b/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_trapdoor.json new file mode 100644 index 000000000..cc514d576 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/gray_stained_trapdoor.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:gray_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:gray_stained_trapdoor"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:gray_stained_trapdoor"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/gray_terracotta_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/gray_terracotta_brick_slab.json new file mode 100644 index 000000000..11d3aacc4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/gray_terracotta_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:gray_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:gray_terracotta_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:gray_terracotta_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/gray_terracotta_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/gray_terracotta_brick_stairs.json new file mode 100644 index 000000000..3e1e08bd9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/gray_terracotta_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:gray_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:gray_terracotta_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:gray_terracotta_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/gray_terracotta_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/gray_terracotta_brick_wall.json new file mode 100644 index 000000000..41b16658c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/gray_terracotta_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:gray_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:gray_terracotta_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:gray_terracotta_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/gray_terracotta_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/gray_terracotta_brick_wall_gate.json new file mode 100644 index 000000000..8ea056a40 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/gray_terracotta_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:gray_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:gray_terracotta_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:gray_terracotta_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/gray_terracotta_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/gray_terracotta_bricks.json new file mode 100644 index 000000000..d53fcbbcb --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/gray_terracotta_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:gray_terracotta"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:gray_terracotta_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:gray_terracotta_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/gray_torch.json b/common/src/main/resources/data/pyrite/advancements/recipes/gray_torch.json new file mode 100644 index 000000000..c2f75a9eb --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/gray_torch.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:gray_torch"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:gray_torch"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/gray_torch_lever.json b/common/src/main/resources/data/pyrite/advancements/recipes/gray_torch_lever.json new file mode 100644 index 000000000..29aa63261 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/gray_torch_lever.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:gray_torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:gray_torch_lever"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:gray_torch_lever"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/green_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/green_brick_slab.json new file mode 100644 index 000000000..611169e1c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/green_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:green_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:green_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:green_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/green_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/green_brick_stairs.json new file mode 100644 index 000000000..fdda5cda3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/green_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:green_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:green_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:green_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/green_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/green_brick_wall.json new file mode 100644 index 000000000..f3c5a6b4f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/green_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:green_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:green_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:green_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/green_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/green_brick_wall_gate.json new file mode 100644 index 000000000..d509043b9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/green_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:green_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:green_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:green_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/green_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/green_bricks.json new file mode 100644 index 000000000..8d74166f3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/green_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:green_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:green_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/green_concrete_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/green_concrete_slab.json new file mode 100644 index 000000000..dfc89193f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/green_concrete_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:green_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:green_concrete_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:green_concrete_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/green_concrete_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/green_concrete_stairs.json new file mode 100644 index 000000000..f10a3c570 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/green_concrete_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:green_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:green_concrete_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:green_concrete_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/green_framed_glass.json b/common/src/main/resources/data/pyrite/advancements/recipes/green_framed_glass.json new file mode 100644 index 000000000..31ed1090f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/green_framed_glass.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:green_framed_glass"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:green_framed_glass"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/green_framed_glass_pane.json b/common/src/main/resources/data/pyrite/advancements/recipes/green_framed_glass_pane.json new file mode 100644 index 000000000..b5f0b5414 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/green_framed_glass_pane.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:green_framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:green_framed_glass_pane"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:green_framed_glass_pane"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/green_lamp.json b/common/src/main/resources/data/pyrite/advancements/recipes/green_lamp.json new file mode 100644 index 000000000..b428714cf --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/green_lamp.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glowstone_lamp"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:green_lamp"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:green_lamp"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_button.json new file mode 100644 index 000000000..3dbe991f4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:green_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:green_stained_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:green_stained_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_crafting_table.json b/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_crafting_table.json new file mode 100644 index 000000000..2eca17271 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_crafting_table.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:green_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:green_stained_crafting_table"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:green_stained_crafting_table"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_door.json b/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_door.json new file mode 100644 index 000000000..98417611a --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_door.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:green_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:green_stained_door"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:green_stained_door"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_fence.json b/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_fence.json new file mode 100644 index 000000000..85d3f69f7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_fence.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:green_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:green_stained_fence"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:green_stained_fence"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_fence_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_fence_gate.json new file mode 100644 index 000000000..e379b3b02 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_fence_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:green_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:green_stained_fence_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:green_stained_fence_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_hanging_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_hanging_sign.json new file mode 100644 index 000000000..9dad5a9ed --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_hanging_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:green_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:green_stained_hanging_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:green_stained_hanging_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_ladder.json b/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_ladder.json new file mode 100644 index 000000000..bfa242f48 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_ladder.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:green_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:green_stained_ladder"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:green_stained_ladder"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_planks.json b/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_planks.json new file mode 100644 index 000000000..41786450c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_planks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"#minecraft:planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:green_stained_planks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:green_stained_planks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_pressure_plate.json b/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_pressure_plate.json new file mode 100644 index 000000000..6effbbda4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_pressure_plate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:green_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:green_stained_pressure_plate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:green_stained_pressure_plate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_sign.json new file mode 100644 index 000000000..3a9c30f52 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:green_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:green_stained_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:green_stained_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_slab.json new file mode 100644 index 000000000..6f8243ccd --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:green_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:green_stained_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:green_stained_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_stairs.json new file mode 100644 index 000000000..ce45e3678 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:green_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:green_stained_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:green_stained_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_trapdoor.json b/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_trapdoor.json new file mode 100644 index 000000000..50c9a70c3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/green_stained_trapdoor.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:green_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:green_stained_trapdoor"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:green_stained_trapdoor"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/green_terracotta_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/green_terracotta_brick_slab.json new file mode 100644 index 000000000..7aa8ec768 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/green_terracotta_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:green_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:green_terracotta_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:green_terracotta_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/green_terracotta_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/green_terracotta_brick_stairs.json new file mode 100644 index 000000000..defc62fc2 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/green_terracotta_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:green_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:green_terracotta_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:green_terracotta_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/green_terracotta_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/green_terracotta_brick_wall.json new file mode 100644 index 000000000..ad9d4d377 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/green_terracotta_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:green_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:green_terracotta_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:green_terracotta_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/green_terracotta_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/green_terracotta_brick_wall_gate.json new file mode 100644 index 000000000..d336cd066 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/green_terracotta_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:green_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:green_terracotta_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:green_terracotta_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/green_terracotta_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/green_terracotta_bricks.json new file mode 100644 index 000000000..ae44b4167 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/green_terracotta_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:green_terracotta"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:green_terracotta_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:green_terracotta_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/green_torch.json b/common/src/main/resources/data/pyrite/advancements/recipes/green_torch.json new file mode 100644 index 000000000..80940bd95 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/green_torch.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:green_torch"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:green_torch"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/green_torch_lever.json b/common/src/main/resources/data/pyrite/advancements/recipes/green_torch_lever.json new file mode 100644 index 000000000..8418a2c51 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/green_torch_lever.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:green_torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:green_torch_lever"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:green_torch_lever"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/honey_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/honey_brick_slab.json new file mode 100644 index 000000000..5b737fe27 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/honey_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:honey_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:honey_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:honey_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/honey_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/honey_brick_stairs.json new file mode 100644 index 000000000..29eac4ac6 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/honey_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:honey_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:honey_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:honey_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/honey_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/honey_brick_wall.json new file mode 100644 index 000000000..30d74fe87 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/honey_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:honey_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:honey_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:honey_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/honey_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/honey_brick_wall_gate.json new file mode 100644 index 000000000..926e3b938 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/honey_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:honey_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:honey_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:honey_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/honey_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/honey_bricks.json new file mode 100644 index 000000000..c4b26382c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/honey_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:honey_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:honey_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/honey_carpet.json b/common/src/main/resources/data/pyrite/advancements/recipes/honey_carpet.json new file mode 100644 index 000000000..54e5c277f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/honey_carpet.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:honey_wool"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:honey_carpet"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:honey_carpet"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/honey_concrete_powder.json b/common/src/main/resources/data/pyrite/advancements/recipes/honey_concrete_powder.json new file mode 100644 index 000000000..434c6e9f9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/honey_concrete_powder.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:honey_dye"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:honey_concrete_powder"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:honey_concrete_powder"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/honey_concrete_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/honey_concrete_slab.json new file mode 100644 index 000000000..36b4eee40 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/honey_concrete_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:honey_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:honey_concrete_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:honey_concrete_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/honey_concrete_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/honey_concrete_stairs.json new file mode 100644 index 000000000..602ab69cd --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/honey_concrete_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:honey_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:honey_concrete_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:honey_concrete_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/honey_dye.json b/common/src/main/resources/data/pyrite/advancements/recipes/honey_dye.json new file mode 100644 index 000000000..dc9118b2e --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/honey_dye.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:honeycomb"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:honey_dye"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:honey_dye"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/honey_framed_glass.json b/common/src/main/resources/data/pyrite/advancements/recipes/honey_framed_glass.json new file mode 100644 index 000000000..6488f24c8 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/honey_framed_glass.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:honey_framed_glass"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:honey_framed_glass"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/honey_framed_glass_pane.json b/common/src/main/resources/data/pyrite/advancements/recipes/honey_framed_glass_pane.json new file mode 100644 index 000000000..423da3174 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/honey_framed_glass_pane.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:honey_framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:honey_framed_glass_pane"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:honey_framed_glass_pane"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/honey_lamp.json b/common/src/main/resources/data/pyrite/advancements/recipes/honey_lamp.json new file mode 100644 index 000000000..ddc1f576d --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/honey_lamp.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glowstone_lamp"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:honey_lamp"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:honey_lamp"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_button.json new file mode 100644 index 000000000..a2542422e --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:honey_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:honey_stained_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:honey_stained_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_crafting_table.json b/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_crafting_table.json new file mode 100644 index 000000000..8b04b3093 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_crafting_table.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:honey_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:honey_stained_crafting_table"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:honey_stained_crafting_table"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_door.json b/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_door.json new file mode 100644 index 000000000..ea2f7aa64 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_door.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:honey_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:honey_stained_door"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:honey_stained_door"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_fence.json b/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_fence.json new file mode 100644 index 000000000..afbfaf88f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_fence.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:honey_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:honey_stained_fence"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:honey_stained_fence"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_fence_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_fence_gate.json new file mode 100644 index 000000000..4c9683934 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_fence_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:honey_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:honey_stained_fence_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:honey_stained_fence_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_hanging_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_hanging_sign.json new file mode 100644 index 000000000..4fb483354 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_hanging_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:honey_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:honey_stained_hanging_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:honey_stained_hanging_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_ladder.json b/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_ladder.json new file mode 100644 index 000000000..9fa43e143 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_ladder.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:honey_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:honey_stained_ladder"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:honey_stained_ladder"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_planks.json b/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_planks.json new file mode 100644 index 000000000..4e66b19d9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_planks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"#minecraft:planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:honey_stained_planks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:honey_stained_planks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_pressure_plate.json b/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_pressure_plate.json new file mode 100644 index 000000000..0434e7497 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_pressure_plate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:honey_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:honey_stained_pressure_plate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:honey_stained_pressure_plate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_sign.json new file mode 100644 index 000000000..34b8a6286 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:honey_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:honey_stained_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:honey_stained_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_slab.json new file mode 100644 index 000000000..e1e07c0ac --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:honey_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:honey_stained_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:honey_stained_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_stairs.json new file mode 100644 index 000000000..7dc7ad2ad --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:honey_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:honey_stained_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:honey_stained_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_trapdoor.json b/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_trapdoor.json new file mode 100644 index 000000000..b6f30eae5 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/honey_stained_trapdoor.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:honey_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:honey_stained_trapdoor"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:honey_stained_trapdoor"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/honey_terracotta.json b/common/src/main/resources/data/pyrite/advancements/recipes/honey_terracotta.json new file mode 100644 index 000000000..fd132372c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/honey_terracotta.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:honey_dye"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:honey_terracotta"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:honey_terracotta"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/honey_terracotta_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/honey_terracotta_brick_slab.json new file mode 100644 index 000000000..91a28cf23 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/honey_terracotta_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:honey_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:honey_terracotta_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:honey_terracotta_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/honey_terracotta_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/honey_terracotta_brick_stairs.json new file mode 100644 index 000000000..3b1c6cf6c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/honey_terracotta_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:honey_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:honey_terracotta_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:honey_terracotta_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/honey_terracotta_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/honey_terracotta_brick_wall.json new file mode 100644 index 000000000..3eeee7633 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/honey_terracotta_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:honey_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:honey_terracotta_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:honey_terracotta_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/honey_terracotta_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/honey_terracotta_brick_wall_gate.json new file mode 100644 index 000000000..31fc03971 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/honey_terracotta_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:honey_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:honey_terracotta_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:honey_terracotta_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/honey_terracotta_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/honey_terracotta_bricks.json new file mode 100644 index 000000000..fda1f82d8 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/honey_terracotta_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:honey_terracotta"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:honey_terracotta_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:honey_terracotta_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/honey_torch.json b/common/src/main/resources/data/pyrite/advancements/recipes/honey_torch.json new file mode 100644 index 000000000..49e6690bc --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/honey_torch.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:honey_torch"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:honey_torch"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/honey_torch_lever.json b/common/src/main/resources/data/pyrite/advancements/recipes/honey_torch_lever.json new file mode 100644 index 000000000..ebcc64730 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/honey_torch_lever.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:honey_torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:honey_torch_lever"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:honey_torch_lever"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/honey_wool.json b/common/src/main/resources/data/pyrite/advancements/recipes/honey_wool.json new file mode 100644 index 000000000..41e1f0a3f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/honey_wool.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:honey_dye"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:honey_wool"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:honey_wool"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/iron_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/iron_button.json new file mode 100644 index 000000000..c4c5d2bc2 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/iron_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:iron_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:iron_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:iron_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/iron_pillar.json b/common/src/main/resources/data/pyrite/advancements/recipes/iron_pillar.json new file mode 100644 index 000000000..2fcca49e8 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/iron_pillar.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:iron_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:iron_pillar"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:iron_pillar"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/jungle_crafting_table.json b/common/src/main/resources/data/pyrite/advancements/recipes/jungle_crafting_table.json new file mode 100644 index 000000000..6e010d63f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/jungle_crafting_table.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:jungle_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:jungle_crafting_table"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:jungle_crafting_table"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/lapis_bars.json b/common/src/main/resources/data/pyrite/advancements/recipes/lapis_bars.json new file mode 100644 index 000000000..04ae18324 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/lapis_bars.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_lapis"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:lapis_bars"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:lapis_bars"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/lapis_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/lapis_button.json new file mode 100644 index 000000000..ac37aaaaf --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/lapis_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:lapis_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:lapis_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:lapis_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/lapis_door.json b/common/src/main/resources/data/pyrite/advancements/recipes/lapis_door.json new file mode 100644 index 000000000..72db1d4e1 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/lapis_door.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:lapis_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:lapis_door"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:lapis_door"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/lapis_pillar.json b/common/src/main/resources/data/pyrite/advancements/recipes/lapis_pillar.json new file mode 100644 index 000000000..72237d603 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/lapis_pillar.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:lapis_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:lapis_pillar"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:lapis_pillar"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/lapis_pressure_plate.json b/common/src/main/resources/data/pyrite/advancements/recipes/lapis_pressure_plate.json new file mode 100644 index 000000000..c8ebe5506 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/lapis_pressure_plate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:lapis_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:lapis_pressure_plate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:lapis_pressure_plate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/lapis_trapdoor.json b/common/src/main/resources/data/pyrite/advancements/recipes/lapis_trapdoor.json new file mode 100644 index 000000000..f0367086e --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/lapis_trapdoor.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:lapis_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:lapis_trapdoor"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:lapis_trapdoor"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_brick_slab.json new file mode 100644 index 000000000..84a363131 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_blue_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_blue_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_blue_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_brick_stairs.json new file mode 100644 index 000000000..dd7f03ec2 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_blue_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_blue_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_blue_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_brick_wall.json new file mode 100644 index 000000000..82904558e --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_blue_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_blue_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_blue_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_brick_wall_gate.json new file mode 100644 index 000000000..9cb2e44b5 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_blue_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_blue_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_blue_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_bricks.json new file mode 100644 index 000000000..373fc64f5 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_blue_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_blue_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_concrete_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_concrete_slab.json new file mode 100644 index 000000000..f9f98d92a --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_concrete_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:light_blue_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_blue_concrete_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_blue_concrete_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_concrete_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_concrete_stairs.json new file mode 100644 index 000000000..1154d7bae --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_concrete_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:light_blue_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_blue_concrete_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_blue_concrete_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_framed_glass.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_framed_glass.json new file mode 100644 index 000000000..3944d425b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_framed_glass.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_blue_framed_glass"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_blue_framed_glass"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_framed_glass_pane.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_framed_glass_pane.json new file mode 100644 index 000000000..78b1c2957 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_framed_glass_pane.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_blue_framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_blue_framed_glass_pane"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_blue_framed_glass_pane"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_lamp.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_lamp.json new file mode 100644 index 000000000..06cca89f7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_lamp.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glowstone_lamp"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_blue_lamp"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_blue_lamp"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_button.json new file mode 100644 index 000000000..144619d19 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_blue_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_blue_stained_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_blue_stained_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_crafting_table.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_crafting_table.json new file mode 100644 index 000000000..8f9eecca2 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_crafting_table.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_blue_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_blue_stained_crafting_table"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_blue_stained_crafting_table"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_door.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_door.json new file mode 100644 index 000000000..7a1525bfa --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_door.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_blue_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_blue_stained_door"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_blue_stained_door"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_fence.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_fence.json new file mode 100644 index 000000000..ee8d367f4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_fence.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_blue_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_blue_stained_fence"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_blue_stained_fence"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_fence_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_fence_gate.json new file mode 100644 index 000000000..d330a23e8 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_fence_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_blue_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_blue_stained_fence_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_blue_stained_fence_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_hanging_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_hanging_sign.json new file mode 100644 index 000000000..2d4b61957 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_hanging_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_blue_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_blue_stained_hanging_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_blue_stained_hanging_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_ladder.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_ladder.json new file mode 100644 index 000000000..d815823cb --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_ladder.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_blue_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_blue_stained_ladder"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_blue_stained_ladder"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_planks.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_planks.json new file mode 100644 index 000000000..3d087b1e9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_planks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"#minecraft:planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_blue_stained_planks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_blue_stained_planks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_pressure_plate.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_pressure_plate.json new file mode 100644 index 000000000..273e38680 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_pressure_plate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_blue_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_blue_stained_pressure_plate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_blue_stained_pressure_plate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_sign.json new file mode 100644 index 000000000..68b1aacdb --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_blue_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_blue_stained_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_blue_stained_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_slab.json new file mode 100644 index 000000000..762680ba4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_blue_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_blue_stained_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_blue_stained_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_stairs.json new file mode 100644 index 000000000..bdc0bdf45 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_blue_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_blue_stained_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_blue_stained_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_trapdoor.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_trapdoor.json new file mode 100644 index 000000000..8bde6296e --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_stained_trapdoor.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_blue_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_blue_stained_trapdoor"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_blue_stained_trapdoor"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_terracotta_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_terracotta_brick_slab.json new file mode 100644 index 000000000..b3cc12963 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_terracotta_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_blue_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_blue_terracotta_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_blue_terracotta_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_terracotta_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_terracotta_brick_stairs.json new file mode 100644 index 000000000..71bc80329 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_terracotta_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_blue_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_blue_terracotta_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_blue_terracotta_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_terracotta_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_terracotta_brick_wall.json new file mode 100644 index 000000000..27fb5b2e7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_terracotta_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_blue_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_blue_terracotta_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_blue_terracotta_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_terracotta_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_terracotta_brick_wall_gate.json new file mode 100644 index 000000000..208902897 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_terracotta_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_blue_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_blue_terracotta_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_blue_terracotta_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_terracotta_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_terracotta_bricks.json new file mode 100644 index 000000000..68661f70f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_terracotta_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:light_blue_terracotta"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_blue_terracotta_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_blue_terracotta_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_torch.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_torch.json new file mode 100644 index 000000000..78263c7bd --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_torch.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_blue_torch"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_blue_torch"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_torch_lever.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_torch_lever.json new file mode 100644 index 000000000..2e9d84765 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_blue_torch_lever.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_blue_torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_blue_torch_lever"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_blue_torch_lever"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_brick_slab.json new file mode 100644 index 000000000..196d89184 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_gray_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_gray_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_gray_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_brick_stairs.json new file mode 100644 index 000000000..b966ee33d --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_gray_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_gray_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_gray_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_brick_wall.json new file mode 100644 index 000000000..a3504f6bf --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_gray_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_gray_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_gray_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_brick_wall_gate.json new file mode 100644 index 000000000..2427ebe39 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_gray_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_gray_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_gray_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_bricks.json new file mode 100644 index 000000000..d9d36d768 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_gray_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_gray_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_concrete_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_concrete_slab.json new file mode 100644 index 000000000..d620e27cf --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_concrete_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:light_gray_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_gray_concrete_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_gray_concrete_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_concrete_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_concrete_stairs.json new file mode 100644 index 000000000..721887025 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_concrete_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:light_gray_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_gray_concrete_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_gray_concrete_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_framed_glass.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_framed_glass.json new file mode 100644 index 000000000..912726adc --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_framed_glass.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_gray_framed_glass"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_gray_framed_glass"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_framed_glass_pane.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_framed_glass_pane.json new file mode 100644 index 000000000..b175f1395 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_framed_glass_pane.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_gray_framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_gray_framed_glass_pane"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_gray_framed_glass_pane"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_lamp.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_lamp.json new file mode 100644 index 000000000..6b600c7eb --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_lamp.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glowstone_lamp"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_gray_lamp"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_gray_lamp"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_button.json new file mode 100644 index 000000000..1258bc0a4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_gray_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_gray_stained_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_gray_stained_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_crafting_table.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_crafting_table.json new file mode 100644 index 000000000..5104eb09d --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_crafting_table.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_gray_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_gray_stained_crafting_table"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_gray_stained_crafting_table"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_door.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_door.json new file mode 100644 index 000000000..8e02b60fe --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_door.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_gray_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_gray_stained_door"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_gray_stained_door"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_fence.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_fence.json new file mode 100644 index 000000000..28247a9d4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_fence.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_gray_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_gray_stained_fence"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_gray_stained_fence"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_fence_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_fence_gate.json new file mode 100644 index 000000000..fbc6c8361 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_fence_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_gray_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_gray_stained_fence_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_gray_stained_fence_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_hanging_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_hanging_sign.json new file mode 100644 index 000000000..57269b44a --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_hanging_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_gray_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_gray_stained_hanging_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_gray_stained_hanging_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_ladder.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_ladder.json new file mode 100644 index 000000000..f0afd18a5 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_ladder.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_gray_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_gray_stained_ladder"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_gray_stained_ladder"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_planks.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_planks.json new file mode 100644 index 000000000..32a4f4f53 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_planks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"#minecraft:planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_gray_stained_planks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_gray_stained_planks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_pressure_plate.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_pressure_plate.json new file mode 100644 index 000000000..3f24f2a8f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_pressure_plate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_gray_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_gray_stained_pressure_plate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_gray_stained_pressure_plate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_sign.json new file mode 100644 index 000000000..e563505a2 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_gray_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_gray_stained_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_gray_stained_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_slab.json new file mode 100644 index 000000000..7383f4c43 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_gray_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_gray_stained_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_gray_stained_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_stairs.json new file mode 100644 index 000000000..e3c278269 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_gray_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_gray_stained_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_gray_stained_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_trapdoor.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_trapdoor.json new file mode 100644 index 000000000..30dae5c0c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_stained_trapdoor.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_gray_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_gray_stained_trapdoor"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_gray_stained_trapdoor"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_terracotta_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_terracotta_brick_slab.json new file mode 100644 index 000000000..caf25338a --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_terracotta_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_gray_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_gray_terracotta_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_gray_terracotta_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_terracotta_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_terracotta_brick_stairs.json new file mode 100644 index 000000000..60348cad2 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_terracotta_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_gray_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_gray_terracotta_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_gray_terracotta_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_terracotta_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_terracotta_brick_wall.json new file mode 100644 index 000000000..7a50ada44 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_terracotta_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_gray_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_gray_terracotta_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_gray_terracotta_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_terracotta_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_terracotta_brick_wall_gate.json new file mode 100644 index 000000000..2b74ba87f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_terracotta_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_gray_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_gray_terracotta_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_gray_terracotta_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_terracotta_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_terracotta_bricks.json new file mode 100644 index 000000000..793145743 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_terracotta_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:light_gray_terracotta"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_gray_terracotta_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_gray_terracotta_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_torch.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_torch.json new file mode 100644 index 000000000..90c1696b2 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_torch.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_gray_torch"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_gray_torch"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_torch_lever.json b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_torch_lever.json new file mode 100644 index 000000000..75c4655ee --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/light_gray_torch_lever.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:light_gray_torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:light_gray_torch_lever"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:light_gray_torch_lever"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/lime_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/lime_brick_slab.json new file mode 100644 index 000000000..5c93fd8e4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/lime_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:lime_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:lime_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:lime_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/lime_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/lime_brick_stairs.json new file mode 100644 index 000000000..4dbb74e6b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/lime_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:lime_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:lime_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:lime_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/lime_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/lime_brick_wall.json new file mode 100644 index 000000000..c06dedd59 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/lime_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:lime_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:lime_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:lime_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/lime_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/lime_brick_wall_gate.json new file mode 100644 index 000000000..7bc99e995 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/lime_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:lime_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:lime_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:lime_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/lime_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/lime_bricks.json new file mode 100644 index 000000000..7742388f6 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/lime_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:lime_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:lime_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/lime_concrete_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/lime_concrete_slab.json new file mode 100644 index 000000000..91f4424bb --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/lime_concrete_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:lime_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:lime_concrete_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:lime_concrete_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/lime_concrete_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/lime_concrete_stairs.json new file mode 100644 index 000000000..a348804e1 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/lime_concrete_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:lime_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:lime_concrete_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:lime_concrete_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/lime_framed_glass.json b/common/src/main/resources/data/pyrite/advancements/recipes/lime_framed_glass.json new file mode 100644 index 000000000..77ad0638f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/lime_framed_glass.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:lime_framed_glass"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:lime_framed_glass"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/lime_framed_glass_pane.json b/common/src/main/resources/data/pyrite/advancements/recipes/lime_framed_glass_pane.json new file mode 100644 index 000000000..a9e05a731 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/lime_framed_glass_pane.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:lime_framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:lime_framed_glass_pane"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:lime_framed_glass_pane"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/lime_lamp.json b/common/src/main/resources/data/pyrite/advancements/recipes/lime_lamp.json new file mode 100644 index 000000000..cc6b763d6 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/lime_lamp.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glowstone_lamp"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:lime_lamp"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:lime_lamp"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_button.json new file mode 100644 index 000000000..f39ad6fb6 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:lime_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:lime_stained_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:lime_stained_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_crafting_table.json b/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_crafting_table.json new file mode 100644 index 000000000..6c2585fbc --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_crafting_table.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:lime_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:lime_stained_crafting_table"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:lime_stained_crafting_table"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_door.json b/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_door.json new file mode 100644 index 000000000..e40c5298e --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_door.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:lime_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:lime_stained_door"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:lime_stained_door"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_fence.json b/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_fence.json new file mode 100644 index 000000000..984ea2b7d --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_fence.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:lime_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:lime_stained_fence"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:lime_stained_fence"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_fence_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_fence_gate.json new file mode 100644 index 000000000..28c031404 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_fence_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:lime_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:lime_stained_fence_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:lime_stained_fence_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_hanging_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_hanging_sign.json new file mode 100644 index 000000000..646215267 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_hanging_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:lime_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:lime_stained_hanging_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:lime_stained_hanging_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_ladder.json b/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_ladder.json new file mode 100644 index 000000000..02d9b44c2 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_ladder.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:lime_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:lime_stained_ladder"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:lime_stained_ladder"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_planks.json b/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_planks.json new file mode 100644 index 000000000..a14d763c8 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_planks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"#minecraft:planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:lime_stained_planks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:lime_stained_planks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_pressure_plate.json b/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_pressure_plate.json new file mode 100644 index 000000000..48c9d3dac --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_pressure_plate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:lime_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:lime_stained_pressure_plate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:lime_stained_pressure_plate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_sign.json new file mode 100644 index 000000000..07c7376d7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:lime_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:lime_stained_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:lime_stained_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_slab.json new file mode 100644 index 000000000..b99431f53 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:lime_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:lime_stained_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:lime_stained_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_stairs.json new file mode 100644 index 000000000..4be05df4c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:lime_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:lime_stained_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:lime_stained_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_trapdoor.json b/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_trapdoor.json new file mode 100644 index 000000000..341424922 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/lime_stained_trapdoor.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:lime_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:lime_stained_trapdoor"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:lime_stained_trapdoor"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/lime_terracotta_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/lime_terracotta_brick_slab.json new file mode 100644 index 000000000..297f7d433 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/lime_terracotta_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:lime_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:lime_terracotta_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:lime_terracotta_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/lime_terracotta_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/lime_terracotta_brick_stairs.json new file mode 100644 index 000000000..eadd629a5 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/lime_terracotta_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:lime_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:lime_terracotta_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:lime_terracotta_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/lime_terracotta_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/lime_terracotta_brick_wall.json new file mode 100644 index 000000000..3072d8cc6 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/lime_terracotta_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:lime_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:lime_terracotta_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:lime_terracotta_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/lime_terracotta_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/lime_terracotta_brick_wall_gate.json new file mode 100644 index 000000000..21dd73dff --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/lime_terracotta_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:lime_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:lime_terracotta_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:lime_terracotta_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/lime_terracotta_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/lime_terracotta_bricks.json new file mode 100644 index 000000000..b03afd719 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/lime_terracotta_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:lime_terracotta"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:lime_terracotta_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:lime_terracotta_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/lime_torch.json b/common/src/main/resources/data/pyrite/advancements/recipes/lime_torch.json new file mode 100644 index 000000000..13b6d8ec3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/lime_torch.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:lime_torch"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:lime_torch"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/lime_torch_lever.json b/common/src/main/resources/data/pyrite/advancements/recipes/lime_torch_lever.json new file mode 100644 index 000000000..70d50e3fa --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/lime_torch_lever.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:lime_torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:lime_torch_lever"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:lime_torch_lever"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/lit_redstone_lamp.json b/common/src/main/resources/data/pyrite/advancements/recipes/lit_redstone_lamp.json new file mode 100644 index 000000000..ff7f18ae6 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/lit_redstone_lamp.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:redstone_lamp"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:lit_redstone_lamp"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:lit_redstone_lamp"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/magenta_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_brick_slab.json new file mode 100644 index 000000000..d7ebb299b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:magenta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:magenta_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:magenta_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/magenta_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_brick_stairs.json new file mode 100644 index 000000000..320299e55 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:magenta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:magenta_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:magenta_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/magenta_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_brick_wall.json new file mode 100644 index 000000000..dc11b15a0 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:magenta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:magenta_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:magenta_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/magenta_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_brick_wall_gate.json new file mode 100644 index 000000000..f03fb6585 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:magenta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:magenta_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:magenta_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/magenta_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_bricks.json new file mode 100644 index 000000000..fdad82e87 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:magenta_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:magenta_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/magenta_concrete_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_concrete_slab.json new file mode 100644 index 000000000..5d6a3ce46 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_concrete_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:magenta_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:magenta_concrete_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:magenta_concrete_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/magenta_concrete_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_concrete_stairs.json new file mode 100644 index 000000000..ce3ea19d9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_concrete_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:magenta_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:magenta_concrete_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:magenta_concrete_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/magenta_framed_glass.json b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_framed_glass.json new file mode 100644 index 000000000..e9e93845f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_framed_glass.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:magenta_framed_glass"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:magenta_framed_glass"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/magenta_framed_glass_pane.json b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_framed_glass_pane.json new file mode 100644 index 000000000..ea3a6d6bd --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_framed_glass_pane.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:magenta_framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:magenta_framed_glass_pane"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:magenta_framed_glass_pane"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/magenta_lamp.json b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_lamp.json new file mode 100644 index 000000000..e0b1ba1bc --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_lamp.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glowstone_lamp"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:magenta_lamp"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:magenta_lamp"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_button.json new file mode 100644 index 000000000..38a9befe9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:magenta_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:magenta_stained_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:magenta_stained_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_crafting_table.json b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_crafting_table.json new file mode 100644 index 000000000..61828fa17 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_crafting_table.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:magenta_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:magenta_stained_crafting_table"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:magenta_stained_crafting_table"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_door.json b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_door.json new file mode 100644 index 000000000..1f1adf671 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_door.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:magenta_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:magenta_stained_door"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:magenta_stained_door"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_fence.json b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_fence.json new file mode 100644 index 000000000..c8d264e29 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_fence.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:magenta_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:magenta_stained_fence"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:magenta_stained_fence"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_fence_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_fence_gate.json new file mode 100644 index 000000000..b13fb78cb --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_fence_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:magenta_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:magenta_stained_fence_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:magenta_stained_fence_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_hanging_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_hanging_sign.json new file mode 100644 index 000000000..5fe0c5603 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_hanging_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:magenta_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:magenta_stained_hanging_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:magenta_stained_hanging_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_ladder.json b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_ladder.json new file mode 100644 index 000000000..036a903cd --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_ladder.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:magenta_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:magenta_stained_ladder"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:magenta_stained_ladder"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_planks.json b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_planks.json new file mode 100644 index 000000000..0258b3bab --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_planks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"#minecraft:planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:magenta_stained_planks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:magenta_stained_planks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_pressure_plate.json b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_pressure_plate.json new file mode 100644 index 000000000..2ce1fe7eb --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_pressure_plate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:magenta_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:magenta_stained_pressure_plate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:magenta_stained_pressure_plate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_sign.json new file mode 100644 index 000000000..da8c5a458 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:magenta_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:magenta_stained_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:magenta_stained_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_slab.json new file mode 100644 index 000000000..87b19137b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:magenta_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:magenta_stained_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:magenta_stained_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_stairs.json new file mode 100644 index 000000000..93d5f155b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:magenta_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:magenta_stained_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:magenta_stained_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_trapdoor.json b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_trapdoor.json new file mode 100644 index 000000000..4ee0c5758 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_stained_trapdoor.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:magenta_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:magenta_stained_trapdoor"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:magenta_stained_trapdoor"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/magenta_terracotta_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_terracotta_brick_slab.json new file mode 100644 index 000000000..e60f3be71 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_terracotta_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:magenta_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:magenta_terracotta_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:magenta_terracotta_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/magenta_terracotta_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_terracotta_brick_stairs.json new file mode 100644 index 000000000..10ce08ada --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_terracotta_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:magenta_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:magenta_terracotta_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:magenta_terracotta_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/magenta_terracotta_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_terracotta_brick_wall.json new file mode 100644 index 000000000..1b5562e4c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_terracotta_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:magenta_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:magenta_terracotta_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:magenta_terracotta_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/magenta_terracotta_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_terracotta_brick_wall_gate.json new file mode 100644 index 000000000..125ae9a73 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_terracotta_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:magenta_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:magenta_terracotta_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:magenta_terracotta_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/magenta_terracotta_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_terracotta_bricks.json new file mode 100644 index 000000000..f2ea2ed52 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_terracotta_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:magenta_terracotta"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:magenta_terracotta_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:magenta_terracotta_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/magenta_torch.json b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_torch.json new file mode 100644 index 000000000..652eee361 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_torch.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:magenta_torch"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:magenta_torch"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/magenta_torch_lever.json b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_torch_lever.json new file mode 100644 index 000000000..031a6612d --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/magenta_torch_lever.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:magenta_torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:magenta_torch_lever"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:magenta_torch_lever"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mangrove_crafting_table.json b/common/src/main/resources/data/pyrite/advancements/recipes/mangrove_crafting_table.json new file mode 100644 index 000000000..da8d2a110 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mangrove_crafting_table.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:mangrove_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mangrove_crafting_table"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mangrove_crafting_table"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mossy_andesite_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_andesite_brick_slab.json new file mode 100644 index 000000000..ad1ad406e --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_andesite_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:mossy_andesite_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mossy_andesite_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mossy_andesite_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mossy_andesite_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_andesite_brick_stairs.json new file mode 100644 index 000000000..734b7070e --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_andesite_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:mossy_andesite_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mossy_andesite_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mossy_andesite_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mossy_andesite_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_andesite_brick_wall.json new file mode 100644 index 000000000..14311c09f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_andesite_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:mossy_andesite_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mossy_andesite_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mossy_andesite_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mossy_andesite_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_andesite_brick_wall_gate.json new file mode 100644 index 000000000..076890c2d --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_andesite_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:mossy_andesite_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mossy_andesite_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mossy_andesite_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mossy_andesite_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_andesite_bricks.json new file mode 100644 index 000000000..44b5f92d9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_andesite_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:andesite_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mossy_andesite_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mossy_andesite_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mossy_calcite_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_calcite_brick_slab.json new file mode 100644 index 000000000..bbec65943 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_calcite_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:mossy_calcite_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mossy_calcite_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mossy_calcite_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mossy_calcite_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_calcite_brick_stairs.json new file mode 100644 index 000000000..e6c9ce229 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_calcite_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:mossy_calcite_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mossy_calcite_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mossy_calcite_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mossy_calcite_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_calcite_brick_wall.json new file mode 100644 index 000000000..c28c92ba4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_calcite_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:mossy_calcite_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mossy_calcite_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mossy_calcite_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mossy_calcite_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_calcite_brick_wall_gate.json new file mode 100644 index 000000000..850383834 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_calcite_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:mossy_calcite_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mossy_calcite_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mossy_calcite_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mossy_calcite_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_calcite_bricks.json new file mode 100644 index 000000000..5dd0e5feb --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_calcite_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:calcite_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mossy_calcite_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mossy_calcite_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mossy_cobblestone_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_cobblestone_brick_slab.json new file mode 100644 index 000000000..55d793f69 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_cobblestone_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:mossy_cobblestone_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mossy_cobblestone_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mossy_cobblestone_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mossy_cobblestone_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_cobblestone_brick_stairs.json new file mode 100644 index 000000000..3233b7bc4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_cobblestone_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:mossy_cobblestone_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mossy_cobblestone_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mossy_cobblestone_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mossy_cobblestone_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_cobblestone_brick_wall.json new file mode 100644 index 000000000..07913b856 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_cobblestone_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:mossy_cobblestone_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mossy_cobblestone_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mossy_cobblestone_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mossy_cobblestone_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_cobblestone_brick_wall_gate.json new file mode 100644 index 000000000..930c87df8 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_cobblestone_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:mossy_cobblestone_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mossy_cobblestone_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mossy_cobblestone_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mossy_cobblestone_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_cobblestone_bricks.json new file mode 100644 index 000000000..372339332 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_cobblestone_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cobblestone_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mossy_cobblestone_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mossy_cobblestone_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mossy_cobblestone_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_cobblestone_wall_gate.json new file mode 100644 index 000000000..f78906d62 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_cobblestone_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:mossy_cobblestone"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mossy_cobblestone_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mossy_cobblestone_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mossy_deepslate_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_deepslate_brick_slab.json new file mode 100644 index 000000000..1fe0f982b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_deepslate_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:mossy_deepslate_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mossy_deepslate_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mossy_deepslate_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mossy_deepslate_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_deepslate_brick_stairs.json new file mode 100644 index 000000000..a42d93106 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_deepslate_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:mossy_deepslate_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mossy_deepslate_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mossy_deepslate_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mossy_deepslate_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_deepslate_brick_wall.json new file mode 100644 index 000000000..3471816ff --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_deepslate_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:mossy_deepslate_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mossy_deepslate_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mossy_deepslate_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mossy_deepslate_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_deepslate_brick_wall_gate.json new file mode 100644 index 000000000..5eab1117b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_deepslate_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:mossy_deepslate_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mossy_deepslate_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mossy_deepslate_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mossy_deepslate_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_deepslate_bricks.json new file mode 100644 index 000000000..e176db0ed --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_deepslate_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:deepslate_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mossy_deepslate_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mossy_deepslate_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mossy_diorite_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_diorite_brick_slab.json new file mode 100644 index 000000000..1ac98a98a --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_diorite_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:mossy_diorite_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mossy_diorite_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mossy_diorite_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mossy_diorite_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_diorite_brick_stairs.json new file mode 100644 index 000000000..3d0fc2363 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_diorite_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:mossy_diorite_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mossy_diorite_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mossy_diorite_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mossy_diorite_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_diorite_brick_wall.json new file mode 100644 index 000000000..7abcbed5b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_diorite_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:mossy_diorite_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mossy_diorite_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mossy_diorite_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mossy_diorite_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_diorite_brick_wall_gate.json new file mode 100644 index 000000000..d06c9d2db --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_diorite_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:mossy_diorite_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mossy_diorite_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mossy_diorite_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mossy_diorite_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_diorite_bricks.json new file mode 100644 index 000000000..951ba41af --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_diorite_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:diorite_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mossy_diorite_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mossy_diorite_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mossy_granite_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_granite_brick_slab.json new file mode 100644 index 000000000..61b182213 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_granite_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:mossy_granite_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mossy_granite_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mossy_granite_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mossy_granite_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_granite_brick_stairs.json new file mode 100644 index 000000000..07960ddfa --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_granite_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:mossy_granite_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mossy_granite_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mossy_granite_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mossy_granite_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_granite_brick_wall.json new file mode 100644 index 000000000..fc683b39b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_granite_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:mossy_granite_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mossy_granite_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mossy_granite_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mossy_granite_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_granite_brick_wall_gate.json new file mode 100644 index 000000000..9ed5c1dfe --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_granite_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:mossy_granite_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mossy_granite_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mossy_granite_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mossy_granite_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_granite_bricks.json new file mode 100644 index 000000000..ba9e8053f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_granite_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:granite_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mossy_granite_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mossy_granite_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mossy_smooth_stone_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_smooth_stone_brick_slab.json new file mode 100644 index 000000000..6cb83384d --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_smooth_stone_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:mossy_smooth_stone_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mossy_smooth_stone_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mossy_smooth_stone_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mossy_smooth_stone_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_smooth_stone_brick_stairs.json new file mode 100644 index 000000000..ac57ba2e9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_smooth_stone_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:mossy_smooth_stone_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mossy_smooth_stone_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mossy_smooth_stone_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mossy_smooth_stone_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_smooth_stone_brick_wall.json new file mode 100644 index 000000000..ed21cc672 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_smooth_stone_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:mossy_smooth_stone_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mossy_smooth_stone_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mossy_smooth_stone_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mossy_smooth_stone_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_smooth_stone_brick_wall_gate.json new file mode 100644 index 000000000..b60a644cd --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_smooth_stone_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:mossy_smooth_stone_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mossy_smooth_stone_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mossy_smooth_stone_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mossy_smooth_stone_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_smooth_stone_bricks.json new file mode 100644 index 000000000..50db55769 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_smooth_stone_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_stone_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mossy_smooth_stone_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mossy_smooth_stone_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mossy_stone_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_stone_brick_wall_gate.json new file mode 100644 index 000000000..beac4fa37 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mossy_stone_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:mossy_stone_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mossy_stone_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mossy_stone_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mud_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/mud_brick_wall_gate.json new file mode 100644 index 000000000..01951813f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mud_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:mud_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mud_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mud_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mycelium_carpet.json b/common/src/main/resources/data/pyrite/advancements/recipes/mycelium_carpet.json new file mode 100644 index 000000000..38e2394f2 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mycelium_carpet.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:mycelium"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mycelium_carpet"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mycelium_carpet"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mycelium_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/mycelium_slab.json new file mode 100644 index 000000000..330586c23 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mycelium_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:mycelium_turf"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mycelium_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mycelium_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/mycelium_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/mycelium_stairs.json new file mode 100644 index 000000000..d641bdb43 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/mycelium_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:mycelium_turf"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:mycelium_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:mycelium_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nether_brick_fence_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/nether_brick_fence_gate.json new file mode 100644 index 000000000..011509b61 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nether_brick_fence_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:nether_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nether_brick_fence_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nether_brick_fence_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nether_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/nether_brick_wall_gate.json new file mode 100644 index 000000000..6d4fdc0e3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nether_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:nether_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nether_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nether_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/netherite_bars.json b/common/src/main/resources/data/pyrite/advancements/recipes/netherite_bars.json new file mode 100644 index 000000000..b24d2e5f4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/netherite_bars.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_netherite"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:netherite_bars"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:netherite_bars"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/netherite_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/netherite_button.json new file mode 100644 index 000000000..6edcdc543 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/netherite_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:netherite_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:netherite_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:netherite_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/netherite_door.json b/common/src/main/resources/data/pyrite/advancements/recipes/netherite_door.json new file mode 100644 index 000000000..b84528da9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/netherite_door.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:netherite_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:netherite_door"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:netherite_door"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/netherite_pillar.json b/common/src/main/resources/data/pyrite/advancements/recipes/netherite_pillar.json new file mode 100644 index 000000000..bc871cc0c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/netherite_pillar.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:netherite_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:netherite_pillar"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:netherite_pillar"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/netherite_pressure_plate.json b/common/src/main/resources/data/pyrite/advancements/recipes/netherite_pressure_plate.json new file mode 100644 index 000000000..a3062beb0 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/netherite_pressure_plate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:netherite_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:netherite_pressure_plate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:netherite_pressure_plate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/netherite_trapdoor.json b/common/src/main/resources/data/pyrite/advancements/recipes/netherite_trapdoor.json new file mode 100644 index 000000000..9f7a5e244 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/netherite_trapdoor.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:netherite_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:netherite_trapdoor"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:netherite_trapdoor"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_amethyst_block.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_amethyst_block.json new file mode 100644 index 000000000..0de7ab8c7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_amethyst_block.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:amethyst_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_amethyst_block"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_amethyst_block"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_brick_slab.json new file mode 100644 index 000000000..125f19e94 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:nostalgia_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_brick_stairs.json new file mode 100644 index 000000000..2b2a64300 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:nostalgia_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_brick_wall.json new file mode 100644 index 000000000..f9224c6c5 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:nostalgia_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_brick_wall_gate.json new file mode 100644 index 000000000..719ba6518 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:nostalgia_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_bricks.json new file mode 100644 index 000000000..e69bc1ad7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_carpet.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_carpet.json new file mode 100644 index 000000000..d65c9f09b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_carpet.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:nostalgia_wool"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_carpet"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_carpet"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_concrete_powder.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_concrete_powder.json new file mode 100644 index 000000000..b0868ae37 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_concrete_powder.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:nostalgia_dye"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_concrete_powder"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_concrete_powder"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_concrete_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_concrete_slab.json new file mode 100644 index 000000000..bc0457b9c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_concrete_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:nostalgia_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_concrete_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_concrete_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_concrete_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_concrete_stairs.json new file mode 100644 index 000000000..38a69822d --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_concrete_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:nostalgia_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_concrete_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_concrete_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_copper_block.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_copper_block.json new file mode 100644 index 000000000..3a2b876f5 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_copper_block.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:copper_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_copper_block"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_copper_block"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_diamond_block.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_diamond_block.json new file mode 100644 index 000000000..18c99abb1 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_diamond_block.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:diamond_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_diamond_block"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_diamond_block"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_dye.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_dye.json new file mode 100644 index 000000000..405d8ffda --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_dye.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:apple"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_dye"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_dye"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_emerald_block.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_emerald_block.json new file mode 100644 index 000000000..c8d5168db --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_emerald_block.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:emerald_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_emerald_block"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_emerald_block"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_exposed_copper_block.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_exposed_copper_block.json new file mode 100644 index 000000000..aea4648c7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_exposed_copper_block.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:exposed_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_exposed_copper_block"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_exposed_copper_block"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_framed_glass.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_framed_glass.json new file mode 100644 index 000000000..318f72ad1 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_framed_glass.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_framed_glass"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_framed_glass"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_framed_glass_pane.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_framed_glass_pane.json new file mode 100644 index 000000000..a23c95797 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_framed_glass_pane.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:nostalgia_framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_framed_glass_pane"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_framed_glass_pane"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_gold_block.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_gold_block.json new file mode 100644 index 000000000..6492cf8fb --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_gold_block.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:gold_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_gold_block"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_gold_block"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_grass_block.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_grass_block.json new file mode 100644 index 000000000..233c3c3ce --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_grass_block.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:grass_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_grass_block"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_grass_block"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_grass_carpet.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_grass_carpet.json new file mode 100644 index 000000000..b20f1328b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_grass_carpet.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:nostalgia_grass_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_grass_carpet"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_grass_carpet"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_grass_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_grass_slab.json new file mode 100644 index 000000000..4ea9544d2 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_grass_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:nostalgia_grass_turf"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_grass_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_grass_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_grass_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_grass_stairs.json new file mode 100644 index 000000000..ea8f53253 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_grass_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:nostalgia_grass_turf"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_grass_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_grass_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_iron_block.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_iron_block.json new file mode 100644 index 000000000..cc6406f1b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_iron_block.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:iron_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_iron_block"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_iron_block"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_lamp.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_lamp.json new file mode 100644 index 000000000..6abbce472 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_lamp.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glowstone_lamp"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_lamp"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_lamp"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_lapis_block.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_lapis_block.json new file mode 100644 index 000000000..a7bc4dcd7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_lapis_block.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:lapis_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_lapis_block"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_lapis_block"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_netherite_block.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_netherite_block.json new file mode 100644 index 000000000..172bcc21f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_netherite_block.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:netherite_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_netherite_block"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_netherite_block"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_oxidized_copper_block.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_oxidized_copper_block.json new file mode 100644 index 000000000..7826dd285 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_oxidized_copper_block.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:oxidized_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_oxidized_copper_block"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_oxidized_copper_block"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_quartz_block.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_quartz_block.json new file mode 100644 index 000000000..a193bdeb3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_quartz_block.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:quartz_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_quartz_block"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_quartz_block"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_redstone_block.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_redstone_block.json new file mode 100644 index 000000000..3c185e8b5 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_redstone_block.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:redstone_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_redstone_block"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_redstone_block"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_button.json new file mode 100644 index 000000000..4cafd6c9e --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:nostalgia_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_stained_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_stained_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_crafting_table.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_crafting_table.json new file mode 100644 index 000000000..b8f8743f0 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_crafting_table.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:nostalgia_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_stained_crafting_table"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_stained_crafting_table"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_door.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_door.json new file mode 100644 index 000000000..558f48c58 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_door.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:nostalgia_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_stained_door"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_stained_door"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_fence.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_fence.json new file mode 100644 index 000000000..ffcabd051 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_fence.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:nostalgia_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_stained_fence"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_stained_fence"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_fence_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_fence_gate.json new file mode 100644 index 000000000..79678ae29 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_fence_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:nostalgia_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_stained_fence_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_stained_fence_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_hanging_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_hanging_sign.json new file mode 100644 index 000000000..5ae1511c6 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_hanging_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:nostalgia_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_stained_hanging_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_stained_hanging_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_ladder.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_ladder.json new file mode 100644 index 000000000..c1610fdbc --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_ladder.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:nostalgia_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_stained_ladder"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_stained_ladder"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_planks.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_planks.json new file mode 100644 index 000000000..47ddeff26 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_planks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"#minecraft:planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_stained_planks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_stained_planks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_pressure_plate.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_pressure_plate.json new file mode 100644 index 000000000..e3d7a0ce3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_pressure_plate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:nostalgia_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_stained_pressure_plate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_stained_pressure_plate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_sign.json new file mode 100644 index 000000000..2cc140ad7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:nostalgia_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_stained_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_stained_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_slab.json new file mode 100644 index 000000000..600dc89c8 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:nostalgia_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_stained_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_stained_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_stairs.json new file mode 100644 index 000000000..9048a0669 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:nostalgia_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_stained_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_stained_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_trapdoor.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_trapdoor.json new file mode 100644 index 000000000..d03889dde --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_stained_trapdoor.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:nostalgia_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_stained_trapdoor"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_stained_trapdoor"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_terracotta.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_terracotta.json new file mode 100644 index 000000000..2ea9608ec --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_terracotta.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:nostalgia_dye"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_terracotta"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_terracotta"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_terracotta_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_terracotta_brick_slab.json new file mode 100644 index 000000000..4b51acf00 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_terracotta_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:nostalgia_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_terracotta_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_terracotta_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_terracotta_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_terracotta_brick_stairs.json new file mode 100644 index 000000000..bf9def6a4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_terracotta_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:nostalgia_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_terracotta_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_terracotta_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_terracotta_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_terracotta_brick_wall.json new file mode 100644 index 000000000..c09024d1c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_terracotta_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:nostalgia_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_terracotta_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_terracotta_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_terracotta_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_terracotta_brick_wall_gate.json new file mode 100644 index 000000000..9c3bda4a9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_terracotta_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:nostalgia_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_terracotta_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_terracotta_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_terracotta_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_terracotta_bricks.json new file mode 100644 index 000000000..0e073cea4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_terracotta_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:nostalgia_terracotta"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_terracotta_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_terracotta_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_torch.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_torch.json new file mode 100644 index 000000000..066957fb6 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_torch.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_torch"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_torch"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_torch_lever.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_torch_lever.json new file mode 100644 index 000000000..eef2cac24 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_torch_lever.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:nostalgia_torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_torch_lever"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_torch_lever"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_weathered_copper_block.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_weathered_copper_block.json new file mode 100644 index 000000000..1f37b2c0a --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_weathered_copper_block.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:weathered_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_weathered_copper_block"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_weathered_copper_block"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_wool.json b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_wool.json new file mode 100644 index 000000000..f2425eb14 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/nostalgia_wool.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:nostalgia_dye"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:nostalgia_wool"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:nostalgia_wool"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/orange_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/orange_brick_slab.json new file mode 100644 index 000000000..7725ff0ca --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/orange_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:orange_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:orange_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:orange_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/orange_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/orange_brick_stairs.json new file mode 100644 index 000000000..f2748b0a3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/orange_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:orange_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:orange_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:orange_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/orange_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/orange_brick_wall.json new file mode 100644 index 000000000..cf1a64eee --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/orange_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:orange_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:orange_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:orange_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/orange_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/orange_brick_wall_gate.json new file mode 100644 index 000000000..7ae8e5bb6 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/orange_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:orange_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:orange_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:orange_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/orange_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/orange_bricks.json new file mode 100644 index 000000000..5eb8902ef --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/orange_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:orange_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:orange_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/orange_concrete_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/orange_concrete_slab.json new file mode 100644 index 000000000..09392327f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/orange_concrete_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:orange_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:orange_concrete_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:orange_concrete_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/orange_concrete_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/orange_concrete_stairs.json new file mode 100644 index 000000000..a67d89ec8 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/orange_concrete_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:orange_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:orange_concrete_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:orange_concrete_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/orange_framed_glass.json b/common/src/main/resources/data/pyrite/advancements/recipes/orange_framed_glass.json new file mode 100644 index 000000000..29e2562f8 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/orange_framed_glass.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:orange_framed_glass"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:orange_framed_glass"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/orange_framed_glass_pane.json b/common/src/main/resources/data/pyrite/advancements/recipes/orange_framed_glass_pane.json new file mode 100644 index 000000000..77dde4215 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/orange_framed_glass_pane.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:orange_framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:orange_framed_glass_pane"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:orange_framed_glass_pane"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/orange_lamp.json b/common/src/main/resources/data/pyrite/advancements/recipes/orange_lamp.json new file mode 100644 index 000000000..e5c1b330c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/orange_lamp.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glowstone_lamp"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:orange_lamp"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:orange_lamp"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/orange_rose.json b/common/src/main/resources/data/pyrite/advancements/recipes/orange_rose.json new file mode 100644 index 000000000..aa7503490 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/orange_rose.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:poppy"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:orange_rose"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:orange_rose"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_button.json new file mode 100644 index 000000000..e8e9917c3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:orange_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:orange_stained_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:orange_stained_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_crafting_table.json b/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_crafting_table.json new file mode 100644 index 000000000..d4e07830a --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_crafting_table.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:orange_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:orange_stained_crafting_table"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:orange_stained_crafting_table"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_door.json b/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_door.json new file mode 100644 index 000000000..7d9cf5c50 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_door.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:orange_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:orange_stained_door"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:orange_stained_door"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_fence.json b/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_fence.json new file mode 100644 index 000000000..5f20bbfe4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_fence.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:orange_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:orange_stained_fence"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:orange_stained_fence"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_fence_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_fence_gate.json new file mode 100644 index 000000000..d7b43880a --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_fence_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:orange_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:orange_stained_fence_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:orange_stained_fence_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_hanging_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_hanging_sign.json new file mode 100644 index 000000000..d652bfb65 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_hanging_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:orange_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:orange_stained_hanging_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:orange_stained_hanging_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_ladder.json b/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_ladder.json new file mode 100644 index 000000000..eec0098a2 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_ladder.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:orange_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:orange_stained_ladder"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:orange_stained_ladder"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_planks.json b/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_planks.json new file mode 100644 index 000000000..7d1c2b65a --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_planks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"#minecraft:planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:orange_stained_planks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:orange_stained_planks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_pressure_plate.json b/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_pressure_plate.json new file mode 100644 index 000000000..ae2d1045a --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_pressure_plate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:orange_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:orange_stained_pressure_plate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:orange_stained_pressure_plate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_sign.json new file mode 100644 index 000000000..33f11437d --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:orange_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:orange_stained_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:orange_stained_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_slab.json new file mode 100644 index 000000000..e8cd03dd7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:orange_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:orange_stained_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:orange_stained_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_stairs.json new file mode 100644 index 000000000..e8c8dfcb2 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:orange_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:orange_stained_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:orange_stained_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_trapdoor.json b/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_trapdoor.json new file mode 100644 index 000000000..ca7270481 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/orange_stained_trapdoor.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:orange_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:orange_stained_trapdoor"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:orange_stained_trapdoor"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/orange_terracotta_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/orange_terracotta_brick_slab.json new file mode 100644 index 000000000..a0352986c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/orange_terracotta_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:orange_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:orange_terracotta_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:orange_terracotta_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/orange_terracotta_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/orange_terracotta_brick_stairs.json new file mode 100644 index 000000000..a769885a5 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/orange_terracotta_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:orange_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:orange_terracotta_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:orange_terracotta_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/orange_terracotta_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/orange_terracotta_brick_wall.json new file mode 100644 index 000000000..bee5c1d82 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/orange_terracotta_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:orange_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:orange_terracotta_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:orange_terracotta_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/orange_terracotta_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/orange_terracotta_brick_wall_gate.json new file mode 100644 index 000000000..a556aa415 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/orange_terracotta_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:orange_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:orange_terracotta_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:orange_terracotta_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/orange_terracotta_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/orange_terracotta_bricks.json new file mode 100644 index 000000000..b04ea3aa5 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/orange_terracotta_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:orange_terracotta"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:orange_terracotta_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:orange_terracotta_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/orange_torch.json b/common/src/main/resources/data/pyrite/advancements/recipes/orange_torch.json new file mode 100644 index 000000000..67db1c233 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/orange_torch.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:orange_torch"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:orange_torch"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/orange_torch_lever.json b/common/src/main/resources/data/pyrite/advancements/recipes/orange_torch_lever.json new file mode 100644 index 000000000..e520e8a11 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/orange_torch_lever.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:orange_torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:orange_torch_lever"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:orange_torch_lever"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/oxidized_copper_bars.json b/common/src/main/resources/data/pyrite/advancements/recipes/oxidized_copper_bars.json new file mode 100644 index 000000000..de8a74752 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/oxidized_copper_bars.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:oxidized_cut_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:oxidized_copper_bars"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:oxidized_copper_bars"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/oxidized_copper_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/oxidized_copper_button.json new file mode 100644 index 000000000..156995642 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/oxidized_copper_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:oxidized_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:oxidized_copper_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:oxidized_copper_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/oxidized_copper_door.json b/common/src/main/resources/data/pyrite/advancements/recipes/oxidized_copper_door.json new file mode 100644 index 000000000..8529dbdac --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/oxidized_copper_door.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:oxidized_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:oxidized_copper_door"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:oxidized_copper_door"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/oxidized_copper_pillar.json b/common/src/main/resources/data/pyrite/advancements/recipes/oxidized_copper_pillar.json new file mode 100644 index 000000000..52106f461 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/oxidized_copper_pillar.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:oxidized_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:oxidized_copper_pillar"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:oxidized_copper_pillar"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/oxidized_copper_pressure_plate.json b/common/src/main/resources/data/pyrite/advancements/recipes/oxidized_copper_pressure_plate.json new file mode 100644 index 000000000..30f804170 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/oxidized_copper_pressure_plate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:oxidized_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:oxidized_copper_pressure_plate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:oxidized_copper_pressure_plate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/oxidized_copper_trapdoor.json b/common/src/main/resources/data/pyrite/advancements/recipes/oxidized_copper_trapdoor.json new file mode 100644 index 000000000..1d690b07f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/oxidized_copper_trapdoor.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:oxidized_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:oxidized_copper_trapdoor"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:oxidized_copper_trapdoor"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/paeonia.json b/common/src/main/resources/data/pyrite/advancements/recipes/paeonia.json new file mode 100644 index 000000000..23c015f99 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/paeonia.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:poppy"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:paeonia"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:paeonia"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/path_carpet.json b/common/src/main/resources/data/pyrite/advancements/recipes/path_carpet.json new file mode 100644 index 000000000..f5d0b599e --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/path_carpet.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:dirt_path"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:path_carpet"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:path_carpet"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/path_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/path_slab.json new file mode 100644 index 000000000..a737abc8b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/path_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:path_turf"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:path_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:path_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/path_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/path_stairs.json new file mode 100644 index 000000000..c260a463a --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/path_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:path_turf"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:path_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:path_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/pink_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/pink_brick_slab.json new file mode 100644 index 000000000..f604d9ca4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/pink_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:pink_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:pink_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:pink_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/pink_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/pink_brick_stairs.json new file mode 100644 index 000000000..c574b99ed --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/pink_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:pink_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:pink_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:pink_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/pink_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/pink_brick_wall.json new file mode 100644 index 000000000..4592704bc --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/pink_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:pink_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:pink_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:pink_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/pink_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/pink_brick_wall_gate.json new file mode 100644 index 000000000..4c30135d9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/pink_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:pink_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:pink_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:pink_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/pink_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/pink_bricks.json new file mode 100644 index 000000000..7c885cd25 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/pink_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:pink_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:pink_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/pink_concrete_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/pink_concrete_slab.json new file mode 100644 index 000000000..d923fe49d --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/pink_concrete_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:pink_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:pink_concrete_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:pink_concrete_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/pink_concrete_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/pink_concrete_stairs.json new file mode 100644 index 000000000..81bd909ad --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/pink_concrete_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:pink_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:pink_concrete_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:pink_concrete_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/pink_daisy.json b/common/src/main/resources/data/pyrite/advancements/recipes/pink_daisy.json new file mode 100644 index 000000000..b0d1cdbbe --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/pink_daisy.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:poppy"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:pink_daisy"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:pink_daisy"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/pink_framed_glass.json b/common/src/main/resources/data/pyrite/advancements/recipes/pink_framed_glass.json new file mode 100644 index 000000000..9f97b2708 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/pink_framed_glass.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:pink_framed_glass"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:pink_framed_glass"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/pink_framed_glass_pane.json b/common/src/main/resources/data/pyrite/advancements/recipes/pink_framed_glass_pane.json new file mode 100644 index 000000000..e53178020 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/pink_framed_glass_pane.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:pink_framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:pink_framed_glass_pane"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:pink_framed_glass_pane"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/pink_lamp.json b/common/src/main/resources/data/pyrite/advancements/recipes/pink_lamp.json new file mode 100644 index 000000000..519248a48 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/pink_lamp.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glowstone_lamp"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:pink_lamp"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:pink_lamp"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/pink_rose.json b/common/src/main/resources/data/pyrite/advancements/recipes/pink_rose.json new file mode 100644 index 000000000..1bde8b776 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/pink_rose.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:poppy"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:pink_rose"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:pink_rose"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_button.json new file mode 100644 index 000000000..532d3bdce --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:pink_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:pink_stained_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:pink_stained_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_crafting_table.json b/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_crafting_table.json new file mode 100644 index 000000000..0b8f63a0c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_crafting_table.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:pink_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:pink_stained_crafting_table"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:pink_stained_crafting_table"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_door.json b/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_door.json new file mode 100644 index 000000000..1ccf39896 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_door.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:pink_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:pink_stained_door"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:pink_stained_door"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_fence.json b/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_fence.json new file mode 100644 index 000000000..9e3c00566 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_fence.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:pink_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:pink_stained_fence"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:pink_stained_fence"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_fence_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_fence_gate.json new file mode 100644 index 000000000..718eced88 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_fence_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:pink_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:pink_stained_fence_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:pink_stained_fence_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_hanging_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_hanging_sign.json new file mode 100644 index 000000000..f72279f40 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_hanging_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:pink_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:pink_stained_hanging_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:pink_stained_hanging_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_ladder.json b/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_ladder.json new file mode 100644 index 000000000..2573614bc --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_ladder.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:pink_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:pink_stained_ladder"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:pink_stained_ladder"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_planks.json b/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_planks.json new file mode 100644 index 000000000..183a05982 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_planks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"#minecraft:planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:pink_stained_planks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:pink_stained_planks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_pressure_plate.json b/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_pressure_plate.json new file mode 100644 index 000000000..c4f892970 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_pressure_plate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:pink_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:pink_stained_pressure_plate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:pink_stained_pressure_plate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_sign.json new file mode 100644 index 000000000..93d3d1101 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:pink_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:pink_stained_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:pink_stained_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_slab.json new file mode 100644 index 000000000..a2aaf55ab --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:pink_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:pink_stained_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:pink_stained_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_stairs.json new file mode 100644 index 000000000..899f20318 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:pink_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:pink_stained_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:pink_stained_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_trapdoor.json b/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_trapdoor.json new file mode 100644 index 000000000..890295cd2 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/pink_stained_trapdoor.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:pink_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:pink_stained_trapdoor"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:pink_stained_trapdoor"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/pink_terracotta_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/pink_terracotta_brick_slab.json new file mode 100644 index 000000000..3c9e302a7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/pink_terracotta_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:pink_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:pink_terracotta_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:pink_terracotta_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/pink_terracotta_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/pink_terracotta_brick_stairs.json new file mode 100644 index 000000000..d79721394 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/pink_terracotta_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:pink_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:pink_terracotta_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:pink_terracotta_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/pink_terracotta_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/pink_terracotta_brick_wall.json new file mode 100644 index 000000000..57d59ffed --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/pink_terracotta_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:pink_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:pink_terracotta_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:pink_terracotta_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/pink_terracotta_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/pink_terracotta_brick_wall_gate.json new file mode 100644 index 000000000..6efba6ea9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/pink_terracotta_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:pink_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:pink_terracotta_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:pink_terracotta_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/pink_terracotta_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/pink_terracotta_bricks.json new file mode 100644 index 000000000..39be68e32 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/pink_terracotta_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:pink_terracotta"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:pink_terracotta_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:pink_terracotta_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/pink_torch.json b/common/src/main/resources/data/pyrite/advancements/recipes/pink_torch.json new file mode 100644 index 000000000..ab79a65dc --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/pink_torch.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:pink_torch"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:pink_torch"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/pink_torch_lever.json b/common/src/main/resources/data/pyrite/advancements/recipes/pink_torch_lever.json new file mode 100644 index 000000000..f14e5573d --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/pink_torch_lever.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:pink_torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:pink_torch_lever"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:pink_torch_lever"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/podzol_carpet.json b/common/src/main/resources/data/pyrite/advancements/recipes/podzol_carpet.json new file mode 100644 index 000000000..7abb2cdad --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/podzol_carpet.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:podzol"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:podzol_carpet"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:podzol_carpet"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/podzol_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/podzol_slab.json new file mode 100644 index 000000000..3bc26d666 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/podzol_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:podzol_turf"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:podzol_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:podzol_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/podzol_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/podzol_stairs.json new file mode 100644 index 000000000..083b4ed82 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/podzol_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:podzol_turf"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:podzol_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:podzol_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_brick_slab.json new file mode 100644 index 000000000..1afa391da --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:poisonous_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:poisonous_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:poisonous_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_brick_stairs.json new file mode 100644 index 000000000..52d44b24b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:poisonous_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:poisonous_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:poisonous_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_brick_wall.json new file mode 100644 index 000000000..e346ea9a9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:poisonous_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:poisonous_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:poisonous_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_brick_wall_gate.json new file mode 100644 index 000000000..0d008e742 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:poisonous_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:poisonous_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:poisonous_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_bricks.json new file mode 100644 index 000000000..3bf2daa1b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:poisonous_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:poisonous_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_carpet.json b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_carpet.json new file mode 100644 index 000000000..d480db0e7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_carpet.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:poisonous_wool"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:poisonous_carpet"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:poisonous_carpet"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_concrete_powder.json b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_concrete_powder.json new file mode 100644 index 000000000..878e92c83 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_concrete_powder.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:poisonous_dye"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:poisonous_concrete_powder"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:poisonous_concrete_powder"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_concrete_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_concrete_slab.json new file mode 100644 index 000000000..d9cc2038e --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_concrete_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:poisonous_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:poisonous_concrete_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:poisonous_concrete_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_concrete_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_concrete_stairs.json new file mode 100644 index 000000000..7cd2ca7cf --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_concrete_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:poisonous_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:poisonous_concrete_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:poisonous_concrete_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_dye.json b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_dye.json new file mode 100644 index 000000000..584364f77 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_dye.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:poisonous_potato"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:poisonous_dye"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:poisonous_dye"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_framed_glass.json b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_framed_glass.json new file mode 100644 index 000000000..b743a06ed --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_framed_glass.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:poisonous_framed_glass"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:poisonous_framed_glass"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_framed_glass_pane.json b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_framed_glass_pane.json new file mode 100644 index 000000000..0adf5f781 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_framed_glass_pane.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:poisonous_framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:poisonous_framed_glass_pane"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:poisonous_framed_glass_pane"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_lamp.json b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_lamp.json new file mode 100644 index 000000000..a288643cc --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_lamp.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glowstone_lamp"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:poisonous_lamp"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:poisonous_lamp"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_button.json new file mode 100644 index 000000000..8e56c282b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:poisonous_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:poisonous_stained_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:poisonous_stained_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_crafting_table.json b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_crafting_table.json new file mode 100644 index 000000000..5eec79fa7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_crafting_table.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:poisonous_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:poisonous_stained_crafting_table"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:poisonous_stained_crafting_table"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_door.json b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_door.json new file mode 100644 index 000000000..7ba0037db --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_door.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:poisonous_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:poisonous_stained_door"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:poisonous_stained_door"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_fence.json b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_fence.json new file mode 100644 index 000000000..906e819c2 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_fence.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:poisonous_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:poisonous_stained_fence"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:poisonous_stained_fence"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_fence_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_fence_gate.json new file mode 100644 index 000000000..1e714d518 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_fence_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:poisonous_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:poisonous_stained_fence_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:poisonous_stained_fence_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_hanging_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_hanging_sign.json new file mode 100644 index 000000000..beed51dc4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_hanging_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:poisonous_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:poisonous_stained_hanging_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:poisonous_stained_hanging_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_ladder.json b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_ladder.json new file mode 100644 index 000000000..6a4d6c6d5 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_ladder.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:poisonous_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:poisonous_stained_ladder"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:poisonous_stained_ladder"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_planks.json b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_planks.json new file mode 100644 index 000000000..234dc81d9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_planks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"#minecraft:planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:poisonous_stained_planks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:poisonous_stained_planks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_pressure_plate.json b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_pressure_plate.json new file mode 100644 index 000000000..615827ca1 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_pressure_plate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:poisonous_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:poisonous_stained_pressure_plate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:poisonous_stained_pressure_plate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_sign.json new file mode 100644 index 000000000..761e70bd4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:poisonous_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:poisonous_stained_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:poisonous_stained_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_slab.json new file mode 100644 index 000000000..744c711db --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:poisonous_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:poisonous_stained_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:poisonous_stained_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_stairs.json new file mode 100644 index 000000000..eace312ff --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:poisonous_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:poisonous_stained_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:poisonous_stained_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_trapdoor.json b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_trapdoor.json new file mode 100644 index 000000000..e72302d20 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_stained_trapdoor.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:poisonous_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:poisonous_stained_trapdoor"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:poisonous_stained_trapdoor"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_terracotta.json b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_terracotta.json new file mode 100644 index 000000000..7e9cb589c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_terracotta.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:poisonous_dye"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:poisonous_terracotta"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:poisonous_terracotta"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_terracotta_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_terracotta_brick_slab.json new file mode 100644 index 000000000..d9a978d46 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_terracotta_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:poisonous_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:poisonous_terracotta_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:poisonous_terracotta_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_terracotta_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_terracotta_brick_stairs.json new file mode 100644 index 000000000..7dcca3666 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_terracotta_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:poisonous_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:poisonous_terracotta_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:poisonous_terracotta_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_terracotta_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_terracotta_brick_wall.json new file mode 100644 index 000000000..3692e7be5 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_terracotta_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:poisonous_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:poisonous_terracotta_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:poisonous_terracotta_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_terracotta_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_terracotta_brick_wall_gate.json new file mode 100644 index 000000000..7fe86ee97 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_terracotta_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:poisonous_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:poisonous_terracotta_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:poisonous_terracotta_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_terracotta_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_terracotta_bricks.json new file mode 100644 index 000000000..f658d2de0 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_terracotta_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:poisonous_terracotta"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:poisonous_terracotta_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:poisonous_terracotta_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_torch.json b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_torch.json new file mode 100644 index 000000000..d74261fa3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_torch.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:poisonous_torch"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:poisonous_torch"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_torch_lever.json b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_torch_lever.json new file mode 100644 index 000000000..15a93e878 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_torch_lever.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:poisonous_torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:poisonous_torch_lever"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:poisonous_torch_lever"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_wool.json b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_wool.json new file mode 100644 index 000000000..0898b7251 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/poisonous_wool.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:poisonous_dye"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:poisonous_wool"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:poisonous_wool"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/polished_blackstone_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/polished_blackstone_brick_wall_gate.json new file mode 100644 index 000000000..04b13002e --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/polished_blackstone_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:polished_blackstone_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:polished_blackstone_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:polished_blackstone_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/polished_blackstone_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/polished_blackstone_wall_gate.json new file mode 100644 index 000000000..05fd6c69d --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/polished_blackstone_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:polished_blackstone"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:polished_blackstone_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:polished_blackstone_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/polished_deepslate_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/polished_deepslate_wall_gate.json new file mode 100644 index 000000000..23bf07040 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/polished_deepslate_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:polished_deepslate"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:polished_deepslate_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:polished_deepslate_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/prismarine_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/prismarine_wall_gate.json new file mode 100644 index 000000000..13b531f0c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/prismarine_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:prismarine"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:prismarine_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:prismarine_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/purple_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/purple_brick_slab.json new file mode 100644 index 000000000..70e58e6ac --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/purple_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:purple_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:purple_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:purple_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/purple_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/purple_brick_stairs.json new file mode 100644 index 000000000..567d58946 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/purple_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:purple_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:purple_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:purple_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/purple_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/purple_brick_wall.json new file mode 100644 index 000000000..0a4c68d6a --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/purple_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:purple_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:purple_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:purple_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/purple_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/purple_brick_wall_gate.json new file mode 100644 index 000000000..d3f1324a2 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/purple_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:purple_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:purple_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:purple_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/purple_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/purple_bricks.json new file mode 100644 index 000000000..fe4a7317f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/purple_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:purple_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:purple_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/purple_concrete_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/purple_concrete_slab.json new file mode 100644 index 000000000..ce6422202 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/purple_concrete_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:purple_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:purple_concrete_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:purple_concrete_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/purple_concrete_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/purple_concrete_stairs.json new file mode 100644 index 000000000..9c53de799 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/purple_concrete_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:purple_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:purple_concrete_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:purple_concrete_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/purple_framed_glass.json b/common/src/main/resources/data/pyrite/advancements/recipes/purple_framed_glass.json new file mode 100644 index 000000000..33eefde49 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/purple_framed_glass.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:purple_framed_glass"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:purple_framed_glass"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/purple_framed_glass_pane.json b/common/src/main/resources/data/pyrite/advancements/recipes/purple_framed_glass_pane.json new file mode 100644 index 000000000..49640367b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/purple_framed_glass_pane.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:purple_framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:purple_framed_glass_pane"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:purple_framed_glass_pane"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/purple_lamp.json b/common/src/main/resources/data/pyrite/advancements/recipes/purple_lamp.json new file mode 100644 index 000000000..b6f0446e8 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/purple_lamp.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glowstone_lamp"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:purple_lamp"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:purple_lamp"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_button.json new file mode 100644 index 000000000..efd685863 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:purple_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:purple_stained_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:purple_stained_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_crafting_table.json b/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_crafting_table.json new file mode 100644 index 000000000..49b8de4b1 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_crafting_table.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:purple_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:purple_stained_crafting_table"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:purple_stained_crafting_table"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_door.json b/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_door.json new file mode 100644 index 000000000..8f7678bbb --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_door.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:purple_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:purple_stained_door"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:purple_stained_door"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_fence.json b/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_fence.json new file mode 100644 index 000000000..08f91c51a --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_fence.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:purple_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:purple_stained_fence"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:purple_stained_fence"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_fence_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_fence_gate.json new file mode 100644 index 000000000..30eb7cb6c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_fence_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:purple_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:purple_stained_fence_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:purple_stained_fence_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_hanging_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_hanging_sign.json new file mode 100644 index 000000000..69aff7284 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_hanging_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:purple_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:purple_stained_hanging_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:purple_stained_hanging_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_ladder.json b/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_ladder.json new file mode 100644 index 000000000..70e0cef83 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_ladder.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:purple_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:purple_stained_ladder"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:purple_stained_ladder"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_planks.json b/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_planks.json new file mode 100644 index 000000000..f7249593e --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_planks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"#minecraft:planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:purple_stained_planks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:purple_stained_planks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_pressure_plate.json b/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_pressure_plate.json new file mode 100644 index 000000000..bebc1c98e --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_pressure_plate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:purple_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:purple_stained_pressure_plate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:purple_stained_pressure_plate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_sign.json new file mode 100644 index 000000000..5c66946c6 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:purple_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:purple_stained_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:purple_stained_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_slab.json new file mode 100644 index 000000000..aa9a4e5ea --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:purple_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:purple_stained_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:purple_stained_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_stairs.json new file mode 100644 index 000000000..c0c7b3f92 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:purple_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:purple_stained_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:purple_stained_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_trapdoor.json b/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_trapdoor.json new file mode 100644 index 000000000..8901ebd42 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/purple_stained_trapdoor.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:purple_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:purple_stained_trapdoor"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:purple_stained_trapdoor"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/purple_terracotta_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/purple_terracotta_brick_slab.json new file mode 100644 index 000000000..ceb96fd0b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/purple_terracotta_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:purple_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:purple_terracotta_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:purple_terracotta_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/purple_terracotta_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/purple_terracotta_brick_stairs.json new file mode 100644 index 000000000..b4a6390c9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/purple_terracotta_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:purple_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:purple_terracotta_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:purple_terracotta_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/purple_terracotta_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/purple_terracotta_brick_wall.json new file mode 100644 index 000000000..18b42fc80 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/purple_terracotta_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:purple_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:purple_terracotta_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:purple_terracotta_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/purple_terracotta_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/purple_terracotta_brick_wall_gate.json new file mode 100644 index 000000000..c723443f7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/purple_terracotta_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:purple_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:purple_terracotta_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:purple_terracotta_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/purple_terracotta_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/purple_terracotta_bricks.json new file mode 100644 index 000000000..e1e05ec8c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/purple_terracotta_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:purple_terracotta"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:purple_terracotta_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:purple_terracotta_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/purple_torch.json b/common/src/main/resources/data/pyrite/advancements/recipes/purple_torch.json new file mode 100644 index 000000000..e90919ce9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/purple_torch.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:purple_torch"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:purple_torch"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/purple_torch_lever.json b/common/src/main/resources/data/pyrite/advancements/recipes/purple_torch_lever.json new file mode 100644 index 000000000..1d7aed91a --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/purple_torch_lever.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:purple_torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:purple_torch_lever"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:purple_torch_lever"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/quartz_bars.json b/common/src/main/resources/data/pyrite/advancements/recipes/quartz_bars.json new file mode 100644 index 000000000..037fa2331 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/quartz_bars.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_quartz"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:quartz_bars"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:quartz_bars"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/quartz_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/quartz_button.json new file mode 100644 index 000000000..8e1bcbb58 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/quartz_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:quartz_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:quartz_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:quartz_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/quartz_door.json b/common/src/main/resources/data/pyrite/advancements/recipes/quartz_door.json new file mode 100644 index 000000000..8df865d13 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/quartz_door.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:quartz_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:quartz_door"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:quartz_door"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/quartz_pressure_plate.json b/common/src/main/resources/data/pyrite/advancements/recipes/quartz_pressure_plate.json new file mode 100644 index 000000000..7678164ac --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/quartz_pressure_plate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:quartz_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:quartz_pressure_plate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:quartz_pressure_plate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/quartz_trapdoor.json b/common/src/main/resources/data/pyrite/advancements/recipes/quartz_trapdoor.json new file mode 100644 index 000000000..2baab8042 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/quartz_trapdoor.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:quartz_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:quartz_trapdoor"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:quartz_trapdoor"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_brick_slab.json new file mode 100644 index 000000000..a4e00723e --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:red_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_brick_stairs.json new file mode 100644 index 000000000..aa5f4b709 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:red_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_brick_wall.json new file mode 100644 index 000000000..2ba715a03 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:red_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_brick_wall_gate.json new file mode 100644 index 000000000..4ac7aa1b4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:red_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_bricks.json new file mode 100644 index 000000000..4c4eb4584 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_concrete_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_concrete_slab.json new file mode 100644 index 000000000..939e1a886 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_concrete_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:red_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_concrete_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_concrete_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_concrete_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_concrete_stairs.json new file mode 100644 index 000000000..11dcae8bf --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_concrete_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:red_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_concrete_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_concrete_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_framed_glass.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_framed_glass.json new file mode 100644 index 000000000..93499e3fe --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_framed_glass.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_framed_glass"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_framed_glass"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_framed_glass_pane.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_framed_glass_pane.json new file mode 100644 index 000000000..56054a350 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_framed_glass_pane.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:red_framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_framed_glass_pane"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_framed_glass_pane"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_lamp.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_lamp.json new file mode 100644 index 000000000..fcc8ab779 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_lamp.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glowstone_lamp"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_lamp"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_lamp"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_button.json new file mode 100644 index 000000000..23175afc8 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:red_mushroom_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_mushroom_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_mushroom_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_crafting_table.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_crafting_table.json new file mode 100644 index 000000000..2d1367a81 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_crafting_table.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:red_mushroom_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_mushroom_crafting_table"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_mushroom_crafting_table"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_door.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_door.json new file mode 100644 index 000000000..103a35803 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_door.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:red_mushroom_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_mushroom_door"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_mushroom_door"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_fence.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_fence.json new file mode 100644 index 000000000..2309c4af9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_fence.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:red_mushroom_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_mushroom_fence"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_mushroom_fence"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_fence_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_fence_gate.json new file mode 100644 index 000000000..1fdddca43 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_fence_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:red_mushroom_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_mushroom_fence_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_mushroom_fence_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_hanging_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_hanging_sign.json new file mode 100644 index 000000000..b1b5ba5a2 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_hanging_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:red_mushroom_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_mushroom_hanging_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_mushroom_hanging_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_ladder.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_ladder.json new file mode 100644 index 000000000..d6593593e --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_ladder.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:red_mushroom_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_mushroom_ladder"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_mushroom_ladder"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_planks.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_planks.json new file mode 100644 index 000000000..8027462bf --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_planks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"#minecraft:planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_mushroom_planks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_mushroom_planks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_pressure_plate.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_pressure_plate.json new file mode 100644 index 000000000..8283d1e38 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_pressure_plate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:red_mushroom_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_mushroom_pressure_plate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_mushroom_pressure_plate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_sign.json new file mode 100644 index 000000000..cb2192e45 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:red_mushroom_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_mushroom_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_mushroom_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_slab.json new file mode 100644 index 000000000..6bca3bcae --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:red_mushroom_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_mushroom_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_mushroom_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_stairs.json new file mode 100644 index 000000000..f4d25a8a9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:red_mushroom_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_mushroom_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_mushroom_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_trapdoor.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_trapdoor.json new file mode 100644 index 000000000..2ef84bbe8 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_mushroom_trapdoor.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:red_mushroom_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_mushroom_trapdoor"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_mushroom_trapdoor"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_nether_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_nether_brick_wall_gate.json new file mode 100644 index 000000000..bc3b1e585 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_nether_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:red_nether_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_nether_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_nether_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_sandstone_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_sandstone_wall_gate.json new file mode 100644 index 000000000..5c016d0c4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_sandstone_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:red_sandstone"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_sandstone_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_sandstone_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_button.json new file mode 100644 index 000000000..9fd4a9891 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:red_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_stained_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_stained_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_crafting_table.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_crafting_table.json new file mode 100644 index 000000000..742792c1c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_crafting_table.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:red_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_stained_crafting_table"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_stained_crafting_table"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_door.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_door.json new file mode 100644 index 000000000..af68b365f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_door.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:red_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_stained_door"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_stained_door"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_fence.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_fence.json new file mode 100644 index 000000000..ae856d88e --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_fence.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:red_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_stained_fence"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_stained_fence"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_fence_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_fence_gate.json new file mode 100644 index 000000000..bdba5eea8 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_fence_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:red_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_stained_fence_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_stained_fence_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_hanging_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_hanging_sign.json new file mode 100644 index 000000000..3ec1cc971 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_hanging_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:red_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_stained_hanging_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_stained_hanging_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_ladder.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_ladder.json new file mode 100644 index 000000000..bc8a80e3f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_ladder.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:red_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_stained_ladder"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_stained_ladder"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_planks.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_planks.json new file mode 100644 index 000000000..f6bd45e4f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_planks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"#minecraft:planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_stained_planks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_stained_planks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_pressure_plate.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_pressure_plate.json new file mode 100644 index 000000000..5af3c04b4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_pressure_plate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:red_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_stained_pressure_plate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_stained_pressure_plate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_sign.json new file mode 100644 index 000000000..c3fe45545 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:red_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_stained_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_stained_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_slab.json new file mode 100644 index 000000000..16663d831 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:red_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_stained_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_stained_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_stairs.json new file mode 100644 index 000000000..b14d6a641 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:red_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_stained_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_stained_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_trapdoor.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_trapdoor.json new file mode 100644 index 000000000..45fc53cf6 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_stained_trapdoor.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:red_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_stained_trapdoor"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_stained_trapdoor"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_terracotta_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_terracotta_brick_slab.json new file mode 100644 index 000000000..39a26314d --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_terracotta_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:red_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_terracotta_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_terracotta_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_terracotta_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_terracotta_brick_stairs.json new file mode 100644 index 000000000..997bf6bf7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_terracotta_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:red_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_terracotta_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_terracotta_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_terracotta_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_terracotta_brick_wall.json new file mode 100644 index 000000000..197c8c9ce --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_terracotta_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:red_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_terracotta_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_terracotta_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_terracotta_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_terracotta_brick_wall_gate.json new file mode 100644 index 000000000..3fcef51bb --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_terracotta_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:red_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_terracotta_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_terracotta_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_terracotta_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_terracotta_bricks.json new file mode 100644 index 000000000..21b5e1931 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_terracotta_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:red_terracotta"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_terracotta_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_terracotta_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_torch.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_torch.json new file mode 100644 index 000000000..63922594c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_torch.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_torch"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_torch"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/red_torch_lever.json b/common/src/main/resources/data/pyrite/advancements/recipes/red_torch_lever.json new file mode 100644 index 000000000..9e1858751 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/red_torch_lever.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:red_torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:red_torch_lever"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:red_torch_lever"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/redstone_bars.json b/common/src/main/resources/data/pyrite/advancements/recipes/redstone_bars.json new file mode 100644 index 000000000..e92f5648a --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/redstone_bars.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:cut_redstone"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:redstone_bars"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:redstone_bars"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/redstone_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/redstone_button.json new file mode 100644 index 000000000..3193ee2b2 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/redstone_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:redstone_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:redstone_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:redstone_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/redstone_door.json b/common/src/main/resources/data/pyrite/advancements/recipes/redstone_door.json new file mode 100644 index 000000000..00344753c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/redstone_door.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:redstone_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:redstone_door"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:redstone_door"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/redstone_pillar.json b/common/src/main/resources/data/pyrite/advancements/recipes/redstone_pillar.json new file mode 100644 index 000000000..65eee7238 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/redstone_pillar.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:redstone_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:redstone_pillar"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:redstone_pillar"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/redstone_pressure_plate.json b/common/src/main/resources/data/pyrite/advancements/recipes/redstone_pressure_plate.json new file mode 100644 index 000000000..600e4ba3b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/redstone_pressure_plate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:redstone_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:redstone_pressure_plate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:redstone_pressure_plate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/redstone_torch_lever.json b/common/src/main/resources/data/pyrite/advancements/recipes/redstone_torch_lever.json new file mode 100644 index 000000000..f397c2731 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/redstone_torch_lever.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:redstone_torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:redstone_torch_lever"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:redstone_torch_lever"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/redstone_trapdoor.json b/common/src/main/resources/data/pyrite/advancements/recipes/redstone_trapdoor.json new file mode 100644 index 000000000..bb7979873 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/redstone_trapdoor.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:redstone_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:redstone_trapdoor"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:redstone_trapdoor"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/rose.json b/common/src/main/resources/data/pyrite/advancements/recipes/rose.json new file mode 100644 index 000000000..e4f4fccb3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/rose.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:poppy"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:rose"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:rose"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/rose_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/rose_brick_slab.json new file mode 100644 index 000000000..8494418af --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/rose_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:rose_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:rose_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:rose_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/rose_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/rose_brick_stairs.json new file mode 100644 index 000000000..da090cf36 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/rose_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:rose_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:rose_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:rose_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/rose_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/rose_brick_wall.json new file mode 100644 index 000000000..61a952ae3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/rose_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:rose_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:rose_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:rose_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/rose_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/rose_brick_wall_gate.json new file mode 100644 index 000000000..44ae47db7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/rose_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:rose_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:rose_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:rose_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/rose_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/rose_bricks.json new file mode 100644 index 000000000..98cb8c38e --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/rose_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:rose_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:rose_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/rose_carpet.json b/common/src/main/resources/data/pyrite/advancements/recipes/rose_carpet.json new file mode 100644 index 000000000..2242be474 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/rose_carpet.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:rose_wool"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:rose_carpet"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:rose_carpet"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/rose_concrete_powder.json b/common/src/main/resources/data/pyrite/advancements/recipes/rose_concrete_powder.json new file mode 100644 index 000000000..1ddc6f127 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/rose_concrete_powder.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:rose_dye"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:rose_concrete_powder"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:rose_concrete_powder"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/rose_concrete_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/rose_concrete_slab.json new file mode 100644 index 000000000..4618c70b9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/rose_concrete_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:rose_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:rose_concrete_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:rose_concrete_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/rose_concrete_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/rose_concrete_stairs.json new file mode 100644 index 000000000..f280fe512 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/rose_concrete_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:rose_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:rose_concrete_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:rose_concrete_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/rose_dye.json b/common/src/main/resources/data/pyrite/advancements/recipes/rose_dye.json new file mode 100644 index 000000000..50b12a29a --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/rose_dye.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:red_dye"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:rose_dye"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:rose_dye"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/rose_framed_glass.json b/common/src/main/resources/data/pyrite/advancements/recipes/rose_framed_glass.json new file mode 100644 index 000000000..3c1cdfd1b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/rose_framed_glass.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:rose_framed_glass"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:rose_framed_glass"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/rose_framed_glass_pane.json b/common/src/main/resources/data/pyrite/advancements/recipes/rose_framed_glass_pane.json new file mode 100644 index 000000000..dba6a4cb0 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/rose_framed_glass_pane.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:rose_framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:rose_framed_glass_pane"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:rose_framed_glass_pane"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/rose_lamp.json b/common/src/main/resources/data/pyrite/advancements/recipes/rose_lamp.json new file mode 100644 index 000000000..8ed5780c6 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/rose_lamp.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glowstone_lamp"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:rose_lamp"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:rose_lamp"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_button.json new file mode 100644 index 000000000..9a431ad76 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:rose_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:rose_stained_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:rose_stained_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_crafting_table.json b/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_crafting_table.json new file mode 100644 index 000000000..afae548e2 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_crafting_table.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:rose_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:rose_stained_crafting_table"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:rose_stained_crafting_table"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_door.json b/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_door.json new file mode 100644 index 000000000..ed829ade3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_door.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:rose_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:rose_stained_door"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:rose_stained_door"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_fence.json b/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_fence.json new file mode 100644 index 000000000..89b94194d --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_fence.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:rose_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:rose_stained_fence"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:rose_stained_fence"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_fence_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_fence_gate.json new file mode 100644 index 000000000..4be404c5c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_fence_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:rose_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:rose_stained_fence_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:rose_stained_fence_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_hanging_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_hanging_sign.json new file mode 100644 index 000000000..99c796115 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_hanging_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:rose_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:rose_stained_hanging_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:rose_stained_hanging_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_ladder.json b/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_ladder.json new file mode 100644 index 000000000..6bd86001c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_ladder.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:rose_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:rose_stained_ladder"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:rose_stained_ladder"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_planks.json b/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_planks.json new file mode 100644 index 000000000..c20a36ca4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_planks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"#minecraft:planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:rose_stained_planks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:rose_stained_planks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_pressure_plate.json b/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_pressure_plate.json new file mode 100644 index 000000000..40f274044 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_pressure_plate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:rose_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:rose_stained_pressure_plate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:rose_stained_pressure_plate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_sign.json new file mode 100644 index 000000000..e423f88a3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:rose_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:rose_stained_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:rose_stained_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_slab.json new file mode 100644 index 000000000..4d093de7f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:rose_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:rose_stained_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:rose_stained_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_stairs.json new file mode 100644 index 000000000..99427242a --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:rose_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:rose_stained_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:rose_stained_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_trapdoor.json b/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_trapdoor.json new file mode 100644 index 000000000..c7e37ee97 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/rose_stained_trapdoor.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:rose_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:rose_stained_trapdoor"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:rose_stained_trapdoor"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/rose_terracotta.json b/common/src/main/resources/data/pyrite/advancements/recipes/rose_terracotta.json new file mode 100644 index 000000000..aa5d0d75a --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/rose_terracotta.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:rose_dye"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:rose_terracotta"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:rose_terracotta"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/rose_terracotta_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/rose_terracotta_brick_slab.json new file mode 100644 index 000000000..4b74d5a62 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/rose_terracotta_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:rose_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:rose_terracotta_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:rose_terracotta_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/rose_terracotta_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/rose_terracotta_brick_stairs.json new file mode 100644 index 000000000..2a342e0dc --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/rose_terracotta_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:rose_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:rose_terracotta_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:rose_terracotta_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/rose_terracotta_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/rose_terracotta_brick_wall.json new file mode 100644 index 000000000..a44434ad1 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/rose_terracotta_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:rose_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:rose_terracotta_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:rose_terracotta_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/rose_terracotta_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/rose_terracotta_brick_wall_gate.json new file mode 100644 index 000000000..ff4c1b949 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/rose_terracotta_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:rose_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:rose_terracotta_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:rose_terracotta_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/rose_terracotta_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/rose_terracotta_bricks.json new file mode 100644 index 000000000..57527ca89 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/rose_terracotta_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:rose_terracotta"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:rose_terracotta_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:rose_terracotta_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/rose_torch.json b/common/src/main/resources/data/pyrite/advancements/recipes/rose_torch.json new file mode 100644 index 000000000..81c464e9f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/rose_torch.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:rose_torch"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:rose_torch"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/rose_torch_lever.json b/common/src/main/resources/data/pyrite/advancements/recipes/rose_torch_lever.json new file mode 100644 index 000000000..488d3c9c0 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/rose_torch_lever.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:rose_torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:rose_torch_lever"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:rose_torch_lever"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/rose_wool.json b/common/src/main/resources/data/pyrite/advancements/recipes/rose_wool.json new file mode 100644 index 000000000..7da7484e9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/rose_wool.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:rose_dye"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:rose_wool"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:rose_wool"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/sandstone_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/sandstone_wall_gate.json new file mode 100644 index 000000000..68270446c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/sandstone_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:sandstone"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:sandstone_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:sandstone_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_amethyst.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_amethyst.json new file mode 100644 index 000000000..0ecf59e7c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_amethyst.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:amethyst_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_amethyst"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_amethyst"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_amethyst_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_amethyst_slab.json new file mode 100644 index 000000000..9477f18e7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_amethyst_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_amethyst"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_amethyst_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_amethyst_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_amethyst_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_amethyst_stairs.json new file mode 100644 index 000000000..0f2a9bccd --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_amethyst_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_amethyst"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_amethyst_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_amethyst_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_amethyst_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_amethyst_wall.json new file mode 100644 index 000000000..672d8aae6 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_amethyst_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_amethyst"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_amethyst_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_amethyst_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_amethyst_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_amethyst_wall_gate.json new file mode 100644 index 000000000..0b15670cc --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_amethyst_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_amethyst"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_amethyst_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_amethyst_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_copper.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_copper.json new file mode 100644 index 000000000..4eebccb5b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_copper.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:copper_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_copper"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_copper"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_copper_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_copper_slab.json new file mode 100644 index 000000000..21a31c2e9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_copper_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_copper_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_copper_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_copper_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_copper_stairs.json new file mode 100644 index 000000000..2207fb2e2 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_copper_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_copper_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_copper_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_copper_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_copper_wall.json new file mode 100644 index 000000000..ccaf2f9e9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_copper_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_copper_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_copper_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_copper_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_copper_wall_gate.json new file mode 100644 index 000000000..a55cabbed --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_copper_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_copper_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_copper_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_diamond.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_diamond.json new file mode 100644 index 000000000..398c2dea4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_diamond.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:diamond_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_diamond"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_diamond"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_diamond_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_diamond_slab.json new file mode 100644 index 000000000..4f4986fbd --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_diamond_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_diamond"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_diamond_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_diamond_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_diamond_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_diamond_stairs.json new file mode 100644 index 000000000..8d0409d1d --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_diamond_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_diamond"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_diamond_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_diamond_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_diamond_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_diamond_wall.json new file mode 100644 index 000000000..7a523763b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_diamond_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_diamond"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_diamond_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_diamond_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_diamond_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_diamond_wall_gate.json new file mode 100644 index 000000000..034870326 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_diamond_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_diamond"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_diamond_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_diamond_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_emerald.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_emerald.json new file mode 100644 index 000000000..1874560ad --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_emerald.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:emerald_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_emerald"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_emerald"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_emerald_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_emerald_slab.json new file mode 100644 index 000000000..2429f1f10 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_emerald_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_emerald"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_emerald_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_emerald_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_emerald_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_emerald_stairs.json new file mode 100644 index 000000000..cb765522d --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_emerald_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_emerald"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_emerald_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_emerald_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_emerald_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_emerald_wall.json new file mode 100644 index 000000000..f01c17a00 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_emerald_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_emerald"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_emerald_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_emerald_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_emerald_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_emerald_wall_gate.json new file mode 100644 index 000000000..f13906181 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_emerald_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_emerald"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_emerald_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_emerald_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_exposed_copper.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_exposed_copper.json new file mode 100644 index 000000000..204c1d356 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_exposed_copper.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:exposed_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_exposed_copper"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_exposed_copper"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_exposed_copper_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_exposed_copper_slab.json new file mode 100644 index 000000000..b1e8acd9f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_exposed_copper_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_exposed_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_exposed_copper_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_exposed_copper_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_exposed_copper_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_exposed_copper_stairs.json new file mode 100644 index 000000000..840a58dd4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_exposed_copper_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_exposed_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_exposed_copper_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_exposed_copper_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_exposed_copper_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_exposed_copper_wall.json new file mode 100644 index 000000000..2495a3a96 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_exposed_copper_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_exposed_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_exposed_copper_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_exposed_copper_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_exposed_copper_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_exposed_copper_wall_gate.json new file mode 100644 index 000000000..b878c464d --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_exposed_copper_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_exposed_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_exposed_copper_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_exposed_copper_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_gold.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_gold.json new file mode 100644 index 000000000..a577917a7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_gold.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:gold_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_gold"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_gold"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_gold_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_gold_slab.json new file mode 100644 index 000000000..90cdcacee --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_gold_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_gold"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_gold_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_gold_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_gold_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_gold_stairs.json new file mode 100644 index 000000000..6802a3ab9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_gold_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_gold"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_gold_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_gold_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_gold_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_gold_wall.json new file mode 100644 index 000000000..f035f2782 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_gold_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_gold"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_gold_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_gold_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_gold_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_gold_wall_gate.json new file mode 100644 index 000000000..fdb560164 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_gold_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_gold"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_gold_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_gold_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_iron.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_iron.json new file mode 100644 index 000000000..fc13320fa --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_iron.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:iron_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_iron"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_iron"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_iron_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_iron_slab.json new file mode 100644 index 000000000..4a4ff7fce --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_iron_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_iron"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_iron_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_iron_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_iron_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_iron_stairs.json new file mode 100644 index 000000000..5ac288359 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_iron_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_iron"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_iron_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_iron_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_iron_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_iron_wall.json new file mode 100644 index 000000000..c0e6558c8 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_iron_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_iron"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_iron_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_iron_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_iron_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_iron_wall_gate.json new file mode 100644 index 000000000..3d03e9c1f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_iron_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_iron"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_iron_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_iron_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_lapis.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_lapis.json new file mode 100644 index 000000000..d8ef82c8c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_lapis.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:lapis_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_lapis"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_lapis"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_lapis_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_lapis_slab.json new file mode 100644 index 000000000..74a7dbebd --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_lapis_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_lapis"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_lapis_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_lapis_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_lapis_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_lapis_stairs.json new file mode 100644 index 000000000..45c82641f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_lapis_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_lapis"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_lapis_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_lapis_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_lapis_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_lapis_wall.json new file mode 100644 index 000000000..bde401d33 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_lapis_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_lapis"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_lapis_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_lapis_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_lapis_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_lapis_wall_gate.json new file mode 100644 index 000000000..ede2518c6 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_lapis_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_lapis"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_lapis_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_lapis_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_netherite.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_netherite.json new file mode 100644 index 000000000..2fc45efad --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_netherite.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:netherite_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_netherite"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_netherite"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_netherite_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_netherite_slab.json new file mode 100644 index 000000000..b3b7dcd76 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_netherite_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_netherite"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_netherite_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_netherite_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_netherite_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_netherite_stairs.json new file mode 100644 index 000000000..86108d815 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_netherite_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_netherite"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_netherite_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_netherite_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_netherite_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_netherite_wall.json new file mode 100644 index 000000000..05d36f980 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_netherite_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_netherite"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_netherite_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_netherite_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_netherite_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_netherite_wall_gate.json new file mode 100644 index 000000000..ad05ec329 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_netherite_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_netherite"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_netherite_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_netherite_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_oxidized_copper.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_oxidized_copper.json new file mode 100644 index 000000000..29e0fbdba --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_oxidized_copper.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:oxidized_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_oxidized_copper"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_oxidized_copper"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_oxidized_copper_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_oxidized_copper_slab.json new file mode 100644 index 000000000..6df01b05a --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_oxidized_copper_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_oxidized_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_oxidized_copper_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_oxidized_copper_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_oxidized_copper_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_oxidized_copper_stairs.json new file mode 100644 index 000000000..da86479cb --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_oxidized_copper_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_oxidized_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_oxidized_copper_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_oxidized_copper_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_oxidized_copper_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_oxidized_copper_wall.json new file mode 100644 index 000000000..007f346ad --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_oxidized_copper_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_oxidized_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_oxidized_copper_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_oxidized_copper_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_oxidized_copper_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_oxidized_copper_wall_gate.json new file mode 100644 index 000000000..39404f256 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_oxidized_copper_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_oxidized_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_oxidized_copper_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_oxidized_copper_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_quartz_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_quartz_wall.json new file mode 100644 index 000000000..41828e93d --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_quartz_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:quartz_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_quartz_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_quartz_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_quartz_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_quartz_wall_gate.json new file mode 100644 index 000000000..6ac252e10 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_quartz_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:quartz_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_quartz_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_quartz_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_redstone.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_redstone.json new file mode 100644 index 000000000..8b07d8072 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_redstone.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:redstone_block"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_redstone"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_redstone"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_redstone_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_redstone_slab.json new file mode 100644 index 000000000..76c5c5c9a --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_redstone_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_redstone"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_redstone_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_redstone_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_redstone_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_redstone_stairs.json new file mode 100644 index 000000000..3d10ed9b9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_redstone_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_redstone"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_redstone_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_redstone_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_redstone_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_redstone_wall.json new file mode 100644 index 000000000..43fdb9888 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_redstone_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_redstone"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_redstone_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_redstone_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_redstone_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_redstone_wall_gate.json new file mode 100644 index 000000000..f34502fb4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_redstone_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_redstone"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_redstone_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_redstone_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_stone_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_stone_brick_slab.json new file mode 100644 index 000000000..a9b8cfbec --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_stone_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_stone_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_stone_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_stone_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_stone_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_stone_brick_stairs.json new file mode 100644 index 000000000..379e60195 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_stone_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_stone_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_stone_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_stone_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_stone_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_stone_brick_wall.json new file mode 100644 index 000000000..e3014823d --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_stone_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_stone_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_stone_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_stone_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_stone_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_stone_brick_wall_gate.json new file mode 100644 index 000000000..234a8bb25 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_stone_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_stone_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_stone_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_stone_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_stone_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_stone_bricks.json new file mode 100644 index 000000000..d97bbf25e --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_stone_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:smooth_stone"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_stone_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_stone_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_weathered_copper.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_weathered_copper.json new file mode 100644 index 000000000..312c5e6ac --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_weathered_copper.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:weathered_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_weathered_copper"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_weathered_copper"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_weathered_copper_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_weathered_copper_slab.json new file mode 100644 index 000000000..a06ee001a --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_weathered_copper_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_weathered_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_weathered_copper_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_weathered_copper_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_weathered_copper_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_weathered_copper_stairs.json new file mode 100644 index 000000000..bdf5b33a3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_weathered_copper_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_weathered_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_weathered_copper_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_weathered_copper_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_weathered_copper_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_weathered_copper_wall.json new file mode 100644 index 000000000..3da8a328f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_weathered_copper_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_weathered_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_weathered_copper_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_weathered_copper_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/smooth_weathered_copper_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_weathered_copper_wall_gate.json new file mode 100644 index 000000000..910851c6f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/smooth_weathered_copper_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:smooth_weathered_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:smooth_weathered_copper_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:smooth_weathered_copper_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/soul_torch_lever.json b/common/src/main/resources/data/pyrite/advancements/recipes/soul_torch_lever.json new file mode 100644 index 000000000..c150a5c35 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/soul_torch_lever.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:soul_torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:soul_torch_lever"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:soul_torch_lever"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/spruce_crafting_table.json b/common/src/main/resources/data/pyrite/advancements/recipes/spruce_crafting_table.json new file mode 100644 index 000000000..78a877f89 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/spruce_crafting_table.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:spruce_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:spruce_crafting_table"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:spruce_crafting_table"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/star_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/star_brick_slab.json new file mode 100644 index 000000000..425a9b0a5 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/star_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:star_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:star_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:star_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/star_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/star_brick_stairs.json new file mode 100644 index 000000000..26e301f92 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/star_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:star_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:star_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:star_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/star_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/star_brick_wall.json new file mode 100644 index 000000000..24a951243 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/star_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:star_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:star_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:star_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/star_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/star_brick_wall_gate.json new file mode 100644 index 000000000..1ce1f9cbe --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/star_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:star_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:star_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:star_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/star_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/star_bricks.json new file mode 100644 index 000000000..09238d2ae --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/star_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:star_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:star_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/star_carpet.json b/common/src/main/resources/data/pyrite/advancements/recipes/star_carpet.json new file mode 100644 index 000000000..1ad543498 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/star_carpet.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:star_wool"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:star_carpet"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:star_carpet"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/star_concrete_powder.json b/common/src/main/resources/data/pyrite/advancements/recipes/star_concrete_powder.json new file mode 100644 index 000000000..0c82d4114 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/star_concrete_powder.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:star_dye"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:star_concrete_powder"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:star_concrete_powder"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/star_concrete_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/star_concrete_slab.json new file mode 100644 index 000000000..061f4bd5d --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/star_concrete_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:star_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:star_concrete_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:star_concrete_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/star_concrete_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/star_concrete_stairs.json new file mode 100644 index 000000000..ea85d153a --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/star_concrete_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:star_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:star_concrete_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:star_concrete_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/star_dye.json b/common/src/main/resources/data/pyrite/advancements/recipes/star_dye.json new file mode 100644 index 000000000..deb617d17 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/star_dye.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:nether_star"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:star_dye"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:star_dye"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/star_framed_glass.json b/common/src/main/resources/data/pyrite/advancements/recipes/star_framed_glass.json new file mode 100644 index 000000000..0138a23d5 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/star_framed_glass.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:star_framed_glass"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:star_framed_glass"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/star_framed_glass_pane.json b/common/src/main/resources/data/pyrite/advancements/recipes/star_framed_glass_pane.json new file mode 100644 index 000000000..4a7dd89ba --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/star_framed_glass_pane.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:star_framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:star_framed_glass_pane"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:star_framed_glass_pane"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/star_lamp.json b/common/src/main/resources/data/pyrite/advancements/recipes/star_lamp.json new file mode 100644 index 000000000..71ef3faa5 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/star_lamp.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glowstone_lamp"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:star_lamp"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:star_lamp"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_button.json new file mode 100644 index 000000000..be6bfe97c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:star_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:star_stained_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:star_stained_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_crafting_table.json b/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_crafting_table.json new file mode 100644 index 000000000..55f1895f7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_crafting_table.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:star_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:star_stained_crafting_table"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:star_stained_crafting_table"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_door.json b/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_door.json new file mode 100644 index 000000000..1dc0b873e --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_door.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:star_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:star_stained_door"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:star_stained_door"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_fence.json b/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_fence.json new file mode 100644 index 000000000..d7834e21b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_fence.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:star_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:star_stained_fence"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:star_stained_fence"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_fence_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_fence_gate.json new file mode 100644 index 000000000..9da6f991c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_fence_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:star_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:star_stained_fence_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:star_stained_fence_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_hanging_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_hanging_sign.json new file mode 100644 index 000000000..aed151db3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_hanging_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:star_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:star_stained_hanging_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:star_stained_hanging_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_ladder.json b/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_ladder.json new file mode 100644 index 000000000..009031f7b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_ladder.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:star_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:star_stained_ladder"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:star_stained_ladder"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_planks.json b/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_planks.json new file mode 100644 index 000000000..aadcc8b07 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_planks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"#minecraft:planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:star_stained_planks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:star_stained_planks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_pressure_plate.json b/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_pressure_plate.json new file mode 100644 index 000000000..4626c4add --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_pressure_plate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:star_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:star_stained_pressure_plate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:star_stained_pressure_plate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_sign.json new file mode 100644 index 000000000..8e5a00ca3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:star_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:star_stained_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:star_stained_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_slab.json new file mode 100644 index 000000000..d2bb726e4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:star_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:star_stained_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:star_stained_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_stairs.json new file mode 100644 index 000000000..459eb3132 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:star_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:star_stained_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:star_stained_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_trapdoor.json b/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_trapdoor.json new file mode 100644 index 000000000..3ef5eade4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/star_stained_trapdoor.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:star_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:star_stained_trapdoor"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:star_stained_trapdoor"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/star_terracotta.json b/common/src/main/resources/data/pyrite/advancements/recipes/star_terracotta.json new file mode 100644 index 000000000..c95c2b4be --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/star_terracotta.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:star_dye"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:star_terracotta"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:star_terracotta"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/star_terracotta_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/star_terracotta_brick_slab.json new file mode 100644 index 000000000..c7a8aed09 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/star_terracotta_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:star_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:star_terracotta_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:star_terracotta_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/star_terracotta_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/star_terracotta_brick_stairs.json new file mode 100644 index 000000000..0e7a820fc --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/star_terracotta_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:star_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:star_terracotta_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:star_terracotta_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/star_terracotta_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/star_terracotta_brick_wall.json new file mode 100644 index 000000000..b26e831b4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/star_terracotta_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:star_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:star_terracotta_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:star_terracotta_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/star_terracotta_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/star_terracotta_brick_wall_gate.json new file mode 100644 index 000000000..c0576d263 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/star_terracotta_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:star_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:star_terracotta_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:star_terracotta_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/star_terracotta_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/star_terracotta_bricks.json new file mode 100644 index 000000000..374e8e379 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/star_terracotta_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:star_terracotta"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:star_terracotta_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:star_terracotta_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/star_torch.json b/common/src/main/resources/data/pyrite/advancements/recipes/star_torch.json new file mode 100644 index 000000000..270582720 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/star_torch.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:star_torch"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:star_torch"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/star_torch_lever.json b/common/src/main/resources/data/pyrite/advancements/recipes/star_torch_lever.json new file mode 100644 index 000000000..aba10943c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/star_torch_lever.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:star_torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:star_torch_lever"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:star_torch_lever"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/star_wool.json b/common/src/main/resources/data/pyrite/advancements/recipes/star_wool.json new file mode 100644 index 000000000..f78a8dc4c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/star_wool.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:star_dye"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:star_wool"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:star_wool"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/stone_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/stone_brick_wall_gate.json new file mode 100644 index 000000000..239634aa6 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/stone_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:stone_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:stone_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:stone_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/switchable_glass.json b/common/src/main/resources/data/pyrite/advancements/recipes/switchable_glass.json new file mode 100644 index 000000000..bddf14862 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/switchable_glass.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:redstone"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:switchable_glass"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:switchable_glass"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/torch_lever.json b/common/src/main/resources/data/pyrite/advancements/recipes/torch_lever.json new file mode 100644 index 000000000..ae7c75a1b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/torch_lever.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:torch_lever"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:torch_lever"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/warped_crafting_table.json b/common/src/main/resources/data/pyrite/advancements/recipes/warped_crafting_table.json new file mode 100644 index 000000000..3cac992df --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/warped_crafting_table.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:warped_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:warped_crafting_table"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:warped_crafting_table"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/weathered_copper_bars.json b/common/src/main/resources/data/pyrite/advancements/recipes/weathered_copper_bars.json new file mode 100644 index 000000000..ffbe6f0c0 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/weathered_copper_bars.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:weathered_cut_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:weathered_copper_bars"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:weathered_copper_bars"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/weathered_copper_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/weathered_copper_button.json new file mode 100644 index 000000000..f32c85b13 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/weathered_copper_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:weathered_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:weathered_copper_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:weathered_copper_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/weathered_copper_door.json b/common/src/main/resources/data/pyrite/advancements/recipes/weathered_copper_door.json new file mode 100644 index 000000000..ba22dcbfb --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/weathered_copper_door.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:weathered_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:weathered_copper_door"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:weathered_copper_door"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/weathered_copper_pillar.json b/common/src/main/resources/data/pyrite/advancements/recipes/weathered_copper_pillar.json new file mode 100644 index 000000000..2537de826 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/weathered_copper_pillar.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:weathered_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:weathered_copper_pillar"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:weathered_copper_pillar"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/weathered_copper_pressure_plate.json b/common/src/main/resources/data/pyrite/advancements/recipes/weathered_copper_pressure_plate.json new file mode 100644 index 000000000..413ceff56 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/weathered_copper_pressure_plate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:weathered_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:weathered_copper_pressure_plate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:weathered_copper_pressure_plate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/weathered_copper_trapdoor.json b/common/src/main/resources/data/pyrite/advancements/recipes/weathered_copper_trapdoor.json new file mode 100644 index 000000000..cd67bb0c5 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/weathered_copper_trapdoor.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:weathered_copper"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:weathered_copper_trapdoor"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:weathered_copper_trapdoor"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/white_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/white_brick_slab.json new file mode 100644 index 000000000..79c00550a --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/white_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:white_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:white_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:white_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/white_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/white_brick_stairs.json new file mode 100644 index 000000000..5e0c394fb --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/white_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:white_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:white_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:white_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/white_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/white_brick_wall.json new file mode 100644 index 000000000..258db9acb --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/white_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:white_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:white_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:white_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/white_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/white_brick_wall_gate.json new file mode 100644 index 000000000..0e8ec97d4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/white_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:white_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:white_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:white_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/white_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/white_bricks.json new file mode 100644 index 000000000..d37121e3c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/white_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:white_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:white_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/white_concrete_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/white_concrete_slab.json new file mode 100644 index 000000000..0f0bdbe3a --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/white_concrete_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:white_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:white_concrete_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:white_concrete_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/white_concrete_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/white_concrete_stairs.json new file mode 100644 index 000000000..aea09a61a --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/white_concrete_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:white_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:white_concrete_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:white_concrete_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/white_framed_glass.json b/common/src/main/resources/data/pyrite/advancements/recipes/white_framed_glass.json new file mode 100644 index 000000000..481201cab --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/white_framed_glass.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:white_framed_glass"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:white_framed_glass"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/white_framed_glass_pane.json b/common/src/main/resources/data/pyrite/advancements/recipes/white_framed_glass_pane.json new file mode 100644 index 000000000..af8047b76 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/white_framed_glass_pane.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:white_framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:white_framed_glass_pane"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:white_framed_glass_pane"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/white_lamp.json b/common/src/main/resources/data/pyrite/advancements/recipes/white_lamp.json new file mode 100644 index 000000000..5df510459 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/white_lamp.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glowstone_lamp"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:white_lamp"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:white_lamp"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/white_rose.json b/common/src/main/resources/data/pyrite/advancements/recipes/white_rose.json new file mode 100644 index 000000000..b020ef752 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/white_rose.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:poppy"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:white_rose"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:white_rose"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_button.json new file mode 100644 index 000000000..871623a1c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:white_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:white_stained_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:white_stained_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_crafting_table.json b/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_crafting_table.json new file mode 100644 index 000000000..5e2a263a1 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_crafting_table.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:white_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:white_stained_crafting_table"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:white_stained_crafting_table"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_door.json b/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_door.json new file mode 100644 index 000000000..0304b67db --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_door.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:white_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:white_stained_door"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:white_stained_door"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_fence.json b/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_fence.json new file mode 100644 index 000000000..4daef7b4b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_fence.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:white_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:white_stained_fence"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:white_stained_fence"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_fence_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_fence_gate.json new file mode 100644 index 000000000..00d5c9f57 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_fence_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:white_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:white_stained_fence_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:white_stained_fence_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_hanging_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_hanging_sign.json new file mode 100644 index 000000000..350df4864 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_hanging_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:white_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:white_stained_hanging_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:white_stained_hanging_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_ladder.json b/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_ladder.json new file mode 100644 index 000000000..26eb3ea06 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_ladder.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:white_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:white_stained_ladder"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:white_stained_ladder"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_planks.json b/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_planks.json new file mode 100644 index 000000000..342b8b721 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_planks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"#minecraft:planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:white_stained_planks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:white_stained_planks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_pressure_plate.json b/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_pressure_plate.json new file mode 100644 index 000000000..98bc8e81e --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_pressure_plate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:white_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:white_stained_pressure_plate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:white_stained_pressure_plate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_sign.json new file mode 100644 index 000000000..9dc1f8b7b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:white_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:white_stained_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:white_stained_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_slab.json new file mode 100644 index 000000000..e72b879e0 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:white_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:white_stained_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:white_stained_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_stairs.json new file mode 100644 index 000000000..cf99d895a --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:white_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:white_stained_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:white_stained_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_trapdoor.json b/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_trapdoor.json new file mode 100644 index 000000000..96eaa96fd --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/white_stained_trapdoor.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:white_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:white_stained_trapdoor"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:white_stained_trapdoor"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/white_terracotta_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/white_terracotta_brick_slab.json new file mode 100644 index 000000000..d564a9a75 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/white_terracotta_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:white_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:white_terracotta_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:white_terracotta_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/white_terracotta_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/white_terracotta_brick_stairs.json new file mode 100644 index 000000000..ec8ff6469 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/white_terracotta_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:white_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:white_terracotta_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:white_terracotta_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/white_terracotta_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/white_terracotta_brick_wall.json new file mode 100644 index 000000000..7d90738de --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/white_terracotta_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:white_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:white_terracotta_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:white_terracotta_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/white_terracotta_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/white_terracotta_brick_wall_gate.json new file mode 100644 index 000000000..eb29d1697 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/white_terracotta_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:white_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:white_terracotta_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:white_terracotta_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/white_terracotta_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/white_terracotta_bricks.json new file mode 100644 index 000000000..123256cdd --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/white_terracotta_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:white_terracotta"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:white_terracotta_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:white_terracotta_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/white_torch.json b/common/src/main/resources/data/pyrite/advancements/recipes/white_torch.json new file mode 100644 index 000000000..3a436ff2f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/white_torch.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:white_torch"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:white_torch"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/white_torch_lever.json b/common/src/main/resources/data/pyrite/advancements/recipes/white_torch_lever.json new file mode 100644 index 000000000..065b18db6 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/white_torch_lever.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:white_torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:white_torch_lever"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:white_torch_lever"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/yellow_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_brick_slab.json new file mode 100644 index 000000000..45b6b6130 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:yellow_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:yellow_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:yellow_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/yellow_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_brick_stairs.json new file mode 100644 index 000000000..51bcf2ae4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:yellow_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:yellow_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:yellow_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/yellow_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_brick_wall.json new file mode 100644 index 000000000..c7d421693 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:yellow_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:yellow_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:yellow_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/yellow_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_brick_wall_gate.json new file mode 100644 index 000000000..3bf9aabbc --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:yellow_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:yellow_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:yellow_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/yellow_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_bricks.json new file mode 100644 index 000000000..ea3e0ef59 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:yellow_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:yellow_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/yellow_concrete_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_concrete_slab.json new file mode 100644 index 000000000..a2d7c53db --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_concrete_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:yellow_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:yellow_concrete_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:yellow_concrete_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/yellow_concrete_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_concrete_stairs.json new file mode 100644 index 000000000..90b3e357c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_concrete_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:yellow_concrete"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:yellow_concrete_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:yellow_concrete_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/yellow_framed_glass.json b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_framed_glass.json new file mode 100644 index 000000000..dc317ef38 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_framed_glass.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:yellow_framed_glass"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:yellow_framed_glass"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/yellow_framed_glass_pane.json b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_framed_glass_pane.json new file mode 100644 index 000000000..816f0fe51 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_framed_glass_pane.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:yellow_framed_glass"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:yellow_framed_glass_pane"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:yellow_framed_glass_pane"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/yellow_lamp.json b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_lamp.json new file mode 100644 index 000000000..7c6459458 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_lamp.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:glowstone_lamp"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:yellow_lamp"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:yellow_lamp"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_button.json b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_button.json new file mode 100644 index 000000000..99bc58e02 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_button.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:yellow_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:yellow_stained_button"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:yellow_stained_button"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_crafting_table.json b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_crafting_table.json new file mode 100644 index 000000000..d7acc522c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_crafting_table.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:yellow_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:yellow_stained_crafting_table"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:yellow_stained_crafting_table"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_door.json b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_door.json new file mode 100644 index 000000000..5ab7f107c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_door.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:yellow_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:yellow_stained_door"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:yellow_stained_door"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_fence.json b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_fence.json new file mode 100644 index 000000000..0931011db --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_fence.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:yellow_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:yellow_stained_fence"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:yellow_stained_fence"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_fence_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_fence_gate.json new file mode 100644 index 000000000..ef2055764 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_fence_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:yellow_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:yellow_stained_fence_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:yellow_stained_fence_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_hanging_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_hanging_sign.json new file mode 100644 index 000000000..b89360a7b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_hanging_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:yellow_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:yellow_stained_hanging_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:yellow_stained_hanging_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_ladder.json b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_ladder.json new file mode 100644 index 000000000..983e3f11c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_ladder.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:yellow_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:yellow_stained_ladder"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:yellow_stained_ladder"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_planks.json b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_planks.json new file mode 100644 index 000000000..11299f34d --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_planks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"#minecraft:planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:yellow_stained_planks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:yellow_stained_planks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_pressure_plate.json b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_pressure_plate.json new file mode 100644 index 000000000..2d9ed6a75 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_pressure_plate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:yellow_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:yellow_stained_pressure_plate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:yellow_stained_pressure_plate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_sign.json b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_sign.json new file mode 100644 index 000000000..96980cb31 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_sign.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:yellow_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:yellow_stained_sign"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:yellow_stained_sign"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_slab.json new file mode 100644 index 000000000..75939f351 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:yellow_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:yellow_stained_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:yellow_stained_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_stairs.json new file mode 100644 index 000000000..e4e598b4c --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:yellow_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:yellow_stained_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:yellow_stained_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_trapdoor.json b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_trapdoor.json new file mode 100644 index 000000000..98607022b --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_stained_trapdoor.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:yellow_stained_planks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:yellow_stained_trapdoor"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:yellow_stained_trapdoor"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/yellow_terracotta_brick_slab.json b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_terracotta_brick_slab.json new file mode 100644 index 000000000..9527dc1dc --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_terracotta_brick_slab.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:yellow_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:yellow_terracotta_brick_slab"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:yellow_terracotta_brick_slab"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/yellow_terracotta_brick_stairs.json b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_terracotta_brick_stairs.json new file mode 100644 index 000000000..5ed825128 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_terracotta_brick_stairs.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:yellow_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:yellow_terracotta_brick_stairs"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:yellow_terracotta_brick_stairs"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/yellow_terracotta_brick_wall.json b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_terracotta_brick_wall.json new file mode 100644 index 000000000..e6d407391 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_terracotta_brick_wall.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:yellow_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:yellow_terracotta_brick_wall"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:yellow_terracotta_brick_wall"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/yellow_terracotta_brick_wall_gate.json b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_terracotta_brick_wall_gate.json new file mode 100644 index 000000000..e8167f6d5 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_terracotta_brick_wall_gate.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:yellow_terracotta_bricks"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:yellow_terracotta_brick_wall_gate"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:yellow_terracotta_brick_wall_gate"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/yellow_terracotta_bricks.json b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_terracotta_bricks.json new file mode 100644 index 000000000..b4ada84c5 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_terracotta_bricks.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:yellow_terracotta"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:yellow_terracotta_bricks"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:yellow_terracotta_bricks"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/yellow_torch.json b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_torch.json new file mode 100644 index 000000000..a5f5c1a86 --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_torch.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"minecraft:torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:yellow_torch"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:yellow_torch"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/advancements/recipes/yellow_torch_lever.json b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_torch_lever.json new file mode 100644 index 000000000..97aa6039f --- /dev/null +++ b/common/src/main/resources/data/pyrite/advancements/recipes/yellow_torch_lever.json @@ -0,0 +1 @@ +{"parent":"minecraft:recipes/root","criteria":{"has_needed_item":{"conditions":{"items":[{"items":"pyrite:yellow_torch"}]},"trigger":"minecraft:inventory_changed"},"has_the_recipe":{"conditions":{"recipe":"pyrite:yellow_torch_lever"},"trigger":"minecraft:recipe_unlocked"}},"requirements":[["has_the_recipe","has_needed_item"]],"rewards":{"recipes":["pyrite:yellow_torch_lever"]}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/andesite_brick_slab.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/andesite_brick_slab.json new file mode 100644 index 000000000..636e53d2a --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/andesite_brick_slab.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:andesite_brick_slab"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/andesite_brick_stairs.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/andesite_brick_stairs.json new file mode 100644 index 000000000..4d1483eab --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/andesite_brick_stairs.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:andesite_brick_stairs"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/andesite_brick_wall.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/andesite_brick_wall.json new file mode 100644 index 000000000..3c2f8dc9c --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/andesite_brick_wall.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:andesite_brick_wall"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/andesite_brick_wall_gate.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/andesite_brick_wall_gate.json new file mode 100644 index 000000000..a1c31f2be --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/andesite_brick_wall_gate.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:andesite_brick_wall_gate"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/andesite_bricks.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/andesite_bricks.json new file mode 100644 index 000000000..8f5543dcc --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/andesite_bricks.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:andesite_bricks"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/calcite_brick_slab.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/calcite_brick_slab.json new file mode 100644 index 000000000..250b2f22b --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/calcite_brick_slab.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:calcite_brick_slab"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/calcite_brick_stairs.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/calcite_brick_stairs.json new file mode 100644 index 000000000..64f672c87 --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/calcite_brick_stairs.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:calcite_brick_stairs"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/calcite_brick_wall.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/calcite_brick_wall.json new file mode 100644 index 000000000..b411c397c --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/calcite_brick_wall.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:calcite_brick_wall"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/calcite_brick_wall_gate.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/calcite_brick_wall_gate.json new file mode 100644 index 000000000..2c774e794 --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/calcite_brick_wall_gate.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:calcite_brick_wall_gate"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/calcite_bricks.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/calcite_bricks.json new file mode 100644 index 000000000..e080fc7b3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/calcite_bricks.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:calcite_bricks"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/diorite_brick_slab.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/diorite_brick_slab.json new file mode 100644 index 000000000..2ab41e51c --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/diorite_brick_slab.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:diorite_brick_slab"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/diorite_brick_stairs.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/diorite_brick_stairs.json new file mode 100644 index 000000000..4d9009e7b --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/diorite_brick_stairs.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:diorite_brick_stairs"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/diorite_brick_wall.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/diorite_brick_wall.json new file mode 100644 index 000000000..3824d85fa --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/diorite_brick_wall.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:diorite_brick_wall"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/diorite_brick_wall_gate.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/diorite_brick_wall_gate.json new file mode 100644 index 000000000..62d6e9496 --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/diorite_brick_wall_gate.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:diorite_brick_wall_gate"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/diorite_bricks.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/diorite_bricks.json new file mode 100644 index 000000000..463e48cd8 --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/diorite_bricks.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:diorite_bricks"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/granite_brick_slab.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/granite_brick_slab.json new file mode 100644 index 000000000..32d53576e --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/granite_brick_slab.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:granite_brick_slab"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/granite_brick_stairs.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/granite_brick_stairs.json new file mode 100644 index 000000000..d5f1a2873 --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/granite_brick_stairs.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:granite_brick_stairs"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/granite_brick_wall.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/granite_brick_wall.json new file mode 100644 index 000000000..6c2d4d4d5 --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/granite_brick_wall.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:granite_brick_wall"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/granite_brick_wall_gate.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/granite_brick_wall_gate.json new file mode 100644 index 000000000..96d2697c0 --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/granite_brick_wall_gate.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:granite_brick_wall_gate"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/granite_bricks.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/granite_bricks.json new file mode 100644 index 000000000..eb4ac2882 --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/granite_bricks.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:granite_bricks"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_andesite_brick_slab.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_andesite_brick_slab.json new file mode 100644 index 000000000..5cdbe66db --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_andesite_brick_slab.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:mossy_andesite_brick_slab"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_andesite_brick_stairs.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_andesite_brick_stairs.json new file mode 100644 index 000000000..8f3ec1534 --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_andesite_brick_stairs.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:mossy_andesite_brick_stairs"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_andesite_brick_wall.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_andesite_brick_wall.json new file mode 100644 index 000000000..0afe100ec --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_andesite_brick_wall.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:mossy_andesite_brick_wall"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_andesite_brick_wall_gate.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_andesite_brick_wall_gate.json new file mode 100644 index 000000000..07d4885d1 --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_andesite_brick_wall_gate.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:mossy_andesite_brick_wall_gate"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_andesite_bricks.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_andesite_bricks.json new file mode 100644 index 000000000..4d84be82a --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_andesite_bricks.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:mossy_andesite_bricks"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_calcite_brick_slab.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_calcite_brick_slab.json new file mode 100644 index 000000000..8bafecea4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_calcite_brick_slab.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:mossy_calcite_brick_slab"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_calcite_brick_stairs.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_calcite_brick_stairs.json new file mode 100644 index 000000000..493fd5118 --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_calcite_brick_stairs.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:mossy_calcite_brick_stairs"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_calcite_brick_wall.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_calcite_brick_wall.json new file mode 100644 index 000000000..c7678364a --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_calcite_brick_wall.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:mossy_calcite_brick_wall"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_calcite_brick_wall_gate.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_calcite_brick_wall_gate.json new file mode 100644 index 000000000..3e08fe834 --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_calcite_brick_wall_gate.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:mossy_calcite_brick_wall_gate"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_calcite_bricks.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_calcite_bricks.json new file mode 100644 index 000000000..2579f2c2b --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_calcite_bricks.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:mossy_calcite_bricks"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_deepslate_brick_slab.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_deepslate_brick_slab.json new file mode 100644 index 000000000..2c33b745c --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_deepslate_brick_slab.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:mossy_deepslate_brick_slab"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_deepslate_brick_stairs.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_deepslate_brick_stairs.json new file mode 100644 index 000000000..e4a431c98 --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_deepslate_brick_stairs.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:mossy_deepslate_brick_stairs"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_deepslate_brick_wall.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_deepslate_brick_wall.json new file mode 100644 index 000000000..346d93d92 --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_deepslate_brick_wall.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:mossy_deepslate_brick_wall"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_deepslate_brick_wall_gate.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_deepslate_brick_wall_gate.json new file mode 100644 index 000000000..2af4ddb1c --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_deepslate_brick_wall_gate.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:mossy_deepslate_brick_wall_gate"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_deepslate_bricks.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_deepslate_bricks.json new file mode 100644 index 000000000..565cbec20 --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_deepslate_bricks.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:mossy_deepslate_bricks"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_diorite_brick_slab.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_diorite_brick_slab.json new file mode 100644 index 000000000..f2e804ab1 --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_diorite_brick_slab.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:mossy_diorite_brick_slab"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_diorite_brick_stairs.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_diorite_brick_stairs.json new file mode 100644 index 000000000..e2579416f --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_diorite_brick_stairs.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:mossy_diorite_brick_stairs"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_diorite_brick_wall.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_diorite_brick_wall.json new file mode 100644 index 000000000..ba5ae8394 --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_diorite_brick_wall.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:mossy_diorite_brick_wall"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_diorite_brick_wall_gate.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_diorite_brick_wall_gate.json new file mode 100644 index 000000000..e2d0db713 --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_diorite_brick_wall_gate.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:mossy_diorite_brick_wall_gate"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_diorite_bricks.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_diorite_bricks.json new file mode 100644 index 000000000..261e1ea5e --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_diorite_bricks.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:mossy_diorite_bricks"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_granite_brick_slab.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_granite_brick_slab.json new file mode 100644 index 000000000..e5e5c4bea --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_granite_brick_slab.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:mossy_granite_brick_slab"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_granite_brick_stairs.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_granite_brick_stairs.json new file mode 100644 index 000000000..a008f3573 --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_granite_brick_stairs.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:mossy_granite_brick_stairs"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_granite_brick_wall.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_granite_brick_wall.json new file mode 100644 index 000000000..844237947 --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_granite_brick_wall.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:mossy_granite_brick_wall"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_granite_brick_wall_gate.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_granite_brick_wall_gate.json new file mode 100644 index 000000000..9c1b4a3c1 --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_granite_brick_wall_gate.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:mossy_granite_brick_wall_gate"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_granite_bricks.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_granite_bricks.json new file mode 100644 index 000000000..803f10c97 --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_granite_bricks.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:mossy_granite_bricks"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_smooth_stone_brick_slab.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_smooth_stone_brick_slab.json new file mode 100644 index 000000000..c9ba3c899 --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_smooth_stone_brick_slab.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:mossy_smooth_stone_brick_slab"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_smooth_stone_brick_stairs.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_smooth_stone_brick_stairs.json new file mode 100644 index 000000000..e7299583e --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_smooth_stone_brick_stairs.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:mossy_smooth_stone_brick_stairs"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_smooth_stone_brick_wall.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_smooth_stone_brick_wall.json new file mode 100644 index 000000000..1159ec2f7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_smooth_stone_brick_wall.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:mossy_smooth_stone_brick_wall"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_smooth_stone_brick_wall_gate.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_smooth_stone_brick_wall_gate.json new file mode 100644 index 000000000..b2c18a085 --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_smooth_stone_brick_wall_gate.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:mossy_smooth_stone_brick_wall_gate"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_smooth_stone_bricks.json b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_smooth_stone_bricks.json new file mode 100644 index 000000000..9235777bb --- /dev/null +++ b/common/src/main/resources/data/pyrite/loot_tables/blocks/mossy_smooth_stone_bricks.json @@ -0,0 +1 @@ +{"type":"minecraft:block","pools":[{"rolls":1,"entries":[{"type":"minecraft:item","name":"pyrite:mossy_smooth_stone_bricks"}],"conditions":[{"condition":"minecraft:survives_explosion"}]}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/aerogel_wall_gate.json b/common/src/main/resources/data/pyrite/recipes/aerogel_wall_gate.json new file mode 100644 index 000000000..935509d52 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/aerogel_wall_gate.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["SCS","SCS"],"key":{"C":{"item":"aether:aerogel"},"S":{"item":"aether:aerogel_wall"}},"fabric:load_conditions":[{"condition":"fabric:all_mods_loaded","values":["aether"]}],"neoforge:conditions":[{"type":"neoforge:mod_loaded","modid":"aether"}],"result":{"item":"pyrite:aerogel_wall_gate","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/andesite_brick_slab.json b/common/src/main/resources/data/pyrite/recipes/andesite_brick_slab.json new file mode 100644 index 000000000..953ee6098 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/andesite_brick_slab.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["CCC"],"key":{"C":{"item":"pyrite:andesite_bricks"}},"result":{"item":"pyrite:andesite_brick_slab","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/andesite_brick_slab_stonecutting.json b/common/src/main/resources/data/pyrite/recipes/andesite_brick_slab_stonecutting.json new file mode 100644 index 000000000..0be85c5b2 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/andesite_brick_slab_stonecutting.json @@ -0,0 +1 @@ +{"type":"minecraft:stonecutting","ingredient":{"item":"pyrite:andesite_bricks"},"result":"pyrite:andesite_brick_slab","count":2} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/andesite_brick_stairs.json b/common/src/main/resources/data/pyrite/recipes/andesite_brick_stairs.json new file mode 100644 index 000000000..030f215cd --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/andesite_brick_stairs.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["C ","CC ","CCC"],"key":{"C":{"item":"pyrite:andesite_bricks"}},"result":{"item":"pyrite:andesite_brick_stairs","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/andesite_brick_stairs_stonecutting.json b/common/src/main/resources/data/pyrite/recipes/andesite_brick_stairs_stonecutting.json new file mode 100644 index 000000000..46ebe7a47 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/andesite_brick_stairs_stonecutting.json @@ -0,0 +1 @@ +{"type":"minecraft:stonecutting","ingredient":{"item":"pyrite:andesite_bricks"},"result":"pyrite:andesite_brick_stairs","count":1} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/andesite_brick_wall.json b/common/src/main/resources/data/pyrite/recipes/andesite_brick_wall.json new file mode 100644 index 000000000..f49d8d48e --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/andesite_brick_wall.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["CCC","CCC"],"key":{"C":{"item":"pyrite:andesite_bricks"}},"result":{"item":"pyrite:andesite_brick_wall","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/andesite_brick_wall_gate.json b/common/src/main/resources/data/pyrite/recipes/andesite_brick_wall_gate.json new file mode 100644 index 000000000..595c32faa --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/andesite_brick_wall_gate.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["SCS","SCS"],"key":{"C":{"item":"pyrite:andesite_bricks"},"S":{"item":"pyrite:andesite_brick_wall"}},"result":{"item":"pyrite:andesite_brick_wall_gate","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/andesite_brick_wall_gate_stonecutting.json b/common/src/main/resources/data/pyrite/recipes/andesite_brick_wall_gate_stonecutting.json new file mode 100644 index 000000000..3a17a7fd1 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/andesite_brick_wall_gate_stonecutting.json @@ -0,0 +1 @@ +{"type":"minecraft:stonecutting","ingredient":{"item":"pyrite:andesite_bricks"},"result":"pyrite:andesite_brick_wall_gate","count":1} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/andesite_brick_wall_stonecutting.json b/common/src/main/resources/data/pyrite/recipes/andesite_brick_wall_stonecutting.json new file mode 100644 index 000000000..f2b87fe3d --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/andesite_brick_wall_stonecutting.json @@ -0,0 +1 @@ +{"type":"minecraft:stonecutting","ingredient":{"item":"pyrite:andesite_bricks"},"result":"pyrite:andesite_brick_wall","count":1} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/andesite_bricks.json b/common/src/main/resources/data/pyrite/recipes/andesite_bricks.json new file mode 100644 index 000000000..c414822d7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/andesite_bricks.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["DD","DD"],"key":{"D":{"item":"minecraft:polished_andesite"}},"result":{"item":"pyrite:andesite_bricks","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/andesite_bricks_stonecutting.json b/common/src/main/resources/data/pyrite/recipes/andesite_bricks_stonecutting.json new file mode 100644 index 000000000..27a588886 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/andesite_bricks_stonecutting.json @@ -0,0 +1 @@ +{"type":"minecraft:stonecutting","ingredient":{"item":"minecraft:polished_andesite"},"result":"pyrite:andesite_bricks","count":1} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/angelic_wall_gate.json b/common/src/main/resources/data/pyrite/recipes/angelic_wall_gate.json new file mode 100644 index 000000000..f3ff9a7a1 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/angelic_wall_gate.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["SCS","SCS"],"key":{"C":{"item":"aether:angelic_stone"},"S":{"item":"aether:angelic_stone_wall"}},"fabric:load_conditions":[{"condition":"fabric:all_mods_loaded","values":["aether"]}],"neoforge:conditions":[{"type":"neoforge:mod_loaded","modid":"aether"}],"result":{"item":"pyrite:angelic_wall_gate","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/black_bricks.json b/common/src/main/resources/data/pyrite/recipes/black_bricks.json index 4fe31a0a9..53275985e 100644 --- a/common/src/main/resources/data/pyrite/recipes/black_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/black_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"C":{"item":"minecraft:black_dye"},"D":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:black_bricks","count":4}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"D":{"item":"minecraft:black_dye"},"C":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:black_bricks","count":8}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/black_terracotta_bricks.json b/common/src/main/resources/data/pyrite/recipes/black_terracotta_bricks.json index 02f5f5a6b..001b5c0a7 100644 --- a/common/src/main/resources/data/pyrite/recipes/black_terracotta_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/black_terracotta_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"minecraft:black_terracotta"}},"result":{"item":"pyrite:black_terracotta_bricks","count":3}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"minecraft:black_terracotta"}},"result":{"item":"pyrite:black_terracotta_bricks","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/blue_bricks.json b/common/src/main/resources/data/pyrite/recipes/blue_bricks.json index a10251d22..1a2904dcb 100644 --- a/common/src/main/resources/data/pyrite/recipes/blue_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/blue_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"C":{"item":"minecraft:blue_dye"},"D":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:blue_bricks","count":4}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"D":{"item":"minecraft:blue_dye"},"C":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:blue_bricks","count":8}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/blue_terracotta_bricks.json b/common/src/main/resources/data/pyrite/recipes/blue_terracotta_bricks.json index d2d59d4ec..efa21e7de 100644 --- a/common/src/main/resources/data/pyrite/recipes/blue_terracotta_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/blue_terracotta_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"minecraft:blue_terracotta"}},"result":{"item":"pyrite:blue_terracotta_bricks","count":3}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"minecraft:blue_terracotta"}},"result":{"item":"pyrite:blue_terracotta_bricks","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/brown_bricks.json b/common/src/main/resources/data/pyrite/recipes/brown_bricks.json index 4c7146b44..391c4785e 100644 --- a/common/src/main/resources/data/pyrite/recipes/brown_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/brown_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"C":{"item":"minecraft:brown_dye"},"D":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:brown_bricks","count":4}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"D":{"item":"minecraft:brown_dye"},"C":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:brown_bricks","count":8}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/brown_terracotta_bricks.json b/common/src/main/resources/data/pyrite/recipes/brown_terracotta_bricks.json index 1dcfdc052..eadcb9234 100644 --- a/common/src/main/resources/data/pyrite/recipes/brown_terracotta_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/brown_terracotta_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"minecraft:brown_terracotta"}},"result":{"item":"pyrite:brown_terracotta_bricks","count":3}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"minecraft:brown_terracotta"}},"result":{"item":"pyrite:brown_terracotta_bricks","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/calcite_brick_slab.json b/common/src/main/resources/data/pyrite/recipes/calcite_brick_slab.json new file mode 100644 index 000000000..424f93005 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/calcite_brick_slab.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["CCC"],"key":{"C":{"item":"pyrite:calcite_bricks"}},"result":{"item":"pyrite:calcite_brick_slab","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/calcite_brick_slab_stonecutting.json b/common/src/main/resources/data/pyrite/recipes/calcite_brick_slab_stonecutting.json new file mode 100644 index 000000000..934f1758b --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/calcite_brick_slab_stonecutting.json @@ -0,0 +1 @@ +{"type":"minecraft:stonecutting","ingredient":{"item":"pyrite:calcite_bricks"},"result":"pyrite:calcite_brick_slab","count":2} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/calcite_brick_stairs.json b/common/src/main/resources/data/pyrite/recipes/calcite_brick_stairs.json new file mode 100644 index 000000000..fe4eb22bd --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/calcite_brick_stairs.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["C ","CC ","CCC"],"key":{"C":{"item":"pyrite:calcite_bricks"}},"result":{"item":"pyrite:calcite_brick_stairs","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/calcite_brick_stairs_stonecutting.json b/common/src/main/resources/data/pyrite/recipes/calcite_brick_stairs_stonecutting.json new file mode 100644 index 000000000..2e40f715c --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/calcite_brick_stairs_stonecutting.json @@ -0,0 +1 @@ +{"type":"minecraft:stonecutting","ingredient":{"item":"pyrite:calcite_bricks"},"result":"pyrite:calcite_brick_stairs","count":1} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/calcite_brick_wall.json b/common/src/main/resources/data/pyrite/recipes/calcite_brick_wall.json new file mode 100644 index 000000000..57bb533e5 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/calcite_brick_wall.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["CCC","CCC"],"key":{"C":{"item":"pyrite:calcite_bricks"}},"result":{"item":"pyrite:calcite_brick_wall","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/calcite_brick_wall_gate.json b/common/src/main/resources/data/pyrite/recipes/calcite_brick_wall_gate.json new file mode 100644 index 000000000..0828bafd3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/calcite_brick_wall_gate.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["SCS","SCS"],"key":{"C":{"item":"pyrite:calcite_bricks"},"S":{"item":"pyrite:calcite_brick_wall"}},"result":{"item":"pyrite:calcite_brick_wall_gate","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/calcite_brick_wall_gate_stonecutting.json b/common/src/main/resources/data/pyrite/recipes/calcite_brick_wall_gate_stonecutting.json new file mode 100644 index 000000000..07e08b4fd --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/calcite_brick_wall_gate_stonecutting.json @@ -0,0 +1 @@ +{"type":"minecraft:stonecutting","ingredient":{"item":"pyrite:calcite_bricks"},"result":"pyrite:calcite_brick_wall_gate","count":1} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/calcite_brick_wall_stonecutting.json b/common/src/main/resources/data/pyrite/recipes/calcite_brick_wall_stonecutting.json new file mode 100644 index 000000000..d02f2c385 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/calcite_brick_wall_stonecutting.json @@ -0,0 +1 @@ +{"type":"minecraft:stonecutting","ingredient":{"item":"pyrite:calcite_bricks"},"result":"pyrite:calcite_brick_wall","count":1} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/calcite_bricks.json b/common/src/main/resources/data/pyrite/recipes/calcite_bricks.json new file mode 100644 index 000000000..4fea327eb --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/calcite_bricks.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["DD","DD"],"key":{"D":{"item":"minecraft:calcite"}},"result":{"item":"pyrite:calcite_bricks","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/calcite_bricks_stonecutting.json b/common/src/main/resources/data/pyrite/recipes/calcite_bricks_stonecutting.json new file mode 100644 index 000000000..768a49af8 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/calcite_bricks_stonecutting.json @@ -0,0 +1 @@ +{"type":"minecraft:stonecutting","ingredient":{"item":"minecraft:calcite"},"result":"pyrite:calcite_bricks","count":1} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/carved_wall_gate.json b/common/src/main/resources/data/pyrite/recipes/carved_wall_gate.json new file mode 100644 index 000000000..c066d75bc --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/carved_wall_gate.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["SCS","SCS"],"key":{"C":{"item":"aether:carved_stone"},"S":{"item":"aether:carved_stone_wall"}},"fabric:load_conditions":[{"condition":"fabric:all_mods_loaded","values":["aether"]}],"neoforge:conditions":[{"type":"neoforge:mod_loaded","modid":"aether"}],"result":{"item":"pyrite:carved_wall_gate","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/chiseled_copper_block.json b/common/src/main/resources/data/pyrite/recipes/chiseled_copper_block.json index 544c01c6c..529e155f3 100644 --- a/common/src/main/resources/data/pyrite/recipes/chiseled_copper_block.json +++ b/common/src/main/resources/data/pyrite/recipes/chiseled_copper_block.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["D","D"],"key":{"D":{"item":"pyrite:cut_copper"}},"result":{"item":"pyrite:chiseled_copper_block","count":1}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["D","D"],"key":{"D":{"item":"pyrite:cut_copper_slab"}},"result":{"item":"pyrite:chiseled_copper_block","count":1}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/cyan_bricks.json b/common/src/main/resources/data/pyrite/recipes/cyan_bricks.json index 1f074cdde..1182c0738 100644 --- a/common/src/main/resources/data/pyrite/recipes/cyan_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/cyan_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"C":{"item":"minecraft:cyan_dye"},"D":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:cyan_bricks","count":4}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"D":{"item":"minecraft:cyan_dye"},"C":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:cyan_bricks","count":8}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/cyan_terracotta_bricks.json b/common/src/main/resources/data/pyrite/recipes/cyan_terracotta_bricks.json index 2b7422ba3..42c22a9d8 100644 --- a/common/src/main/resources/data/pyrite/recipes/cyan_terracotta_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/cyan_terracotta_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"minecraft:cyan_terracotta"}},"result":{"item":"pyrite:cyan_terracotta_bricks","count":3}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"minecraft:cyan_terracotta"}},"result":{"item":"pyrite:cyan_terracotta_bricks","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/diorite_brick_slab.json b/common/src/main/resources/data/pyrite/recipes/diorite_brick_slab.json new file mode 100644 index 000000000..6174951eb --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/diorite_brick_slab.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["CCC"],"key":{"C":{"item":"pyrite:diorite_bricks"}},"result":{"item":"pyrite:diorite_brick_slab","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/diorite_brick_slab_stonecutting.json b/common/src/main/resources/data/pyrite/recipes/diorite_brick_slab_stonecutting.json new file mode 100644 index 000000000..534dfb12f --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/diorite_brick_slab_stonecutting.json @@ -0,0 +1 @@ +{"type":"minecraft:stonecutting","ingredient":{"item":"pyrite:diorite_bricks"},"result":"pyrite:diorite_brick_slab","count":2} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/diorite_brick_stairs.json b/common/src/main/resources/data/pyrite/recipes/diorite_brick_stairs.json new file mode 100644 index 000000000..b16e0872f --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/diorite_brick_stairs.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["C ","CC ","CCC"],"key":{"C":{"item":"pyrite:diorite_bricks"}},"result":{"item":"pyrite:diorite_brick_stairs","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/diorite_brick_stairs_stonecutting.json b/common/src/main/resources/data/pyrite/recipes/diorite_brick_stairs_stonecutting.json new file mode 100644 index 000000000..51cd9209d --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/diorite_brick_stairs_stonecutting.json @@ -0,0 +1 @@ +{"type":"minecraft:stonecutting","ingredient":{"item":"pyrite:diorite_bricks"},"result":"pyrite:diorite_brick_stairs","count":1} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/diorite_brick_wall.json b/common/src/main/resources/data/pyrite/recipes/diorite_brick_wall.json new file mode 100644 index 000000000..306585c3e --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/diorite_brick_wall.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["CCC","CCC"],"key":{"C":{"item":"pyrite:diorite_bricks"}},"result":{"item":"pyrite:diorite_brick_wall","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/diorite_brick_wall_gate.json b/common/src/main/resources/data/pyrite/recipes/diorite_brick_wall_gate.json new file mode 100644 index 000000000..e9fc6fe29 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/diorite_brick_wall_gate.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["SCS","SCS"],"key":{"C":{"item":"pyrite:diorite_bricks"},"S":{"item":"pyrite:diorite_brick_wall"}},"result":{"item":"pyrite:diorite_brick_wall_gate","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/diorite_brick_wall_gate_stonecutting.json b/common/src/main/resources/data/pyrite/recipes/diorite_brick_wall_gate_stonecutting.json new file mode 100644 index 000000000..3b590ef68 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/diorite_brick_wall_gate_stonecutting.json @@ -0,0 +1 @@ +{"type":"minecraft:stonecutting","ingredient":{"item":"pyrite:diorite_bricks"},"result":"pyrite:diorite_brick_wall_gate","count":1} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/diorite_brick_wall_stonecutting.json b/common/src/main/resources/data/pyrite/recipes/diorite_brick_wall_stonecutting.json new file mode 100644 index 000000000..b4c8cb5ea --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/diorite_brick_wall_stonecutting.json @@ -0,0 +1 @@ +{"type":"minecraft:stonecutting","ingredient":{"item":"pyrite:diorite_bricks"},"result":"pyrite:diorite_brick_wall","count":1} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/diorite_bricks.json b/common/src/main/resources/data/pyrite/recipes/diorite_bricks.json new file mode 100644 index 000000000..081822243 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/diorite_bricks.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["DD","DD"],"key":{"D":{"item":"minecraft:polished_diorite"}},"result":{"item":"pyrite:diorite_bricks","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/diorite_bricks_stonecutting.json b/common/src/main/resources/data/pyrite/recipes/diorite_bricks_stonecutting.json new file mode 100644 index 000000000..43a844c86 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/diorite_bricks_stonecutting.json @@ -0,0 +1 @@ +{"type":"minecraft:stonecutting","ingredient":{"item":"minecraft:polished_diorite"},"result":"pyrite:diorite_bricks","count":1} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/dragon_bricks.json b/common/src/main/resources/data/pyrite/recipes/dragon_bricks.json index 13bc7044e..0374fb6f2 100644 --- a/common/src/main/resources/data/pyrite/recipes/dragon_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/dragon_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"C":{"item":"pyrite:dragon_dye"},"D":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:dragon_bricks","count":4}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"D":{"item":"pyrite:dragon_dye"},"C":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:dragon_bricks","count":8}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/dragon_terracotta_bricks.json b/common/src/main/resources/data/pyrite/recipes/dragon_terracotta_bricks.json index 395da4261..c4c9cdc8f 100644 --- a/common/src/main/resources/data/pyrite/recipes/dragon_terracotta_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/dragon_terracotta_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"pyrite:dragon_terracotta"}},"result":{"item":"pyrite:dragon_terracotta_bricks","count":3}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"pyrite:dragon_terracotta"}},"result":{"item":"pyrite:dragon_terracotta_bricks","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/glow_bricks.json b/common/src/main/resources/data/pyrite/recipes/glow_bricks.json index 8823b18da..1388eb0de 100644 --- a/common/src/main/resources/data/pyrite/recipes/glow_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/glow_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"C":{"item":"pyrite:glow_dye"},"D":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:glow_bricks","count":4}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"D":{"item":"pyrite:glow_dye"},"C":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:glow_bricks","count":8}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/glow_terracotta_bricks.json b/common/src/main/resources/data/pyrite/recipes/glow_terracotta_bricks.json index f74376f88..4c87fce37 100644 --- a/common/src/main/resources/data/pyrite/recipes/glow_terracotta_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/glow_terracotta_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"pyrite:glow_terracotta"}},"result":{"item":"pyrite:glow_terracotta_bricks","count":3}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"pyrite:glow_terracotta"}},"result":{"item":"pyrite:glow_terracotta_bricks","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/granite_brick_slab.json b/common/src/main/resources/data/pyrite/recipes/granite_brick_slab.json new file mode 100644 index 000000000..678fc035c --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/granite_brick_slab.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["CCC"],"key":{"C":{"item":"pyrite:granite_bricks"}},"result":{"item":"pyrite:granite_brick_slab","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/granite_brick_slab_stonecutting.json b/common/src/main/resources/data/pyrite/recipes/granite_brick_slab_stonecutting.json new file mode 100644 index 000000000..570176fe3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/granite_brick_slab_stonecutting.json @@ -0,0 +1 @@ +{"type":"minecraft:stonecutting","ingredient":{"item":"pyrite:granite_bricks"},"result":"pyrite:granite_brick_slab","count":2} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/granite_brick_stairs.json b/common/src/main/resources/data/pyrite/recipes/granite_brick_stairs.json new file mode 100644 index 000000000..e50b28bbc --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/granite_brick_stairs.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["C ","CC ","CCC"],"key":{"C":{"item":"pyrite:granite_bricks"}},"result":{"item":"pyrite:granite_brick_stairs","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/granite_brick_stairs_stonecutting.json b/common/src/main/resources/data/pyrite/recipes/granite_brick_stairs_stonecutting.json new file mode 100644 index 000000000..eda4e18bd --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/granite_brick_stairs_stonecutting.json @@ -0,0 +1 @@ +{"type":"minecraft:stonecutting","ingredient":{"item":"pyrite:granite_bricks"},"result":"pyrite:granite_brick_stairs","count":1} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/granite_brick_wall.json b/common/src/main/resources/data/pyrite/recipes/granite_brick_wall.json new file mode 100644 index 000000000..371ca39ee --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/granite_brick_wall.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["CCC","CCC"],"key":{"C":{"item":"pyrite:granite_bricks"}},"result":{"item":"pyrite:granite_brick_wall","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/granite_brick_wall_gate.json b/common/src/main/resources/data/pyrite/recipes/granite_brick_wall_gate.json new file mode 100644 index 000000000..c1f10e1c1 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/granite_brick_wall_gate.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["SCS","SCS"],"key":{"C":{"item":"pyrite:granite_bricks"},"S":{"item":"pyrite:granite_brick_wall"}},"result":{"item":"pyrite:granite_brick_wall_gate","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/granite_brick_wall_gate_stonecutting.json b/common/src/main/resources/data/pyrite/recipes/granite_brick_wall_gate_stonecutting.json new file mode 100644 index 000000000..f6cfa9c7c --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/granite_brick_wall_gate_stonecutting.json @@ -0,0 +1 @@ +{"type":"minecraft:stonecutting","ingredient":{"item":"pyrite:granite_bricks"},"result":"pyrite:granite_brick_wall_gate","count":1} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/granite_brick_wall_stonecutting.json b/common/src/main/resources/data/pyrite/recipes/granite_brick_wall_stonecutting.json new file mode 100644 index 000000000..5097c4d93 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/granite_brick_wall_stonecutting.json @@ -0,0 +1 @@ +{"type":"minecraft:stonecutting","ingredient":{"item":"pyrite:granite_bricks"},"result":"pyrite:granite_brick_wall","count":1} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/granite_bricks.json b/common/src/main/resources/data/pyrite/recipes/granite_bricks.json new file mode 100644 index 000000000..2903bbd6f --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/granite_bricks.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["DD","DD"],"key":{"D":{"item":"minecraft:polished_granite"}},"result":{"item":"pyrite:granite_bricks","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/granite_bricks_stonecutting.json b/common/src/main/resources/data/pyrite/recipes/granite_bricks_stonecutting.json new file mode 100644 index 000000000..7b4ea70dd --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/granite_bricks_stonecutting.json @@ -0,0 +1 @@ +{"type":"minecraft:stonecutting","ingredient":{"item":"minecraft:polished_granite"},"result":"pyrite:granite_bricks","count":1} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/gray_bricks.json b/common/src/main/resources/data/pyrite/recipes/gray_bricks.json index 64aa715a9..7100acd99 100644 --- a/common/src/main/resources/data/pyrite/recipes/gray_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/gray_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"C":{"item":"minecraft:gray_dye"},"D":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:gray_bricks","count":4}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"D":{"item":"minecraft:gray_dye"},"C":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:gray_bricks","count":8}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/gray_terracotta_bricks.json b/common/src/main/resources/data/pyrite/recipes/gray_terracotta_bricks.json index 553406a96..fc67d13b1 100644 --- a/common/src/main/resources/data/pyrite/recipes/gray_terracotta_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/gray_terracotta_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"minecraft:gray_terracotta"}},"result":{"item":"pyrite:gray_terracotta_bricks","count":3}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"minecraft:gray_terracotta"}},"result":{"item":"pyrite:gray_terracotta_bricks","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/green_bricks.json b/common/src/main/resources/data/pyrite/recipes/green_bricks.json index ca4275bfa..dba90cdf9 100644 --- a/common/src/main/resources/data/pyrite/recipes/green_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/green_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"C":{"item":"minecraft:green_dye"},"D":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:green_bricks","count":4}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"D":{"item":"minecraft:green_dye"},"C":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:green_bricks","count":8}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/green_terracotta_bricks.json b/common/src/main/resources/data/pyrite/recipes/green_terracotta_bricks.json index 57f779012..e7cc91f14 100644 --- a/common/src/main/resources/data/pyrite/recipes/green_terracotta_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/green_terracotta_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"minecraft:green_terracotta"}},"result":{"item":"pyrite:green_terracotta_bricks","count":3}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"minecraft:green_terracotta"}},"result":{"item":"pyrite:green_terracotta_bricks","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/hellfire_wall_gate.json b/common/src/main/resources/data/pyrite/recipes/hellfire_wall_gate.json new file mode 100644 index 000000000..fa1789a35 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/hellfire_wall_gate.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["SCS","SCS"],"key":{"C":{"item":"aether:hellfire_stone"},"S":{"item":"aether:hellfire_stone_wall"}},"fabric:load_conditions":[{"condition":"fabric:all_mods_loaded","values":["aether"]}],"neoforge:conditions":[{"type":"neoforge:mod_loaded","modid":"aether"}],"result":{"item":"pyrite:hellfire_wall_gate","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/holystone_brick_wall_gate.json b/common/src/main/resources/data/pyrite/recipes/holystone_brick_wall_gate.json new file mode 100644 index 000000000..ab0c4ea1a --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/holystone_brick_wall_gate.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["SCS","SCS"],"key":{"C":{"item":"aether:holystone_bricks"},"S":{"item":"aether:holystone_brick_wall"}},"fabric:load_conditions":[{"condition":"fabric:all_mods_loaded","values":["aether"]}],"neoforge:conditions":[{"type":"neoforge:mod_loaded","modid":"aether"}],"result":{"item":"pyrite:holystone_brick_wall_gate","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/holystone_wall_gate.json b/common/src/main/resources/data/pyrite/recipes/holystone_wall_gate.json new file mode 100644 index 000000000..222cd9f6a --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/holystone_wall_gate.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["SCS","SCS"],"key":{"C":{"item":"aether:holystone"},"S":{"item":"aether:holystone_wall"}},"fabric:load_conditions":[{"condition":"fabric:all_mods_loaded","values":["aether"]}],"neoforge:conditions":[{"type":"neoforge:mod_loaded","modid":"aether"}],"result":{"item":"pyrite:holystone_wall_gate","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/honey_bricks.json b/common/src/main/resources/data/pyrite/recipes/honey_bricks.json index 7b28f473d..513f3285b 100644 --- a/common/src/main/resources/data/pyrite/recipes/honey_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/honey_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"C":{"item":"pyrite:honey_dye"},"D":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:honey_bricks","count":4}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"D":{"item":"pyrite:honey_dye"},"C":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:honey_bricks","count":8}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/honey_terracotta_bricks.json b/common/src/main/resources/data/pyrite/recipes/honey_terracotta_bricks.json index 8a82c423f..487f975dc 100644 --- a/common/src/main/resources/data/pyrite/recipes/honey_terracotta_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/honey_terracotta_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"pyrite:honey_terracotta"}},"result":{"item":"pyrite:honey_terracotta_bricks","count":3}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"pyrite:honey_terracotta"}},"result":{"item":"pyrite:honey_terracotta_bricks","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/icestone_wall_gate.json b/common/src/main/resources/data/pyrite/recipes/icestone_wall_gate.json new file mode 100644 index 000000000..7f6b0bdeb --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/icestone_wall_gate.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["SCS","SCS"],"key":{"C":{"item":"aether:icestone"},"S":{"item":"aether:icestone_wall"}},"fabric:load_conditions":[{"condition":"fabric:all_mods_loaded","values":["aether"]}],"neoforge:conditions":[{"type":"neoforge:mod_loaded","modid":"aether"}],"result":{"item":"pyrite:icestone_wall_gate","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/light_blue_bricks.json b/common/src/main/resources/data/pyrite/recipes/light_blue_bricks.json index a86415a5a..a7e8adf28 100644 --- a/common/src/main/resources/data/pyrite/recipes/light_blue_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/light_blue_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"C":{"item":"minecraft:light_blue_dye"},"D":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:light_blue_bricks","count":4}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"D":{"item":"minecraft:light_blue_dye"},"C":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:light_blue_bricks","count":8}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/light_blue_terracotta_bricks.json b/common/src/main/resources/data/pyrite/recipes/light_blue_terracotta_bricks.json index 3df34a0aa..08df486e5 100644 --- a/common/src/main/resources/data/pyrite/recipes/light_blue_terracotta_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/light_blue_terracotta_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"minecraft:light_blue_terracotta"}},"result":{"item":"pyrite:light_blue_terracotta_bricks","count":3}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"minecraft:light_blue_terracotta"}},"result":{"item":"pyrite:light_blue_terracotta_bricks","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/light_gray_bricks.json b/common/src/main/resources/data/pyrite/recipes/light_gray_bricks.json index 141cfa176..9c3fe7ef5 100644 --- a/common/src/main/resources/data/pyrite/recipes/light_gray_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/light_gray_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"C":{"item":"minecraft:light_gray_dye"},"D":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:light_gray_bricks","count":4}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"D":{"item":"minecraft:light_gray_dye"},"C":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:light_gray_bricks","count":8}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/light_gray_terracotta_bricks.json b/common/src/main/resources/data/pyrite/recipes/light_gray_terracotta_bricks.json index f544e8983..509f6e028 100644 --- a/common/src/main/resources/data/pyrite/recipes/light_gray_terracotta_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/light_gray_terracotta_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"minecraft:light_gray_terracotta"}},"result":{"item":"pyrite:light_gray_terracotta_bricks","count":3}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"minecraft:light_gray_terracotta"}},"result":{"item":"pyrite:light_gray_terracotta_bricks","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/lime_bricks.json b/common/src/main/resources/data/pyrite/recipes/lime_bricks.json index b9e5264b6..406354b2d 100644 --- a/common/src/main/resources/data/pyrite/recipes/lime_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/lime_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"C":{"item":"minecraft:lime_dye"},"D":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:lime_bricks","count":4}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"D":{"item":"minecraft:lime_dye"},"C":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:lime_bricks","count":8}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/lime_terracotta_bricks.json b/common/src/main/resources/data/pyrite/recipes/lime_terracotta_bricks.json index 5b7df04a2..996b4d191 100644 --- a/common/src/main/resources/data/pyrite/recipes/lime_terracotta_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/lime_terracotta_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"minecraft:lime_terracotta"}},"result":{"item":"pyrite:lime_terracotta_bricks","count":3}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"minecraft:lime_terracotta"}},"result":{"item":"pyrite:lime_terracotta_bricks","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/magenta_bricks.json b/common/src/main/resources/data/pyrite/recipes/magenta_bricks.json index 43b1e7745..b1d7566a3 100644 --- a/common/src/main/resources/data/pyrite/recipes/magenta_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/magenta_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"C":{"item":"minecraft:magenta_dye"},"D":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:magenta_bricks","count":4}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"D":{"item":"minecraft:magenta_dye"},"C":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:magenta_bricks","count":8}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/magenta_terracotta_bricks.json b/common/src/main/resources/data/pyrite/recipes/magenta_terracotta_bricks.json index 5415d6c81..b618e86ac 100644 --- a/common/src/main/resources/data/pyrite/recipes/magenta_terracotta_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/magenta_terracotta_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"minecraft:magenta_terracotta"}},"result":{"item":"pyrite:magenta_terracotta_bricks","count":3}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"minecraft:magenta_terracotta"}},"result":{"item":"pyrite:magenta_terracotta_bricks","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_andesite_brick_slab.json b/common/src/main/resources/data/pyrite/recipes/mossy_andesite_brick_slab.json new file mode 100644 index 000000000..c04d639f9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_andesite_brick_slab.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["CCC"],"key":{"C":{"item":"pyrite:mossy_andesite_bricks"}},"result":{"item":"pyrite:mossy_andesite_brick_slab","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_andesite_brick_stairs.json b/common/src/main/resources/data/pyrite/recipes/mossy_andesite_brick_stairs.json new file mode 100644 index 000000000..1a4abd812 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_andesite_brick_stairs.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["C ","CC ","CCC"],"key":{"C":{"item":"pyrite:mossy_andesite_bricks"}},"result":{"item":"pyrite:mossy_andesite_brick_stairs","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_andesite_brick_wall.json b/common/src/main/resources/data/pyrite/recipes/mossy_andesite_brick_wall.json new file mode 100644 index 000000000..9fa2b4ce4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_andesite_brick_wall.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["CCC","CCC"],"key":{"C":{"item":"pyrite:mossy_andesite_bricks"}},"result":{"item":"pyrite:mossy_andesite_brick_wall","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_andesite_brick_wall_gate.json b/common/src/main/resources/data/pyrite/recipes/mossy_andesite_brick_wall_gate.json new file mode 100644 index 000000000..565ee98f2 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_andesite_brick_wall_gate.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["SCS","SCS"],"key":{"C":{"item":"pyrite:mossy_andesite_bricks"},"S":{"item":"pyrite:mossy_andesite_brick_wall"}},"result":{"item":"pyrite:mossy_andesite_brick_wall_gate","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_andesite_brick_wall_gate_stonecutting.json b/common/src/main/resources/data/pyrite/recipes/mossy_andesite_brick_wall_gate_stonecutting.json new file mode 100644 index 000000000..48f98ee39 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_andesite_brick_wall_gate_stonecutting.json @@ -0,0 +1 @@ +{"type":"minecraft:stonecutting","ingredient":{"item":"pyrite:mossy_andesite_bricks"},"result":"pyrite:mossy_andesite_brick_wall_gate","count":1} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_andesite_brick_wall_stonecutting.json b/common/src/main/resources/data/pyrite/recipes/mossy_andesite_brick_wall_stonecutting.json new file mode 100644 index 000000000..98f3a8ef1 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_andesite_brick_wall_stonecutting.json @@ -0,0 +1 @@ +{"type":"minecraft:stonecutting","ingredient":{"item":"pyrite:mossy_andesite_bricks"},"result":"pyrite:mossy_andesite_brick_wall","count":1} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_andesite_bricks.json b/common/src/main/resources/data/pyrite/recipes/mossy_andesite_bricks.json new file mode 100644 index 000000000..fc0f383c8 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_andesite_bricks.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shapeless","ingredients":[{"item":"pyrite:andesite_bricks"},{"item":"minecraft:vine"}],"result":{"item":"pyrite:mossy_andesite_bricks","count":1}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_andesite_bricks_from_moss_block.json b/common/src/main/resources/data/pyrite/recipes/mossy_andesite_bricks_from_moss_block.json new file mode 100644 index 000000000..beecdfc89 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_andesite_bricks_from_moss_block.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shapeless","ingredients":[{"item":"pyrite:andesite_bricks"},{"item":"minecraft:moss_block"}],"result":{"item":"pyrite:mossy_andesite_bricks","count":1}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_calcite_brick_slab.json b/common/src/main/resources/data/pyrite/recipes/mossy_calcite_brick_slab.json new file mode 100644 index 000000000..b34e86dec --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_calcite_brick_slab.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["CCC"],"key":{"C":{"item":"pyrite:mossy_calcite_bricks"}},"result":{"item":"pyrite:mossy_calcite_brick_slab","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_calcite_brick_stairs.json b/common/src/main/resources/data/pyrite/recipes/mossy_calcite_brick_stairs.json new file mode 100644 index 000000000..22487e470 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_calcite_brick_stairs.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["C ","CC ","CCC"],"key":{"C":{"item":"pyrite:mossy_calcite_bricks"}},"result":{"item":"pyrite:mossy_calcite_brick_stairs","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_calcite_brick_wall.json b/common/src/main/resources/data/pyrite/recipes/mossy_calcite_brick_wall.json new file mode 100644 index 000000000..2da61f12d --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_calcite_brick_wall.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["CCC","CCC"],"key":{"C":{"item":"pyrite:mossy_calcite_bricks"}},"result":{"item":"pyrite:mossy_calcite_brick_wall","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_calcite_brick_wall_gate.json b/common/src/main/resources/data/pyrite/recipes/mossy_calcite_brick_wall_gate.json new file mode 100644 index 000000000..a3c54636a --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_calcite_brick_wall_gate.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["SCS","SCS"],"key":{"C":{"item":"pyrite:mossy_calcite_bricks"},"S":{"item":"pyrite:mossy_calcite_brick_wall"}},"result":{"item":"pyrite:mossy_calcite_brick_wall_gate","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_calcite_brick_wall_gate_stonecutting.json b/common/src/main/resources/data/pyrite/recipes/mossy_calcite_brick_wall_gate_stonecutting.json new file mode 100644 index 000000000..c9ca0b8a2 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_calcite_brick_wall_gate_stonecutting.json @@ -0,0 +1 @@ +{"type":"minecraft:stonecutting","ingredient":{"item":"pyrite:mossy_calcite_bricks"},"result":"pyrite:mossy_calcite_brick_wall_gate","count":1} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_calcite_brick_wall_stonecutting.json b/common/src/main/resources/data/pyrite/recipes/mossy_calcite_brick_wall_stonecutting.json new file mode 100644 index 000000000..656221c36 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_calcite_brick_wall_stonecutting.json @@ -0,0 +1 @@ +{"type":"minecraft:stonecutting","ingredient":{"item":"pyrite:mossy_calcite_bricks"},"result":"pyrite:mossy_calcite_brick_wall","count":1} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_calcite_bricks.json b/common/src/main/resources/data/pyrite/recipes/mossy_calcite_bricks.json new file mode 100644 index 000000000..e92221e80 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_calcite_bricks.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shapeless","ingredients":[{"item":"pyrite:calcite_bricks"},{"item":"minecraft:vine"}],"result":{"item":"pyrite:mossy_calcite_bricks","count":1}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_calcite_bricks_from_moss_block.json b/common/src/main/resources/data/pyrite/recipes/mossy_calcite_bricks_from_moss_block.json new file mode 100644 index 000000000..d977ae6d2 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_calcite_bricks_from_moss_block.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shapeless","ingredients":[{"item":"pyrite:calcite_bricks"},{"item":"minecraft:moss_block"}],"result":{"item":"pyrite:mossy_calcite_bricks","count":1}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_cobblestone_bricks_from_moss_block.json b/common/src/main/resources/data/pyrite/recipes/mossy_cobblestone_bricks_from_moss_block.json index 98768d98c..0086c129e 100644 --- a/common/src/main/resources/data/pyrite/recipes/mossy_cobblestone_bricks_from_moss_block.json +++ b/common/src/main/resources/data/pyrite/recipes/mossy_cobblestone_bricks_from_moss_block.json @@ -1,14 +1 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "pyrite:cobblestone_bricks" - }, - { - "item": "minecraft:moss_block" - } - ], - "result": { - "item": "pyrite:mossy_cobblestone_bricks" - } -} \ No newline at end of file +{"type":"minecraft:crafting_shapeless","ingredients":[{"item":"pyrite:cobblestone_bricks"},{"item":"minecraft:moss_block"}],"result":{"item":"pyrite:mossy_cobblestone_bricks","count":1}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_deepslate_brick_slab.json b/common/src/main/resources/data/pyrite/recipes/mossy_deepslate_brick_slab.json new file mode 100644 index 000000000..6c8cfc0d0 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_deepslate_brick_slab.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["CCC"],"key":{"C":{"item":"pyrite:mossy_deepslate_bricks"}},"result":{"item":"pyrite:mossy_deepslate_brick_slab","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_deepslate_brick_stairs.json b/common/src/main/resources/data/pyrite/recipes/mossy_deepslate_brick_stairs.json new file mode 100644 index 000000000..659aa1bdf --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_deepslate_brick_stairs.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["C ","CC ","CCC"],"key":{"C":{"item":"pyrite:mossy_deepslate_bricks"}},"result":{"item":"pyrite:mossy_deepslate_brick_stairs","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_deepslate_brick_wall.json b/common/src/main/resources/data/pyrite/recipes/mossy_deepslate_brick_wall.json new file mode 100644 index 000000000..d76f78c66 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_deepslate_brick_wall.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["CCC","CCC"],"key":{"C":{"item":"pyrite:mossy_deepslate_bricks"}},"result":{"item":"pyrite:mossy_deepslate_brick_wall","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_deepslate_brick_wall_gate.json b/common/src/main/resources/data/pyrite/recipes/mossy_deepslate_brick_wall_gate.json new file mode 100644 index 000000000..75287e1de --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_deepslate_brick_wall_gate.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["SCS","SCS"],"key":{"C":{"item":"pyrite:mossy_deepslate_bricks"},"S":{"item":"pyrite:mossy_deepslate_brick_wall"}},"result":{"item":"pyrite:mossy_deepslate_brick_wall_gate","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_deepslate_brick_wall_gate_stonecutting.json b/common/src/main/resources/data/pyrite/recipes/mossy_deepslate_brick_wall_gate_stonecutting.json new file mode 100644 index 000000000..de2ce03e3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_deepslate_brick_wall_gate_stonecutting.json @@ -0,0 +1 @@ +{"type":"minecraft:stonecutting","ingredient":{"item":"pyrite:mossy_deepslate_bricks"},"result":"pyrite:mossy_deepslate_brick_wall_gate","count":1} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_deepslate_brick_wall_stonecutting.json b/common/src/main/resources/data/pyrite/recipes/mossy_deepslate_brick_wall_stonecutting.json new file mode 100644 index 000000000..f0cdc3de9 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_deepslate_brick_wall_stonecutting.json @@ -0,0 +1 @@ +{"type":"minecraft:stonecutting","ingredient":{"item":"pyrite:mossy_deepslate_bricks"},"result":"pyrite:mossy_deepslate_brick_wall","count":1} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_deepslate_bricks.json b/common/src/main/resources/data/pyrite/recipes/mossy_deepslate_bricks.json new file mode 100644 index 000000000..c3c399056 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_deepslate_bricks.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shapeless","ingredients":[{"item":"minecraft:deepslate_bricks"},{"item":"minecraft:vine"}],"result":{"item":"pyrite:mossy_deepslate_bricks","count":1}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_deepslate_bricks_from_moss_block.json b/common/src/main/resources/data/pyrite/recipes/mossy_deepslate_bricks_from_moss_block.json new file mode 100644 index 000000000..177f703cb --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_deepslate_bricks_from_moss_block.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shapeless","ingredients":[{"item":"minecraft:deepslate_bricks"},{"item":"minecraft:moss_block"}],"result":{"item":"pyrite:mossy_deepslate_bricks","count":1}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_diorite_brick_slab.json b/common/src/main/resources/data/pyrite/recipes/mossy_diorite_brick_slab.json new file mode 100644 index 000000000..f37464edd --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_diorite_brick_slab.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["CCC"],"key":{"C":{"item":"pyrite:mossy_diorite_bricks"}},"result":{"item":"pyrite:mossy_diorite_brick_slab","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_diorite_brick_stairs.json b/common/src/main/resources/data/pyrite/recipes/mossy_diorite_brick_stairs.json new file mode 100644 index 000000000..cdc58a14c --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_diorite_brick_stairs.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["C ","CC ","CCC"],"key":{"C":{"item":"pyrite:mossy_diorite_bricks"}},"result":{"item":"pyrite:mossy_diorite_brick_stairs","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_diorite_brick_wall.json b/common/src/main/resources/data/pyrite/recipes/mossy_diorite_brick_wall.json new file mode 100644 index 000000000..c2445e098 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_diorite_brick_wall.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["CCC","CCC"],"key":{"C":{"item":"pyrite:mossy_diorite_bricks"}},"result":{"item":"pyrite:mossy_diorite_brick_wall","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_diorite_brick_wall_gate.json b/common/src/main/resources/data/pyrite/recipes/mossy_diorite_brick_wall_gate.json new file mode 100644 index 000000000..158d42c79 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_diorite_brick_wall_gate.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["SCS","SCS"],"key":{"C":{"item":"pyrite:mossy_diorite_bricks"},"S":{"item":"pyrite:mossy_diorite_brick_wall"}},"result":{"item":"pyrite:mossy_diorite_brick_wall_gate","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_diorite_brick_wall_gate_stonecutting.json b/common/src/main/resources/data/pyrite/recipes/mossy_diorite_brick_wall_gate_stonecutting.json new file mode 100644 index 000000000..29c7dfb7b --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_diorite_brick_wall_gate_stonecutting.json @@ -0,0 +1 @@ +{"type":"minecraft:stonecutting","ingredient":{"item":"pyrite:mossy_diorite_bricks"},"result":"pyrite:mossy_diorite_brick_wall_gate","count":1} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_diorite_brick_wall_stonecutting.json b/common/src/main/resources/data/pyrite/recipes/mossy_diorite_brick_wall_stonecutting.json new file mode 100644 index 000000000..2ad7d183f --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_diorite_brick_wall_stonecutting.json @@ -0,0 +1 @@ +{"type":"minecraft:stonecutting","ingredient":{"item":"pyrite:mossy_diorite_bricks"},"result":"pyrite:mossy_diorite_brick_wall","count":1} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_diorite_bricks.json b/common/src/main/resources/data/pyrite/recipes/mossy_diorite_bricks.json new file mode 100644 index 000000000..e6ba33351 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_diorite_bricks.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shapeless","ingredients":[{"item":"pyrite:diorite_bricks"},{"item":"minecraft:vine"}],"result":{"item":"pyrite:mossy_diorite_bricks","count":1}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_diorite_bricks_from_moss_block.json b/common/src/main/resources/data/pyrite/recipes/mossy_diorite_bricks_from_moss_block.json new file mode 100644 index 000000000..69b6d1242 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_diorite_bricks_from_moss_block.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shapeless","ingredients":[{"item":"pyrite:diorite_bricks"},{"item":"minecraft:moss_block"}],"result":{"item":"pyrite:mossy_diorite_bricks","count":1}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_granite_brick_slab.json b/common/src/main/resources/data/pyrite/recipes/mossy_granite_brick_slab.json new file mode 100644 index 000000000..9c8268091 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_granite_brick_slab.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["CCC"],"key":{"C":{"item":"pyrite:mossy_granite_bricks"}},"result":{"item":"pyrite:mossy_granite_brick_slab","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_granite_brick_stairs.json b/common/src/main/resources/data/pyrite/recipes/mossy_granite_brick_stairs.json new file mode 100644 index 000000000..13bbc6034 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_granite_brick_stairs.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["C ","CC ","CCC"],"key":{"C":{"item":"pyrite:mossy_granite_bricks"}},"result":{"item":"pyrite:mossy_granite_brick_stairs","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_granite_brick_wall.json b/common/src/main/resources/data/pyrite/recipes/mossy_granite_brick_wall.json new file mode 100644 index 000000000..4032059d7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_granite_brick_wall.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["CCC","CCC"],"key":{"C":{"item":"pyrite:mossy_granite_bricks"}},"result":{"item":"pyrite:mossy_granite_brick_wall","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_granite_brick_wall_gate.json b/common/src/main/resources/data/pyrite/recipes/mossy_granite_brick_wall_gate.json new file mode 100644 index 000000000..39e90ac3b --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_granite_brick_wall_gate.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["SCS","SCS"],"key":{"C":{"item":"pyrite:mossy_granite_bricks"},"S":{"item":"pyrite:mossy_granite_brick_wall"}},"result":{"item":"pyrite:mossy_granite_brick_wall_gate","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_granite_brick_wall_gate_stonecutting.json b/common/src/main/resources/data/pyrite/recipes/mossy_granite_brick_wall_gate_stonecutting.json new file mode 100644 index 000000000..3565f2d49 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_granite_brick_wall_gate_stonecutting.json @@ -0,0 +1 @@ +{"type":"minecraft:stonecutting","ingredient":{"item":"pyrite:mossy_granite_bricks"},"result":"pyrite:mossy_granite_brick_wall_gate","count":1} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_granite_brick_wall_stonecutting.json b/common/src/main/resources/data/pyrite/recipes/mossy_granite_brick_wall_stonecutting.json new file mode 100644 index 000000000..a6796b4cc --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_granite_brick_wall_stonecutting.json @@ -0,0 +1 @@ +{"type":"minecraft:stonecutting","ingredient":{"item":"pyrite:mossy_granite_bricks"},"result":"pyrite:mossy_granite_brick_wall","count":1} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_granite_bricks.json b/common/src/main/resources/data/pyrite/recipes/mossy_granite_bricks.json new file mode 100644 index 000000000..abaaf170c --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_granite_bricks.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shapeless","ingredients":[{"item":"pyrite:granite_bricks"},{"item":"minecraft:vine"}],"result":{"item":"pyrite:mossy_granite_bricks","count":1}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_granite_bricks_from_moss_block.json b/common/src/main/resources/data/pyrite/recipes/mossy_granite_bricks_from_moss_block.json new file mode 100644 index 000000000..27ed2b2e8 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_granite_bricks_from_moss_block.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shapeless","ingredients":[{"item":"pyrite:granite_bricks"},{"item":"minecraft:moss_block"}],"result":{"item":"pyrite:mossy_granite_bricks","count":1}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_holystone_wall_gate.json b/common/src/main/resources/data/pyrite/recipes/mossy_holystone_wall_gate.json new file mode 100644 index 000000000..36c1bca99 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_holystone_wall_gate.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["SCS","SCS"],"key":{"C":{"item":"aether:mossy_holystone"},"S":{"item":"aether:mossy_holystone_wall"}},"fabric:load_conditions":[{"condition":"fabric:all_mods_loaded","values":["aether"]}],"neoforge:conditions":[{"type":"neoforge:mod_loaded","modid":"aether"}],"result":{"item":"pyrite:mossy_holystone_wall_gate","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_smooth_stone_brick_slab.json b/common/src/main/resources/data/pyrite/recipes/mossy_smooth_stone_brick_slab.json new file mode 100644 index 000000000..71ea7d895 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_smooth_stone_brick_slab.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["CCC"],"key":{"C":{"item":"pyrite:mossy_smooth_stone_bricks"}},"result":{"item":"pyrite:mossy_smooth_stone_brick_slab","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_smooth_stone_brick_stairs.json b/common/src/main/resources/data/pyrite/recipes/mossy_smooth_stone_brick_stairs.json new file mode 100644 index 000000000..69181b933 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_smooth_stone_brick_stairs.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["C ","CC ","CCC"],"key":{"C":{"item":"pyrite:mossy_smooth_stone_bricks"}},"result":{"item":"pyrite:mossy_smooth_stone_brick_stairs","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_smooth_stone_brick_wall.json b/common/src/main/resources/data/pyrite/recipes/mossy_smooth_stone_brick_wall.json new file mode 100644 index 000000000..c383022a0 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_smooth_stone_brick_wall.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["CCC","CCC"],"key":{"C":{"item":"pyrite:mossy_smooth_stone_bricks"}},"result":{"item":"pyrite:mossy_smooth_stone_brick_wall","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_smooth_stone_brick_wall_gate.json b/common/src/main/resources/data/pyrite/recipes/mossy_smooth_stone_brick_wall_gate.json new file mode 100644 index 000000000..82b0e67c6 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_smooth_stone_brick_wall_gate.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shaped","pattern":["SCS","SCS"],"key":{"C":{"item":"pyrite:mossy_smooth_stone_bricks"},"S":{"item":"pyrite:mossy_smooth_stone_brick_wall"}},"result":{"item":"pyrite:mossy_smooth_stone_brick_wall_gate","count":6}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_smooth_stone_brick_wall_gate_stonecutting.json b/common/src/main/resources/data/pyrite/recipes/mossy_smooth_stone_brick_wall_gate_stonecutting.json new file mode 100644 index 000000000..c01e0519d --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_smooth_stone_brick_wall_gate_stonecutting.json @@ -0,0 +1 @@ +{"type":"minecraft:stonecutting","ingredient":{"item":"pyrite:mossy_smooth_stone_bricks"},"result":"pyrite:mossy_smooth_stone_brick_wall_gate","count":1} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_smooth_stone_brick_wall_stonecutting.json b/common/src/main/resources/data/pyrite/recipes/mossy_smooth_stone_brick_wall_stonecutting.json new file mode 100644 index 000000000..9097811f4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_smooth_stone_brick_wall_stonecutting.json @@ -0,0 +1 @@ +{"type":"minecraft:stonecutting","ingredient":{"item":"pyrite:mossy_smooth_stone_bricks"},"result":"pyrite:mossy_smooth_stone_brick_wall","count":1} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_smooth_stone_bricks.json b/common/src/main/resources/data/pyrite/recipes/mossy_smooth_stone_bricks.json new file mode 100644 index 000000000..b79fa8c5a --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_smooth_stone_bricks.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shapeless","ingredients":[{"item":"pyrite:smooth_stone_bricks"},{"item":"minecraft:vine"}],"result":{"item":"pyrite:mossy_smooth_stone_bricks","count":1}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/mossy_smooth_stone_bricks_from_moss_block.json b/common/src/main/resources/data/pyrite/recipes/mossy_smooth_stone_bricks_from_moss_block.json new file mode 100644 index 000000000..de542ef01 --- /dev/null +++ b/common/src/main/resources/data/pyrite/recipes/mossy_smooth_stone_bricks_from_moss_block.json @@ -0,0 +1 @@ +{"type":"minecraft:crafting_shapeless","ingredients":[{"item":"pyrite:smooth_stone_bricks"},{"item":"minecraft:moss_block"}],"result":{"item":"pyrite:mossy_smooth_stone_bricks","count":1}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/nostalgia_bricks.json b/common/src/main/resources/data/pyrite/recipes/nostalgia_bricks.json index 864d6512a..13e194c54 100644 --- a/common/src/main/resources/data/pyrite/recipes/nostalgia_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/nostalgia_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"C":{"item":"pyrite:nostalgia_dye"},"D":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:nostalgia_bricks","count":4}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"D":{"item":"pyrite:nostalgia_dye"},"C":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:nostalgia_bricks","count":8}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/nostalgia_terracotta_bricks.json b/common/src/main/resources/data/pyrite/recipes/nostalgia_terracotta_bricks.json index af417e29b..3720ad151 100644 --- a/common/src/main/resources/data/pyrite/recipes/nostalgia_terracotta_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/nostalgia_terracotta_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"pyrite:nostalgia_terracotta"}},"result":{"item":"pyrite:nostalgia_terracotta_bricks","count":3}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"pyrite:nostalgia_terracotta"}},"result":{"item":"pyrite:nostalgia_terracotta_bricks","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/orange_bricks.json b/common/src/main/resources/data/pyrite/recipes/orange_bricks.json index c92cb416b..227c5d09d 100644 --- a/common/src/main/resources/data/pyrite/recipes/orange_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/orange_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"C":{"item":"minecraft:orange_dye"},"D":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:orange_bricks","count":4}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"D":{"item":"minecraft:orange_dye"},"C":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:orange_bricks","count":8}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/orange_terracotta_bricks.json b/common/src/main/resources/data/pyrite/recipes/orange_terracotta_bricks.json index 5ddd84092..b60a5c9ca 100644 --- a/common/src/main/resources/data/pyrite/recipes/orange_terracotta_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/orange_terracotta_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"minecraft:orange_terracotta"}},"result":{"item":"pyrite:orange_terracotta_bricks","count":3}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"minecraft:orange_terracotta"}},"result":{"item":"pyrite:orange_terracotta_bricks","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/pink_bricks.json b/common/src/main/resources/data/pyrite/recipes/pink_bricks.json index f3c6d3db3..1934bd05a 100644 --- a/common/src/main/resources/data/pyrite/recipes/pink_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/pink_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"C":{"item":"minecraft:pink_dye"},"D":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:pink_bricks","count":4}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"D":{"item":"minecraft:pink_dye"},"C":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:pink_bricks","count":8}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/pink_terracotta_bricks.json b/common/src/main/resources/data/pyrite/recipes/pink_terracotta_bricks.json index a6bbc4f4f..95572c9d7 100644 --- a/common/src/main/resources/data/pyrite/recipes/pink_terracotta_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/pink_terracotta_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"minecraft:pink_terracotta"}},"result":{"item":"pyrite:pink_terracotta_bricks","count":3}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"minecraft:pink_terracotta"}},"result":{"item":"pyrite:pink_terracotta_bricks","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/poisonous_bricks.json b/common/src/main/resources/data/pyrite/recipes/poisonous_bricks.json index dbeee7c9b..459faa12e 100644 --- a/common/src/main/resources/data/pyrite/recipes/poisonous_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/poisonous_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"C":{"item":"pyrite:poisonous_dye"},"D":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:poisonous_bricks","count":4}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"D":{"item":"pyrite:poisonous_dye"},"C":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:poisonous_bricks","count":8}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/poisonous_terracotta_bricks.json b/common/src/main/resources/data/pyrite/recipes/poisonous_terracotta_bricks.json index a037ae395..86900a9aa 100644 --- a/common/src/main/resources/data/pyrite/recipes/poisonous_terracotta_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/poisonous_terracotta_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"pyrite:poisonous_terracotta"}},"result":{"item":"pyrite:poisonous_terracotta_bricks","count":3}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"pyrite:poisonous_terracotta"}},"result":{"item":"pyrite:poisonous_terracotta_bricks","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/purple_bricks.json b/common/src/main/resources/data/pyrite/recipes/purple_bricks.json index 4f4d1bb77..286b7b5d3 100644 --- a/common/src/main/resources/data/pyrite/recipes/purple_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/purple_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"C":{"item":"minecraft:purple_dye"},"D":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:purple_bricks","count":4}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"D":{"item":"minecraft:purple_dye"},"C":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:purple_bricks","count":8}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/purple_terracotta_bricks.json b/common/src/main/resources/data/pyrite/recipes/purple_terracotta_bricks.json index a66e4d63f..87e7cab67 100644 --- a/common/src/main/resources/data/pyrite/recipes/purple_terracotta_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/purple_terracotta_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"minecraft:purple_terracotta"}},"result":{"item":"pyrite:purple_terracotta_bricks","count":3}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"minecraft:purple_terracotta"}},"result":{"item":"pyrite:purple_terracotta_bricks","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/red_bricks.json b/common/src/main/resources/data/pyrite/recipes/red_bricks.json index 42bd3fbd8..e4aad983a 100644 --- a/common/src/main/resources/data/pyrite/recipes/red_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/red_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"C":{"item":"minecraft:red_dye"},"D":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:red_bricks","count":4}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"D":{"item":"minecraft:red_dye"},"C":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:red_bricks","count":8}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/red_terracotta_bricks.json b/common/src/main/resources/data/pyrite/recipes/red_terracotta_bricks.json index 0b4e2ce70..f17a50d14 100644 --- a/common/src/main/resources/data/pyrite/recipes/red_terracotta_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/red_terracotta_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"minecraft:red_terracotta"}},"result":{"item":"pyrite:red_terracotta_bricks","count":3}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"minecraft:red_terracotta"}},"result":{"item":"pyrite:red_terracotta_bricks","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/rose_bricks.json b/common/src/main/resources/data/pyrite/recipes/rose_bricks.json index 83dc9148f..facf8dc78 100644 --- a/common/src/main/resources/data/pyrite/recipes/rose_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/rose_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"C":{"item":"pyrite:rose_dye"},"D":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:rose_bricks","count":4}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"D":{"item":"pyrite:rose_dye"},"C":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:rose_bricks","count":8}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/rose_terracotta_bricks.json b/common/src/main/resources/data/pyrite/recipes/rose_terracotta_bricks.json index 64ec6c4d9..f4844df32 100644 --- a/common/src/main/resources/data/pyrite/recipes/rose_terracotta_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/rose_terracotta_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"pyrite:rose_terracotta"}},"result":{"item":"pyrite:rose_terracotta_bricks","count":3}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"pyrite:rose_terracotta"}},"result":{"item":"pyrite:rose_terracotta_bricks","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/smooth_stone_bricks.json b/common/src/main/resources/data/pyrite/recipes/smooth_stone_bricks.json index 50e2886f5..43f9cb5d9 100644 --- a/common/src/main/resources/data/pyrite/recipes/smooth_stone_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/smooth_stone_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"minecraft:smooth_stone"}},"result":{"item":"pyrite:smooth_stone_bricks","count":4}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["DD","DD"],"key":{"D":{"item":"minecraft:smooth_stone"}},"result":{"item":"pyrite:smooth_stone_bricks","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/star_bricks.json b/common/src/main/resources/data/pyrite/recipes/star_bricks.json index e26e09405..e3ae99ca9 100644 --- a/common/src/main/resources/data/pyrite/recipes/star_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/star_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"C":{"item":"pyrite:star_dye"},"D":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:star_bricks","count":4}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"D":{"item":"pyrite:star_dye"},"C":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:star_bricks","count":8}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/star_terracotta_bricks.json b/common/src/main/resources/data/pyrite/recipes/star_terracotta_bricks.json index e5266dc4b..c33235162 100644 --- a/common/src/main/resources/data/pyrite/recipes/star_terracotta_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/star_terracotta_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"pyrite:star_terracotta"}},"result":{"item":"pyrite:star_terracotta_bricks","count":3}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"pyrite:star_terracotta"}},"result":{"item":"pyrite:star_terracotta_bricks","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/white_bricks.json b/common/src/main/resources/data/pyrite/recipes/white_bricks.json index e050ec82e..f33278140 100644 --- a/common/src/main/resources/data/pyrite/recipes/white_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/white_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"C":{"item":"minecraft:white_dye"},"D":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:white_bricks","count":4}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"D":{"item":"minecraft:white_dye"},"C":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:white_bricks","count":8}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/white_terracotta_bricks.json b/common/src/main/resources/data/pyrite/recipes/white_terracotta_bricks.json index 740506aa0..24c519394 100644 --- a/common/src/main/resources/data/pyrite/recipes/white_terracotta_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/white_terracotta_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"minecraft:white_terracotta"}},"result":{"item":"pyrite:white_terracotta_bricks","count":3}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"minecraft:white_terracotta"}},"result":{"item":"pyrite:white_terracotta_bricks","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/yellow_bricks.json b/common/src/main/resources/data/pyrite/recipes/yellow_bricks.json index 378c6e624..065b03fc9 100644 --- a/common/src/main/resources/data/pyrite/recipes/yellow_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/yellow_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"C":{"item":"minecraft:yellow_dye"},"D":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:yellow_bricks","count":4}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CCC","CDC","CCC"],"key":{"D":{"item":"minecraft:yellow_dye"},"C":{"item":"minecraft:bricks"}},"result":{"item":"pyrite:yellow_bricks","count":8}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/recipes/yellow_terracotta_bricks.json b/common/src/main/resources/data/pyrite/recipes/yellow_terracotta_bricks.json index 84c097c4b..e8c4bb7f5 100644 --- a/common/src/main/resources/data/pyrite/recipes/yellow_terracotta_bricks.json +++ b/common/src/main/resources/data/pyrite/recipes/yellow_terracotta_bricks.json @@ -1 +1 @@ -{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"minecraft:yellow_terracotta"}},"result":{"item":"pyrite:yellow_terracotta_bricks","count":3}} \ No newline at end of file +{"type":"minecraft:crafting_shaped","pattern":["CC","CC"],"key":{"C":{"item":"minecraft:yellow_terracotta"}},"result":{"item":"pyrite:yellow_terracotta_bricks","count":4}} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/amethyst.json b/common/src/main/resources/data/pyrite/tags/block/amethyst.json new file mode 100644 index 000000000..cdaa560ba --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/amethyst.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:cut_amethyst","pyrite:cut_amethyst_slab","pyrite:cut_amethyst_stairs","pyrite:smooth_amethyst","pyrite:smooth_amethyst_slab","pyrite:smooth_amethyst_stairs","pyrite:amethyst_bricks","pyrite:amethyst_pillar","pyrite:chiseled_amethyst_block","pyrite:amethyst_door","pyrite:nostalgia_amethyst_block"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/brick_slabs.json b/common/src/main/resources/data/pyrite/tags/block/brick_slabs.json new file mode 100644 index 000000000..b6a68b61a --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/brick_slabs.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:white_brick_slab","pyrite:white_terracotta_brick_slab","pyrite:orange_brick_slab","pyrite:orange_terracotta_brick_slab","pyrite:magenta_brick_slab","pyrite:magenta_terracotta_brick_slab","pyrite:light_blue_brick_slab","pyrite:light_blue_terracotta_brick_slab","pyrite:yellow_brick_slab","pyrite:yellow_terracotta_brick_slab","pyrite:lime_brick_slab","pyrite:lime_terracotta_brick_slab","pyrite:pink_brick_slab","pyrite:pink_terracotta_brick_slab","pyrite:gray_brick_slab","pyrite:gray_terracotta_brick_slab","pyrite:light_gray_brick_slab","pyrite:light_gray_terracotta_brick_slab","pyrite:cyan_brick_slab","pyrite:cyan_terracotta_brick_slab","pyrite:purple_brick_slab","pyrite:purple_terracotta_brick_slab","pyrite:blue_brick_slab","pyrite:blue_terracotta_brick_slab","pyrite:brown_brick_slab","pyrite:brown_terracotta_brick_slab","pyrite:green_brick_slab","pyrite:green_terracotta_brick_slab","pyrite:red_brick_slab","pyrite:red_terracotta_brick_slab","pyrite:black_brick_slab","pyrite:black_terracotta_brick_slab","pyrite:glow_brick_slab","pyrite:glow_terracotta_brick_slab","pyrite:dragon_brick_slab","pyrite:dragon_terracotta_brick_slab","pyrite:star_brick_slab","pyrite:star_terracotta_brick_slab","pyrite:honey_brick_slab","pyrite:honey_terracotta_brick_slab","pyrite:nostalgia_brick_slab","pyrite:nostalgia_terracotta_brick_slab","pyrite:rose_brick_slab","pyrite:rose_terracotta_brick_slab","pyrite:poisonous_brick_slab","pyrite:poisonous_terracotta_brick_slab","pyrite:cobblestone_brick_slab","pyrite:mossy_cobblestone_brick_slab","pyrite:smooth_stone_brick_slab","pyrite:mossy_smooth_stone_brick_slab","pyrite:granite_brick_slab","pyrite:mossy_granite_brick_slab","pyrite:andesite_brick_slab","pyrite:mossy_andesite_brick_slab","pyrite:diorite_brick_slab","pyrite:mossy_diorite_brick_slab","pyrite:calcite_brick_slab","pyrite:mossy_calcite_brick_slab","pyrite:mossy_deepslate_brick_slab","pyrite:charred_nether_brick_slab","pyrite:blue_nether_brick_slab"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/brick_stairs.json b/common/src/main/resources/data/pyrite/tags/block/brick_stairs.json new file mode 100644 index 000000000..124e4425c --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/brick_stairs.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:white_brick_stairs","pyrite:white_terracotta_brick_stairs","pyrite:orange_brick_stairs","pyrite:orange_terracotta_brick_stairs","pyrite:magenta_brick_stairs","pyrite:magenta_terracotta_brick_stairs","pyrite:light_blue_brick_stairs","pyrite:light_blue_terracotta_brick_stairs","pyrite:yellow_brick_stairs","pyrite:yellow_terracotta_brick_stairs","pyrite:lime_brick_stairs","pyrite:lime_terracotta_brick_stairs","pyrite:pink_brick_stairs","pyrite:pink_terracotta_brick_stairs","pyrite:gray_brick_stairs","pyrite:gray_terracotta_brick_stairs","pyrite:light_gray_brick_stairs","pyrite:light_gray_terracotta_brick_stairs","pyrite:cyan_brick_stairs","pyrite:cyan_terracotta_brick_stairs","pyrite:purple_brick_stairs","pyrite:purple_terracotta_brick_stairs","pyrite:blue_brick_stairs","pyrite:blue_terracotta_brick_stairs","pyrite:brown_brick_stairs","pyrite:brown_terracotta_brick_stairs","pyrite:green_brick_stairs","pyrite:green_terracotta_brick_stairs","pyrite:red_brick_stairs","pyrite:red_terracotta_brick_stairs","pyrite:black_brick_stairs","pyrite:black_terracotta_brick_stairs","pyrite:glow_brick_stairs","pyrite:glow_terracotta_brick_stairs","pyrite:dragon_brick_stairs","pyrite:dragon_terracotta_brick_stairs","pyrite:star_brick_stairs","pyrite:star_terracotta_brick_stairs","pyrite:honey_brick_stairs","pyrite:honey_terracotta_brick_stairs","pyrite:nostalgia_brick_stairs","pyrite:nostalgia_terracotta_brick_stairs","pyrite:rose_brick_stairs","pyrite:rose_terracotta_brick_stairs","pyrite:poisonous_brick_stairs","pyrite:poisonous_terracotta_brick_stairs","pyrite:cobblestone_brick_stairs","pyrite:mossy_cobblestone_brick_stairs","pyrite:smooth_stone_brick_stairs","pyrite:mossy_smooth_stone_brick_stairs","pyrite:granite_brick_stairs","pyrite:mossy_granite_brick_stairs","pyrite:andesite_brick_stairs","pyrite:mossy_andesite_brick_stairs","pyrite:diorite_brick_stairs","pyrite:mossy_diorite_brick_stairs","pyrite:calcite_brick_stairs","pyrite:mossy_calcite_brick_stairs","pyrite:mossy_deepslate_brick_stairs","pyrite:charred_nether_brick_stairs","pyrite:blue_nether_brick_stairs"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/brick_walls.json b/common/src/main/resources/data/pyrite/tags/block/brick_walls.json new file mode 100644 index 000000000..953c0b09c --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/brick_walls.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:white_brick_wall","pyrite:white_terracotta_brick_wall","pyrite:orange_brick_wall","pyrite:orange_terracotta_brick_wall","pyrite:magenta_brick_wall","pyrite:magenta_terracotta_brick_wall","pyrite:light_blue_brick_wall","pyrite:light_blue_terracotta_brick_wall","pyrite:yellow_brick_wall","pyrite:yellow_terracotta_brick_wall","pyrite:lime_brick_wall","pyrite:lime_terracotta_brick_wall","pyrite:pink_brick_wall","pyrite:pink_terracotta_brick_wall","pyrite:gray_brick_wall","pyrite:gray_terracotta_brick_wall","pyrite:light_gray_brick_wall","pyrite:light_gray_terracotta_brick_wall","pyrite:cyan_brick_wall","pyrite:cyan_terracotta_brick_wall","pyrite:purple_brick_wall","pyrite:purple_terracotta_brick_wall","pyrite:blue_brick_wall","pyrite:blue_terracotta_brick_wall","pyrite:brown_brick_wall","pyrite:brown_terracotta_brick_wall","pyrite:green_brick_wall","pyrite:green_terracotta_brick_wall","pyrite:red_brick_wall","pyrite:red_terracotta_brick_wall","pyrite:black_brick_wall","pyrite:black_terracotta_brick_wall","pyrite:glow_brick_wall","pyrite:glow_terracotta_brick_wall","pyrite:dragon_brick_wall","pyrite:dragon_terracotta_brick_wall","pyrite:star_brick_wall","pyrite:star_terracotta_brick_wall","pyrite:honey_brick_wall","pyrite:honey_terracotta_brick_wall","pyrite:nostalgia_brick_wall","pyrite:nostalgia_terracotta_brick_wall","pyrite:rose_brick_wall","pyrite:rose_terracotta_brick_wall","pyrite:poisonous_brick_wall","pyrite:poisonous_terracotta_brick_wall","pyrite:cobblestone_brick_wall","pyrite:mossy_cobblestone_brick_wall","pyrite:smooth_stone_brick_wall","pyrite:mossy_smooth_stone_brick_wall","pyrite:granite_brick_wall","pyrite:mossy_granite_brick_wall","pyrite:andesite_brick_wall","pyrite:mossy_andesite_brick_wall","pyrite:diorite_brick_wall","pyrite:mossy_diorite_brick_wall","pyrite:calcite_brick_wall","pyrite:mossy_calcite_brick_wall","pyrite:mossy_deepslate_brick_wall","pyrite:charred_nether_brick_wall","pyrite:blue_nether_brick_wall"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/bricks.json b/common/src/main/resources/data/pyrite/tags/block/bricks.json new file mode 100644 index 000000000..2ba0d01a7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/bricks.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:white_bricks","pyrite:orange_bricks","pyrite:magenta_bricks","pyrite:light_blue_bricks","pyrite:yellow_bricks","pyrite:lime_bricks","pyrite:pink_bricks","pyrite:gray_bricks","pyrite:light_gray_bricks","pyrite:cyan_bricks","pyrite:purple_bricks","pyrite:blue_bricks","pyrite:brown_bricks","pyrite:green_bricks","pyrite:red_bricks","pyrite:black_bricks","pyrite:glow_bricks","pyrite:dragon_bricks","pyrite:star_bricks","pyrite:honey_bricks","pyrite:nostalgia_bricks","pyrite:rose_bricks","pyrite:poisonous_bricks","pyrite:cobblestone_bricks","pyrite:mossy_cobblestone_bricks","pyrite:smooth_stone_bricks","pyrite:mossy_smooth_stone_bricks","pyrite:granite_bricks","pyrite:mossy_granite_bricks","pyrite:andesite_bricks","pyrite:mossy_andesite_bricks","pyrite:diorite_bricks","pyrite:mossy_diorite_bricks","pyrite:calcite_bricks","pyrite:mossy_calcite_bricks","pyrite:mossy_deepslate_bricks","pyrite:charred_nether_bricks","pyrite:blue_nether_bricks","#pyrite:terracotta_bricks"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/carpet.json b/common/src/main/resources/data/pyrite/tags/block/carpet.json new file mode 100644 index 000000000..587b201f4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/carpet.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:nostalgia_grass_carpet","pyrite:podzol_carpet","pyrite:grass_carpet","pyrite:mycelium_carpet","pyrite:path_carpet"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/concrete_slabs.json b/common/src/main/resources/data/pyrite/tags/block/concrete_slabs.json new file mode 100644 index 000000000..04fa02724 --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/concrete_slabs.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:white_concrete_slab","pyrite:orange_concrete_slab","pyrite:magenta_concrete_slab","pyrite:light_blue_concrete_slab","pyrite:yellow_concrete_slab","pyrite:lime_concrete_slab","pyrite:pink_concrete_slab","pyrite:gray_concrete_slab","pyrite:light_gray_concrete_slab","pyrite:cyan_concrete_slab","pyrite:purple_concrete_slab","pyrite:blue_concrete_slab","pyrite:brown_concrete_slab","pyrite:green_concrete_slab","pyrite:red_concrete_slab","pyrite:black_concrete_slab","pyrite:glow_concrete_slab","pyrite:dragon_concrete_slab","pyrite:star_concrete_slab","pyrite:honey_concrete_slab","pyrite:nostalgia_concrete_slab","pyrite:rose_concrete_slab","pyrite:poisonous_concrete_slab"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/concrete_stairs.json b/common/src/main/resources/data/pyrite/tags/block/concrete_stairs.json new file mode 100644 index 000000000..b6ea9670a --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/concrete_stairs.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:white_concrete_stairs","pyrite:orange_concrete_stairs","pyrite:magenta_concrete_stairs","pyrite:light_blue_concrete_stairs","pyrite:yellow_concrete_stairs","pyrite:lime_concrete_stairs","pyrite:pink_concrete_stairs","pyrite:gray_concrete_stairs","pyrite:light_gray_concrete_stairs","pyrite:cyan_concrete_stairs","pyrite:purple_concrete_stairs","pyrite:blue_concrete_stairs","pyrite:brown_concrete_stairs","pyrite:green_concrete_stairs","pyrite:red_concrete_stairs","pyrite:black_concrete_stairs","pyrite:glow_concrete_stairs","pyrite:dragon_concrete_stairs","pyrite:star_concrete_stairs","pyrite:honey_concrete_stairs","pyrite:nostalgia_concrete_stairs","pyrite:rose_concrete_stairs","pyrite:poisonous_concrete_stairs"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/copper.json b/common/src/main/resources/data/pyrite/tags/block/copper.json new file mode 100644 index 000000000..47ea3eaa5 --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/copper.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:smooth_copper","pyrite:smooth_copper_slab","pyrite:smooth_copper_stairs","pyrite:copper_bricks","pyrite:copper_pillar","pyrite:chiseled_copper_block","pyrite:copper_door","pyrite:nostalgia_copper_block","pyrite:exposed_copper_bricks","pyrite:weathered_copper_bricks","pyrite:oxidized_copper_bricks"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/crafting_tables.json b/common/src/main/resources/data/pyrite/tags/block/crafting_tables.json new file mode 100644 index 000000000..edd0b7e63 --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/crafting_tables.json @@ -0,0 +1 @@ +{"replace":false,"values":[{"id":"pyrite:white_stained_crafting_table","required":false},{"id":"pyrite:orange_stained_crafting_table","required":false},{"id":"pyrite:magenta_stained_crafting_table","required":false},{"id":"pyrite:light_blue_stained_crafting_table","required":false},{"id":"pyrite:yellow_stained_crafting_table","required":false},{"id":"pyrite:lime_stained_crafting_table","required":false},{"id":"pyrite:pink_stained_crafting_table","required":false},{"id":"pyrite:gray_stained_crafting_table","required":false},{"id":"pyrite:light_gray_stained_crafting_table","required":false},{"id":"pyrite:cyan_stained_crafting_table","required":false},{"id":"pyrite:purple_stained_crafting_table","required":false},{"id":"pyrite:blue_stained_crafting_table","required":false},{"id":"pyrite:brown_stained_crafting_table","required":false},{"id":"pyrite:green_stained_crafting_table","required":false},{"id":"pyrite:red_stained_crafting_table","required":false},{"id":"pyrite:black_stained_crafting_table","required":false},{"id":"pyrite:glow_stained_crafting_table","required":false},{"id":"pyrite:dragon_stained_crafting_table","required":false},{"id":"pyrite:star_stained_crafting_table","required":false},{"id":"pyrite:honey_stained_crafting_table","required":false},{"id":"pyrite:nostalgia_stained_crafting_table","required":false},{"id":"pyrite:rose_stained_crafting_table","required":false},{"id":"pyrite:poisonous_stained_crafting_table","required":false},{"id":"pyrite:spruce_crafting_table","required":false},{"id":"pyrite:birch_crafting_table","required":false},{"id":"pyrite:jungle_crafting_table","required":false},{"id":"pyrite:acacia_crafting_table","required":false},{"id":"pyrite:dark_oak_crafting_table","required":false},{"id":"pyrite:mangrove_crafting_table","required":false},{"id":"pyrite:cherry_crafting_table","required":false},{"id":"pyrite:bamboo_crafting_table","required":false},{"id":"pyrite:crimson_crafting_table","required":false},{"id":"pyrite:warped_crafting_table","required":false},{"id":"pyrite:skyroot_crafting_table","required":false},{"id":"pyrite:red_mushroom_crafting_table","required":false},{"id":"pyrite:brown_mushroom_crafting_table","required":false}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/cut_blocks.json b/common/src/main/resources/data/pyrite/tags/block/cut_blocks.json new file mode 100644 index 000000000..25a7de234 --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/cut_blocks.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:cut_iron","pyrite:cut_gold","pyrite:cut_emerald","pyrite:cut_diamond","pyrite:cut_netherite","pyrite:cut_quartz","pyrite:cut_amethyst","pyrite:cut_lapis","pyrite:cut_redstone"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/diamond.json b/common/src/main/resources/data/pyrite/tags/block/diamond.json new file mode 100644 index 000000000..af8917144 --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/diamond.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:cut_diamond","pyrite:cut_diamond_slab","pyrite:cut_diamond_stairs","pyrite:smooth_diamond","pyrite:smooth_diamond_slab","pyrite:smooth_diamond_stairs","pyrite:diamond_bricks","pyrite:diamond_pillar","pyrite:chiseled_diamond_block","pyrite:diamond_door","pyrite:nostalgia_diamond_block"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/dyed_bricks.json b/common/src/main/resources/data/pyrite/tags/block/dyed_bricks.json new file mode 100644 index 000000000..3496f41ad --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/dyed_bricks.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:white_bricks","pyrite:orange_bricks","pyrite:magenta_bricks","pyrite:light_blue_bricks","pyrite:yellow_bricks","pyrite:lime_bricks","pyrite:pink_bricks","pyrite:gray_bricks","pyrite:light_gray_bricks","pyrite:cyan_bricks","pyrite:purple_bricks","pyrite:blue_bricks","pyrite:brown_bricks","pyrite:green_bricks","pyrite:red_bricks","pyrite:black_bricks","pyrite:glow_bricks","pyrite:dragon_bricks","pyrite:star_bricks","pyrite:honey_bricks","pyrite:nostalgia_bricks","pyrite:rose_bricks","pyrite:poisonous_bricks"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/emerald.json b/common/src/main/resources/data/pyrite/tags/block/emerald.json new file mode 100644 index 000000000..0f9807c29 --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/emerald.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:cut_emerald","pyrite:cut_emerald_slab","pyrite:cut_emerald_stairs","pyrite:smooth_emerald","pyrite:smooth_emerald_slab","pyrite:smooth_emerald_stairs","pyrite:emerald_bricks","pyrite:emerald_pillar","pyrite:chiseled_emerald_block","pyrite:emerald_door","pyrite:nostalgia_emerald_block"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/exposed_copper.json b/common/src/main/resources/data/pyrite/tags/block/exposed_copper.json new file mode 100644 index 000000000..7d4753322 --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/exposed_copper.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:smooth_exposed_copper","pyrite:smooth_exposed_copper_slab","pyrite:smooth_exposed_copper_stairs","pyrite:exposed_copper_pillar","pyrite:chiseled_exposed_copper_block","pyrite:exposed_copper_door","pyrite:nostalgia_exposed_copper_block"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/fences.json b/common/src/main/resources/data/pyrite/tags/block/fences.json new file mode 100644 index 000000000..e344daac6 --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/fences.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:white_stained_fence","pyrite:orange_stained_fence","pyrite:magenta_stained_fence","pyrite:light_blue_stained_fence","pyrite:yellow_stained_fence","pyrite:lime_stained_fence","pyrite:pink_stained_fence","pyrite:gray_stained_fence","pyrite:light_gray_stained_fence","pyrite:cyan_stained_fence","pyrite:purple_stained_fence","pyrite:blue_stained_fence","pyrite:brown_stained_fence","pyrite:green_stained_fence","pyrite:red_stained_fence","pyrite:black_stained_fence","pyrite:glow_stained_fence","pyrite:dragon_stained_fence","pyrite:star_stained_fence","pyrite:honey_stained_fence","pyrite:nostalgia_stained_fence","pyrite:rose_stained_fence","pyrite:poisonous_stained_fence","pyrite:red_mushroom_fence","pyrite:brown_mushroom_fence"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/gold.json b/common/src/main/resources/data/pyrite/tags/block/gold.json new file mode 100644 index 000000000..0be371626 --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/gold.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:cut_gold","pyrite:cut_gold_slab","pyrite:cut_gold_stairs","pyrite:smooth_gold","pyrite:smooth_gold_slab","pyrite:smooth_gold_stairs","pyrite:gold_bricks","pyrite:gold_pillar","pyrite:chiseled_gold_block","pyrite:gold_door","pyrite:nostalgia_gold_block"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/iron.json b/common/src/main/resources/data/pyrite/tags/block/iron.json new file mode 100644 index 000000000..1a0451d44 --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/iron.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:cut_iron","pyrite:cut_iron_slab","pyrite:cut_iron_stairs","pyrite:smooth_iron","pyrite:smooth_iron_slab","pyrite:smooth_iron_stairs","pyrite:iron_bricks","pyrite:iron_pillar","pyrite:chiseled_iron_block","pyrite:nostalgia_iron_block"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/ladders.json b/common/src/main/resources/data/pyrite/tags/block/ladders.json new file mode 100644 index 000000000..fb2376708 --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/ladders.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:white_stained_ladder","pyrite:orange_stained_ladder","pyrite:magenta_stained_ladder","pyrite:light_blue_stained_ladder","pyrite:yellow_stained_ladder","pyrite:lime_stained_ladder","pyrite:pink_stained_ladder","pyrite:gray_stained_ladder","pyrite:light_gray_stained_ladder","pyrite:cyan_stained_ladder","pyrite:purple_stained_ladder","pyrite:blue_stained_ladder","pyrite:brown_stained_ladder","pyrite:green_stained_ladder","pyrite:red_stained_ladder","pyrite:black_stained_ladder","pyrite:glow_stained_ladder","pyrite:dragon_stained_ladder","pyrite:star_stained_ladder","pyrite:honey_stained_ladder","pyrite:nostalgia_stained_ladder","pyrite:rose_stained_ladder","pyrite:poisonous_stained_ladder","pyrite:red_mushroom_ladder","pyrite:brown_mushroom_ladder"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/lamps.json b/common/src/main/resources/data/pyrite/tags/block/lamps.json new file mode 100644 index 000000000..8e0824c5f --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/lamps.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:white_lamp","pyrite:orange_lamp","pyrite:magenta_lamp","pyrite:light_blue_lamp","pyrite:yellow_lamp","pyrite:lime_lamp","pyrite:pink_lamp","pyrite:gray_lamp","pyrite:light_gray_lamp","pyrite:cyan_lamp","pyrite:purple_lamp","pyrite:blue_lamp","pyrite:brown_lamp","pyrite:green_lamp","pyrite:red_lamp","pyrite:black_lamp","pyrite:glow_lamp","pyrite:dragon_lamp","pyrite:star_lamp","pyrite:honey_lamp","pyrite:nostalgia_lamp","pyrite:rose_lamp","pyrite:poisonous_lamp","pyrite:glowstone_lamp","pyrite:lit_redstone_lamp"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/lapis.json b/common/src/main/resources/data/pyrite/tags/block/lapis.json new file mode 100644 index 000000000..a1f197a58 --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/lapis.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:cut_lapis","pyrite:cut_lapis_slab","pyrite:cut_lapis_stairs","pyrite:smooth_lapis","pyrite:smooth_lapis_slab","pyrite:smooth_lapis_stairs","pyrite:lapis_bricks","pyrite:lapis_pillar","pyrite:chiseled_lapis_block","pyrite:lapis_door","pyrite:nostalgia_lapis_block"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/metal_bars.json b/common/src/main/resources/data/pyrite/tags/block/metal_bars.json new file mode 100644 index 000000000..8a5a022f4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/metal_bars.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:gold_bars","pyrite:emerald_bars","pyrite:diamond_bars","pyrite:netherite_bars","pyrite:quartz_bars","pyrite:amethyst_bars","pyrite:lapis_bars","pyrite:redstone_bars","pyrite:copper_bars","pyrite:exposed_copper_bars","pyrite:weathered_copper_bars","pyrite:oxidized_copper_bars"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/metal_buttons.json b/common/src/main/resources/data/pyrite/tags/block/metal_buttons.json new file mode 100644 index 000000000..3760444f7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/metal_buttons.json @@ -0,0 +1 @@ +{"replace":false,"values":[{"id":"pyrite:iron_button","required":false},{"id":"pyrite:gold_button","required":false},{"id":"pyrite:emerald_button","required":false},{"id":"pyrite:diamond_button","required":false},{"id":"pyrite:netherite_button","required":false},{"id":"pyrite:quartz_button","required":false},{"id":"pyrite:amethyst_button","required":false},{"id":"pyrite:lapis_button","required":false},{"id":"pyrite:redstone_button","required":false},{"id":"pyrite:copper_button","required":false},{"id":"pyrite:exposed_copper_button","required":false},{"id":"pyrite:weathered_copper_button","required":false},{"id":"pyrite:oxidized_copper_button","required":false}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/metal_trapdoors.json b/common/src/main/resources/data/pyrite/tags/block/metal_trapdoors.json new file mode 100644 index 000000000..00321b3e6 --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/metal_trapdoors.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:gold_trapdoor","pyrite:emerald_trapdoor","pyrite:diamond_trapdoor","pyrite:netherite_trapdoor","pyrite:quartz_trapdoor","pyrite:amethyst_trapdoor","pyrite:lapis_trapdoor","pyrite:redstone_trapdoor","pyrite:copper_trapdoor","pyrite:exposed_copper_trapdoor","pyrite:weathered_copper_trapdoor","pyrite:oxidized_copper_trapdoor"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/mushroom_stem.json b/common/src/main/resources/data/pyrite/tags/block/mushroom_stem.json new file mode 100644 index 000000000..587406cc3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/mushroom_stem.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:red_mushroom_stem","pyrite:brown_mushroom_stem"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/netherite.json b/common/src/main/resources/data/pyrite/tags/block/netherite.json new file mode 100644 index 000000000..edbdaf17b --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/netherite.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:cut_netherite","pyrite:cut_netherite_slab","pyrite:cut_netherite_stairs","pyrite:smooth_netherite","pyrite:smooth_netherite_slab","pyrite:smooth_netherite_stairs","pyrite:netherite_bricks","pyrite:netherite_pillar","pyrite:chiseled_netherite_block","pyrite:netherite_door","pyrite:nostalgia_netherite_block"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/obsidian.json b/common/src/main/resources/data/pyrite/tags/block/obsidian.json new file mode 100644 index 000000000..11b6f03ed --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/obsidian.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:glowing_obsidian","pyrite:nostalgia_glowing_obsidian"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/oxidized_copper.json b/common/src/main/resources/data/pyrite/tags/block/oxidized_copper.json new file mode 100644 index 000000000..f823e943c --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/oxidized_copper.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:smooth_oxidized_copper","pyrite:smooth_oxidized_copper_slab","pyrite:smooth_oxidized_copper_stairs","pyrite:oxidized_copper_pillar","pyrite:chiseled_oxidized_copper_block","pyrite:oxidized_copper_door","pyrite:nostalgia_oxidized_copper_block"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/quartz.json b/common/src/main/resources/data/pyrite/tags/block/quartz.json new file mode 100644 index 000000000..14ecc62f5 --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/quartz.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:cut_quartz","pyrite:cut_quartz_slab","pyrite:cut_quartz_stairs","pyrite:quartz_door","pyrite:nostalgia_quartz_block"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/redstone.json b/common/src/main/resources/data/pyrite/tags/block/redstone.json new file mode 100644 index 000000000..74cd4a695 --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/redstone.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:cut_redstone","pyrite:cut_redstone_slab","pyrite:cut_redstone_stairs","pyrite:smooth_redstone","pyrite:smooth_redstone_slab","pyrite:smooth_redstone_stairs","pyrite:redstone_bricks","pyrite:redstone_pillar","pyrite:chiseled_redstone_block","pyrite:redstone_door","pyrite:nostalgia_redstone_block"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/smooth_blocks.json b/common/src/main/resources/data/pyrite/tags/block/smooth_blocks.json new file mode 100644 index 000000000..9174defc8 --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/smooth_blocks.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:smooth_iron","pyrite:smooth_gold","pyrite:smooth_emerald","pyrite:smooth_diamond","pyrite:smooth_netherite","pyrite:smooth_amethyst","pyrite:smooth_lapis","pyrite:smooth_redstone","pyrite:smooth_copper","pyrite:smooth_exposed_copper","pyrite:smooth_weathered_copper","pyrite:smooth_oxidized_copper"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/stained_framed_glass.json b/common/src/main/resources/data/pyrite/tags/block/stained_framed_glass.json new file mode 100644 index 000000000..8fc53e7e7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/stained_framed_glass.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:white_framed_glass","pyrite:orange_framed_glass","pyrite:magenta_framed_glass","pyrite:light_blue_framed_glass","pyrite:yellow_framed_glass","pyrite:lime_framed_glass","pyrite:pink_framed_glass","pyrite:gray_framed_glass","pyrite:light_gray_framed_glass","pyrite:cyan_framed_glass","pyrite:purple_framed_glass","pyrite:blue_framed_glass","pyrite:brown_framed_glass","pyrite:green_framed_glass","pyrite:red_framed_glass","pyrite:black_framed_glass","pyrite:glow_framed_glass","pyrite:dragon_framed_glass","pyrite:star_framed_glass","pyrite:honey_framed_glass","pyrite:nostalgia_framed_glass","pyrite:rose_framed_glass","pyrite:poisonous_framed_glass"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/terracotta_bricks.json b/common/src/main/resources/data/pyrite/tags/block/terracotta_bricks.json new file mode 100644 index 000000000..fab1f23eb --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/terracotta_bricks.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:white_terracotta_bricks","pyrite:orange_terracotta_bricks","pyrite:magenta_terracotta_bricks","pyrite:light_blue_terracotta_bricks","pyrite:yellow_terracotta_bricks","pyrite:lime_terracotta_bricks","pyrite:pink_terracotta_bricks","pyrite:gray_terracotta_bricks","pyrite:light_gray_terracotta_bricks","pyrite:cyan_terracotta_bricks","pyrite:purple_terracotta_bricks","pyrite:blue_terracotta_bricks","pyrite:brown_terracotta_bricks","pyrite:green_terracotta_bricks","pyrite:red_terracotta_bricks","pyrite:black_terracotta_bricks","pyrite:glow_terracotta_bricks","pyrite:dragon_terracotta_bricks","pyrite:star_terracotta_bricks","pyrite:honey_terracotta_bricks","pyrite:nostalgia_terracotta_bricks","pyrite:rose_terracotta_bricks","pyrite:poisonous_terracotta_bricks"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/turf_blocks.json b/common/src/main/resources/data/pyrite/tags/block/turf_blocks.json new file mode 100644 index 000000000..c03c58802 --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/turf_blocks.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:nostalgia_grass_turf","pyrite:podzol_turf","pyrite:grass_turf","pyrite:mycelium_turf","pyrite:path_turf"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/turf_slabs.json b/common/src/main/resources/data/pyrite/tags/block/turf_slabs.json new file mode 100644 index 000000000..f3edc5613 --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/turf_slabs.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:nostalgia_grass_slab","pyrite:podzol_slab","pyrite:grass_slab","pyrite:mycelium_slab","pyrite:path_slab"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/turf_stairs.json b/common/src/main/resources/data/pyrite/tags/block/turf_stairs.json new file mode 100644 index 000000000..a9acdacf7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/turf_stairs.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:nostalgia_grass_stairs","pyrite:podzol_stairs","pyrite:grass_stairs","pyrite:mycelium_stairs","pyrite:path_stairs"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/wall_gates.json b/common/src/main/resources/data/pyrite/tags/block/wall_gates.json new file mode 100644 index 000000000..4f0cef101 --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/wall_gates.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:white_brick_wall_gate","pyrite:white_terracotta_brick_wall_gate","pyrite:orange_brick_wall_gate","pyrite:orange_terracotta_brick_wall_gate","pyrite:magenta_brick_wall_gate","pyrite:magenta_terracotta_brick_wall_gate","pyrite:light_blue_brick_wall_gate","pyrite:light_blue_terracotta_brick_wall_gate","pyrite:yellow_brick_wall_gate","pyrite:yellow_terracotta_brick_wall_gate","pyrite:lime_brick_wall_gate","pyrite:lime_terracotta_brick_wall_gate","pyrite:pink_brick_wall_gate","pyrite:pink_terracotta_brick_wall_gate","pyrite:gray_brick_wall_gate","pyrite:gray_terracotta_brick_wall_gate","pyrite:light_gray_brick_wall_gate","pyrite:light_gray_terracotta_brick_wall_gate","pyrite:cyan_brick_wall_gate","pyrite:cyan_terracotta_brick_wall_gate","pyrite:purple_brick_wall_gate","pyrite:purple_terracotta_brick_wall_gate","pyrite:blue_brick_wall_gate","pyrite:blue_terracotta_brick_wall_gate","pyrite:brown_brick_wall_gate","pyrite:brown_terracotta_brick_wall_gate","pyrite:green_brick_wall_gate","pyrite:green_terracotta_brick_wall_gate","pyrite:red_brick_wall_gate","pyrite:red_terracotta_brick_wall_gate","pyrite:black_brick_wall_gate","pyrite:black_terracotta_brick_wall_gate","pyrite:glow_brick_wall_gate","pyrite:glow_terracotta_brick_wall_gate","pyrite:dragon_brick_wall_gate","pyrite:dragon_terracotta_brick_wall_gate","pyrite:star_brick_wall_gate","pyrite:star_terracotta_brick_wall_gate","pyrite:honey_brick_wall_gate","pyrite:honey_terracotta_brick_wall_gate","pyrite:nostalgia_brick_wall_gate","pyrite:nostalgia_terracotta_brick_wall_gate","pyrite:rose_brick_wall_gate","pyrite:rose_terracotta_brick_wall_gate","pyrite:poisonous_brick_wall_gate","pyrite:poisonous_terracotta_brick_wall_gate",{"id":"pyrite:holystone_wall_gate","required":false},{"id":"pyrite:mossy_holystone_wall_gate","required":false},{"id":"pyrite:holystone_brick_wall_gate","required":false},{"id":"pyrite:icestone_wall_gate","required":false},{"id":"pyrite:aerogel_wall_gate","required":false},{"id":"pyrite:carved_wall_gate","required":false},{"id":"pyrite:angelic_wall_gate","required":false},{"id":"pyrite:hellfire_wall_gate","required":false},"pyrite:cobblestone_brick_wall_gate","pyrite:mossy_cobblestone_brick_wall_gate","pyrite:smooth_stone_brick_wall_gate","pyrite:mossy_smooth_stone_brick_wall_gate","pyrite:granite_brick_wall_gate","pyrite:mossy_granite_brick_wall_gate","pyrite:andesite_brick_wall_gate","pyrite:mossy_andesite_brick_wall_gate","pyrite:diorite_brick_wall_gate","pyrite:mossy_diorite_brick_wall_gate","pyrite:calcite_brick_wall_gate","pyrite:mossy_calcite_brick_wall_gate","pyrite:mossy_deepslate_brick_wall_gate","pyrite:charred_nether_brick_wall_gate","pyrite:blue_nether_brick_wall_gate","pyrite:cobblestone_wall_gate","pyrite:mossy_cobblestone_wall_gate","pyrite:stone_brick_wall_gate","pyrite:mossy_stone_brick_wall_gate","pyrite:granite_wall_gate","pyrite:diorite_wall_gate","pyrite:andesite_wall_gate","pyrite:cobbled_deepslate_wall_gate","pyrite:polished_deepslate_wall_gate","pyrite:deepslate_brick_wall_gate","pyrite:deepslate_tile_wall_gate","pyrite:brick_wall_gate","pyrite:mud_brick_wall_gate","pyrite:sandstone_wall_gate","pyrite:red_sandstone_wall_gate","pyrite:prismarine_wall_gate","pyrite:nether_brick_wall_gate","pyrite:red_nether_brick_wall_gate","pyrite:blackstone_wall_gate","pyrite:polished_blackstone_wall_gate","pyrite:polished_blackstone_brick_wall_gate","pyrite:end_stone_brick_wall_gate","pyrite:cut_iron_wall_gate","pyrite:smooth_iron_wall_gate","pyrite:cut_gold_wall_gate","pyrite:smooth_gold_wall_gate","pyrite:cut_emerald_wall_gate","pyrite:smooth_emerald_wall_gate","pyrite:cut_diamond_wall_gate","pyrite:smooth_diamond_wall_gate","pyrite:cut_netherite_wall_gate","pyrite:smooth_netherite_wall_gate","pyrite:cut_quartz_wall_gate","pyrite:smooth_quartz_wall_gate","pyrite:cut_amethyst_wall_gate","pyrite:smooth_amethyst_wall_gate","pyrite:cut_lapis_wall_gate","pyrite:smooth_lapis_wall_gate","pyrite:cut_redstone_wall_gate","pyrite:smooth_redstone_wall_gate","pyrite:cut_copper_wall_gate","pyrite:smooth_copper_wall_gate","pyrite:cut_exposed_copper_wall_gate","pyrite:smooth_exposed_copper_wall_gate","pyrite:cut_weathered_copper_wall_gate","pyrite:smooth_weathered_copper_wall_gate","pyrite:cut_oxidized_copper_wall_gate","pyrite:smooth_oxidized_copper_wall_gate"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/block/weathered_copper.json b/common/src/main/resources/data/pyrite/tags/block/weathered_copper.json new file mode 100644 index 000000000..9a11d143f --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/block/weathered_copper.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:smooth_weathered_copper","pyrite:smooth_weathered_copper_slab","pyrite:smooth_weathered_copper_stairs","pyrite:weathered_copper_pillar","pyrite:chiseled_weathered_copper_block","pyrite:weathered_copper_door","pyrite:nostalgia_weathered_copper_block"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/item/brick_stairs.json b/common/src/main/resources/data/pyrite/tags/item/brick_stairs.json new file mode 100644 index 000000000..124e4425c --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/item/brick_stairs.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:white_brick_stairs","pyrite:white_terracotta_brick_stairs","pyrite:orange_brick_stairs","pyrite:orange_terracotta_brick_stairs","pyrite:magenta_brick_stairs","pyrite:magenta_terracotta_brick_stairs","pyrite:light_blue_brick_stairs","pyrite:light_blue_terracotta_brick_stairs","pyrite:yellow_brick_stairs","pyrite:yellow_terracotta_brick_stairs","pyrite:lime_brick_stairs","pyrite:lime_terracotta_brick_stairs","pyrite:pink_brick_stairs","pyrite:pink_terracotta_brick_stairs","pyrite:gray_brick_stairs","pyrite:gray_terracotta_brick_stairs","pyrite:light_gray_brick_stairs","pyrite:light_gray_terracotta_brick_stairs","pyrite:cyan_brick_stairs","pyrite:cyan_terracotta_brick_stairs","pyrite:purple_brick_stairs","pyrite:purple_terracotta_brick_stairs","pyrite:blue_brick_stairs","pyrite:blue_terracotta_brick_stairs","pyrite:brown_brick_stairs","pyrite:brown_terracotta_brick_stairs","pyrite:green_brick_stairs","pyrite:green_terracotta_brick_stairs","pyrite:red_brick_stairs","pyrite:red_terracotta_brick_stairs","pyrite:black_brick_stairs","pyrite:black_terracotta_brick_stairs","pyrite:glow_brick_stairs","pyrite:glow_terracotta_brick_stairs","pyrite:dragon_brick_stairs","pyrite:dragon_terracotta_brick_stairs","pyrite:star_brick_stairs","pyrite:star_terracotta_brick_stairs","pyrite:honey_brick_stairs","pyrite:honey_terracotta_brick_stairs","pyrite:nostalgia_brick_stairs","pyrite:nostalgia_terracotta_brick_stairs","pyrite:rose_brick_stairs","pyrite:rose_terracotta_brick_stairs","pyrite:poisonous_brick_stairs","pyrite:poisonous_terracotta_brick_stairs","pyrite:cobblestone_brick_stairs","pyrite:mossy_cobblestone_brick_stairs","pyrite:smooth_stone_brick_stairs","pyrite:mossy_smooth_stone_brick_stairs","pyrite:granite_brick_stairs","pyrite:mossy_granite_brick_stairs","pyrite:andesite_brick_stairs","pyrite:mossy_andesite_brick_stairs","pyrite:diorite_brick_stairs","pyrite:mossy_diorite_brick_stairs","pyrite:calcite_brick_stairs","pyrite:mossy_calcite_brick_stairs","pyrite:mossy_deepslate_brick_stairs","pyrite:charred_nether_brick_stairs","pyrite:blue_nether_brick_stairs"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/item/brick_walls.json b/common/src/main/resources/data/pyrite/tags/item/brick_walls.json new file mode 100644 index 000000000..953c0b09c --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/item/brick_walls.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:white_brick_wall","pyrite:white_terracotta_brick_wall","pyrite:orange_brick_wall","pyrite:orange_terracotta_brick_wall","pyrite:magenta_brick_wall","pyrite:magenta_terracotta_brick_wall","pyrite:light_blue_brick_wall","pyrite:light_blue_terracotta_brick_wall","pyrite:yellow_brick_wall","pyrite:yellow_terracotta_brick_wall","pyrite:lime_brick_wall","pyrite:lime_terracotta_brick_wall","pyrite:pink_brick_wall","pyrite:pink_terracotta_brick_wall","pyrite:gray_brick_wall","pyrite:gray_terracotta_brick_wall","pyrite:light_gray_brick_wall","pyrite:light_gray_terracotta_brick_wall","pyrite:cyan_brick_wall","pyrite:cyan_terracotta_brick_wall","pyrite:purple_brick_wall","pyrite:purple_terracotta_brick_wall","pyrite:blue_brick_wall","pyrite:blue_terracotta_brick_wall","pyrite:brown_brick_wall","pyrite:brown_terracotta_brick_wall","pyrite:green_brick_wall","pyrite:green_terracotta_brick_wall","pyrite:red_brick_wall","pyrite:red_terracotta_brick_wall","pyrite:black_brick_wall","pyrite:black_terracotta_brick_wall","pyrite:glow_brick_wall","pyrite:glow_terracotta_brick_wall","pyrite:dragon_brick_wall","pyrite:dragon_terracotta_brick_wall","pyrite:star_brick_wall","pyrite:star_terracotta_brick_wall","pyrite:honey_brick_wall","pyrite:honey_terracotta_brick_wall","pyrite:nostalgia_brick_wall","pyrite:nostalgia_terracotta_brick_wall","pyrite:rose_brick_wall","pyrite:rose_terracotta_brick_wall","pyrite:poisonous_brick_wall","pyrite:poisonous_terracotta_brick_wall","pyrite:cobblestone_brick_wall","pyrite:mossy_cobblestone_brick_wall","pyrite:smooth_stone_brick_wall","pyrite:mossy_smooth_stone_brick_wall","pyrite:granite_brick_wall","pyrite:mossy_granite_brick_wall","pyrite:andesite_brick_wall","pyrite:mossy_andesite_brick_wall","pyrite:diorite_brick_wall","pyrite:mossy_diorite_brick_wall","pyrite:calcite_brick_wall","pyrite:mossy_calcite_brick_wall","pyrite:mossy_deepslate_brick_wall","pyrite:charred_nether_brick_wall","pyrite:blue_nether_brick_wall"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/item/bricks.json b/common/src/main/resources/data/pyrite/tags/item/bricks.json new file mode 100644 index 000000000..60bbe275c --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/item/bricks.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:white_bricks","pyrite:orange_bricks","pyrite:magenta_bricks","pyrite:light_blue_bricks","pyrite:yellow_bricks","pyrite:lime_bricks","pyrite:pink_bricks","pyrite:gray_bricks","pyrite:light_gray_bricks","pyrite:cyan_bricks","pyrite:purple_bricks","pyrite:blue_bricks","pyrite:brown_bricks","pyrite:green_bricks","pyrite:red_bricks","pyrite:black_bricks","pyrite:glow_bricks","pyrite:dragon_bricks","pyrite:star_bricks","pyrite:honey_bricks","pyrite:nostalgia_bricks","pyrite:rose_bricks","pyrite:poisonous_bricks","pyrite:smooth_stone_bricks","pyrite:mossy_smooth_stone_bricks","pyrite:granite_bricks","pyrite:mossy_granite_bricks","pyrite:andesite_bricks","pyrite:mossy_andesite_bricks","pyrite:diorite_bricks","pyrite:mossy_diorite_bricks","pyrite:calcite_bricks","pyrite:mossy_calcite_bricks","pyrite:mossy_deepslate_bricks","pyrite:charred_nether_bricks","pyrite:blue_nether_bricks"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/item/concrete_slabs.json b/common/src/main/resources/data/pyrite/tags/item/concrete_slabs.json new file mode 100644 index 000000000..04fa02724 --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/item/concrete_slabs.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:white_concrete_slab","pyrite:orange_concrete_slab","pyrite:magenta_concrete_slab","pyrite:light_blue_concrete_slab","pyrite:yellow_concrete_slab","pyrite:lime_concrete_slab","pyrite:pink_concrete_slab","pyrite:gray_concrete_slab","pyrite:light_gray_concrete_slab","pyrite:cyan_concrete_slab","pyrite:purple_concrete_slab","pyrite:blue_concrete_slab","pyrite:brown_concrete_slab","pyrite:green_concrete_slab","pyrite:red_concrete_slab","pyrite:black_concrete_slab","pyrite:glow_concrete_slab","pyrite:dragon_concrete_slab","pyrite:star_concrete_slab","pyrite:honey_concrete_slab","pyrite:nostalgia_concrete_slab","pyrite:rose_concrete_slab","pyrite:poisonous_concrete_slab"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/item/concrete_stairs.json b/common/src/main/resources/data/pyrite/tags/item/concrete_stairs.json new file mode 100644 index 000000000..b6ea9670a --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/item/concrete_stairs.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:white_concrete_stairs","pyrite:orange_concrete_stairs","pyrite:magenta_concrete_stairs","pyrite:light_blue_concrete_stairs","pyrite:yellow_concrete_stairs","pyrite:lime_concrete_stairs","pyrite:pink_concrete_stairs","pyrite:gray_concrete_stairs","pyrite:light_gray_concrete_stairs","pyrite:cyan_concrete_stairs","pyrite:purple_concrete_stairs","pyrite:blue_concrete_stairs","pyrite:brown_concrete_stairs","pyrite:green_concrete_stairs","pyrite:red_concrete_stairs","pyrite:black_concrete_stairs","pyrite:glow_concrete_stairs","pyrite:dragon_concrete_stairs","pyrite:star_concrete_stairs","pyrite:honey_concrete_stairs","pyrite:nostalgia_concrete_stairs","pyrite:rose_concrete_stairs","pyrite:poisonous_concrete_stairs"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/item/crafting_tables.json b/common/src/main/resources/data/pyrite/tags/item/crafting_tables.json new file mode 100644 index 000000000..edd0b7e63 --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/item/crafting_tables.json @@ -0,0 +1 @@ +{"replace":false,"values":[{"id":"pyrite:white_stained_crafting_table","required":false},{"id":"pyrite:orange_stained_crafting_table","required":false},{"id":"pyrite:magenta_stained_crafting_table","required":false},{"id":"pyrite:light_blue_stained_crafting_table","required":false},{"id":"pyrite:yellow_stained_crafting_table","required":false},{"id":"pyrite:lime_stained_crafting_table","required":false},{"id":"pyrite:pink_stained_crafting_table","required":false},{"id":"pyrite:gray_stained_crafting_table","required":false},{"id":"pyrite:light_gray_stained_crafting_table","required":false},{"id":"pyrite:cyan_stained_crafting_table","required":false},{"id":"pyrite:purple_stained_crafting_table","required":false},{"id":"pyrite:blue_stained_crafting_table","required":false},{"id":"pyrite:brown_stained_crafting_table","required":false},{"id":"pyrite:green_stained_crafting_table","required":false},{"id":"pyrite:red_stained_crafting_table","required":false},{"id":"pyrite:black_stained_crafting_table","required":false},{"id":"pyrite:glow_stained_crafting_table","required":false},{"id":"pyrite:dragon_stained_crafting_table","required":false},{"id":"pyrite:star_stained_crafting_table","required":false},{"id":"pyrite:honey_stained_crafting_table","required":false},{"id":"pyrite:nostalgia_stained_crafting_table","required":false},{"id":"pyrite:rose_stained_crafting_table","required":false},{"id":"pyrite:poisonous_stained_crafting_table","required":false},{"id":"pyrite:spruce_crafting_table","required":false},{"id":"pyrite:birch_crafting_table","required":false},{"id":"pyrite:jungle_crafting_table","required":false},{"id":"pyrite:acacia_crafting_table","required":false},{"id":"pyrite:dark_oak_crafting_table","required":false},{"id":"pyrite:mangrove_crafting_table","required":false},{"id":"pyrite:cherry_crafting_table","required":false},{"id":"pyrite:bamboo_crafting_table","required":false},{"id":"pyrite:crimson_crafting_table","required":false},{"id":"pyrite:warped_crafting_table","required":false},{"id":"pyrite:skyroot_crafting_table","required":false},{"id":"pyrite:red_mushroom_crafting_table","required":false},{"id":"pyrite:brown_mushroom_crafting_table","required":false}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/item/dyed_bricks.json b/common/src/main/resources/data/pyrite/tags/item/dyed_bricks.json new file mode 100644 index 000000000..3496f41ad --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/item/dyed_bricks.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:white_bricks","pyrite:orange_bricks","pyrite:magenta_bricks","pyrite:light_blue_bricks","pyrite:yellow_bricks","pyrite:lime_bricks","pyrite:pink_bricks","pyrite:gray_bricks","pyrite:light_gray_bricks","pyrite:cyan_bricks","pyrite:purple_bricks","pyrite:blue_bricks","pyrite:brown_bricks","pyrite:green_bricks","pyrite:red_bricks","pyrite:black_bricks","pyrite:glow_bricks","pyrite:dragon_bricks","pyrite:star_bricks","pyrite:honey_bricks","pyrite:nostalgia_bricks","pyrite:rose_bricks","pyrite:poisonous_bricks"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/item/fences.json b/common/src/main/resources/data/pyrite/tags/item/fences.json new file mode 100644 index 000000000..e344daac6 --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/item/fences.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:white_stained_fence","pyrite:orange_stained_fence","pyrite:magenta_stained_fence","pyrite:light_blue_stained_fence","pyrite:yellow_stained_fence","pyrite:lime_stained_fence","pyrite:pink_stained_fence","pyrite:gray_stained_fence","pyrite:light_gray_stained_fence","pyrite:cyan_stained_fence","pyrite:purple_stained_fence","pyrite:blue_stained_fence","pyrite:brown_stained_fence","pyrite:green_stained_fence","pyrite:red_stained_fence","pyrite:black_stained_fence","pyrite:glow_stained_fence","pyrite:dragon_stained_fence","pyrite:star_stained_fence","pyrite:honey_stained_fence","pyrite:nostalgia_stained_fence","pyrite:rose_stained_fence","pyrite:poisonous_stained_fence","pyrite:red_mushroom_fence","pyrite:brown_mushroom_fence"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/item/lamps.json b/common/src/main/resources/data/pyrite/tags/item/lamps.json new file mode 100644 index 000000000..8e0824c5f --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/item/lamps.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:white_lamp","pyrite:orange_lamp","pyrite:magenta_lamp","pyrite:light_blue_lamp","pyrite:yellow_lamp","pyrite:lime_lamp","pyrite:pink_lamp","pyrite:gray_lamp","pyrite:light_gray_lamp","pyrite:cyan_lamp","pyrite:purple_lamp","pyrite:blue_lamp","pyrite:brown_lamp","pyrite:green_lamp","pyrite:red_lamp","pyrite:black_lamp","pyrite:glow_lamp","pyrite:dragon_lamp","pyrite:star_lamp","pyrite:honey_lamp","pyrite:nostalgia_lamp","pyrite:rose_lamp","pyrite:poisonous_lamp","pyrite:glowstone_lamp","pyrite:lit_redstone_lamp"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/item/metal_bars.json b/common/src/main/resources/data/pyrite/tags/item/metal_bars.json new file mode 100644 index 000000000..8a5a022f4 --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/item/metal_bars.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:gold_bars","pyrite:emerald_bars","pyrite:diamond_bars","pyrite:netherite_bars","pyrite:quartz_bars","pyrite:amethyst_bars","pyrite:lapis_bars","pyrite:redstone_bars","pyrite:copper_bars","pyrite:exposed_copper_bars","pyrite:weathered_copper_bars","pyrite:oxidized_copper_bars"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/item/metal_buttons.json b/common/src/main/resources/data/pyrite/tags/item/metal_buttons.json new file mode 100644 index 000000000..3760444f7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/item/metal_buttons.json @@ -0,0 +1 @@ +{"replace":false,"values":[{"id":"pyrite:iron_button","required":false},{"id":"pyrite:gold_button","required":false},{"id":"pyrite:emerald_button","required":false},{"id":"pyrite:diamond_button","required":false},{"id":"pyrite:netherite_button","required":false},{"id":"pyrite:quartz_button","required":false},{"id":"pyrite:amethyst_button","required":false},{"id":"pyrite:lapis_button","required":false},{"id":"pyrite:redstone_button","required":false},{"id":"pyrite:copper_button","required":false},{"id":"pyrite:exposed_copper_button","required":false},{"id":"pyrite:weathered_copper_button","required":false},{"id":"pyrite:oxidized_copper_button","required":false}]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/item/metal_trapdoors.json b/common/src/main/resources/data/pyrite/tags/item/metal_trapdoors.json new file mode 100644 index 000000000..00321b3e6 --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/item/metal_trapdoors.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:gold_trapdoor","pyrite:emerald_trapdoor","pyrite:diamond_trapdoor","pyrite:netherite_trapdoor","pyrite:quartz_trapdoor","pyrite:amethyst_trapdoor","pyrite:lapis_trapdoor","pyrite:redstone_trapdoor","pyrite:copper_trapdoor","pyrite:exposed_copper_trapdoor","pyrite:weathered_copper_trapdoor","pyrite:oxidized_copper_trapdoor"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/item/mushroom_stem.json b/common/src/main/resources/data/pyrite/tags/item/mushroom_stem.json new file mode 100644 index 000000000..587406cc3 --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/item/mushroom_stem.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:red_mushroom_stem","pyrite:brown_mushroom_stem"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/item/stained_framed_glass.json b/common/src/main/resources/data/pyrite/tags/item/stained_framed_glass.json new file mode 100644 index 000000000..8fc53e7e7 --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/item/stained_framed_glass.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:white_framed_glass","pyrite:orange_framed_glass","pyrite:magenta_framed_glass","pyrite:light_blue_framed_glass","pyrite:yellow_framed_glass","pyrite:lime_framed_glass","pyrite:pink_framed_glass","pyrite:gray_framed_glass","pyrite:light_gray_framed_glass","pyrite:cyan_framed_glass","pyrite:purple_framed_glass","pyrite:blue_framed_glass","pyrite:brown_framed_glass","pyrite:green_framed_glass","pyrite:red_framed_glass","pyrite:black_framed_glass","pyrite:glow_framed_glass","pyrite:dragon_framed_glass","pyrite:star_framed_glass","pyrite:honey_framed_glass","pyrite:nostalgia_framed_glass","pyrite:rose_framed_glass","pyrite:poisonous_framed_glass"]} \ No newline at end of file diff --git a/common/src/main/resources/data/pyrite/tags/item/wall_gates.json b/common/src/main/resources/data/pyrite/tags/item/wall_gates.json new file mode 100644 index 000000000..4f0cef101 --- /dev/null +++ b/common/src/main/resources/data/pyrite/tags/item/wall_gates.json @@ -0,0 +1 @@ +{"replace":false,"values":["pyrite:white_brick_wall_gate","pyrite:white_terracotta_brick_wall_gate","pyrite:orange_brick_wall_gate","pyrite:orange_terracotta_brick_wall_gate","pyrite:magenta_brick_wall_gate","pyrite:magenta_terracotta_brick_wall_gate","pyrite:light_blue_brick_wall_gate","pyrite:light_blue_terracotta_brick_wall_gate","pyrite:yellow_brick_wall_gate","pyrite:yellow_terracotta_brick_wall_gate","pyrite:lime_brick_wall_gate","pyrite:lime_terracotta_brick_wall_gate","pyrite:pink_brick_wall_gate","pyrite:pink_terracotta_brick_wall_gate","pyrite:gray_brick_wall_gate","pyrite:gray_terracotta_brick_wall_gate","pyrite:light_gray_brick_wall_gate","pyrite:light_gray_terracotta_brick_wall_gate","pyrite:cyan_brick_wall_gate","pyrite:cyan_terracotta_brick_wall_gate","pyrite:purple_brick_wall_gate","pyrite:purple_terracotta_brick_wall_gate","pyrite:blue_brick_wall_gate","pyrite:blue_terracotta_brick_wall_gate","pyrite:brown_brick_wall_gate","pyrite:brown_terracotta_brick_wall_gate","pyrite:green_brick_wall_gate","pyrite:green_terracotta_brick_wall_gate","pyrite:red_brick_wall_gate","pyrite:red_terracotta_brick_wall_gate","pyrite:black_brick_wall_gate","pyrite:black_terracotta_brick_wall_gate","pyrite:glow_brick_wall_gate","pyrite:glow_terracotta_brick_wall_gate","pyrite:dragon_brick_wall_gate","pyrite:dragon_terracotta_brick_wall_gate","pyrite:star_brick_wall_gate","pyrite:star_terracotta_brick_wall_gate","pyrite:honey_brick_wall_gate","pyrite:honey_terracotta_brick_wall_gate","pyrite:nostalgia_brick_wall_gate","pyrite:nostalgia_terracotta_brick_wall_gate","pyrite:rose_brick_wall_gate","pyrite:rose_terracotta_brick_wall_gate","pyrite:poisonous_brick_wall_gate","pyrite:poisonous_terracotta_brick_wall_gate",{"id":"pyrite:holystone_wall_gate","required":false},{"id":"pyrite:mossy_holystone_wall_gate","required":false},{"id":"pyrite:holystone_brick_wall_gate","required":false},{"id":"pyrite:icestone_wall_gate","required":false},{"id":"pyrite:aerogel_wall_gate","required":false},{"id":"pyrite:carved_wall_gate","required":false},{"id":"pyrite:angelic_wall_gate","required":false},{"id":"pyrite:hellfire_wall_gate","required":false},"pyrite:cobblestone_brick_wall_gate","pyrite:mossy_cobblestone_brick_wall_gate","pyrite:smooth_stone_brick_wall_gate","pyrite:mossy_smooth_stone_brick_wall_gate","pyrite:granite_brick_wall_gate","pyrite:mossy_granite_brick_wall_gate","pyrite:andesite_brick_wall_gate","pyrite:mossy_andesite_brick_wall_gate","pyrite:diorite_brick_wall_gate","pyrite:mossy_diorite_brick_wall_gate","pyrite:calcite_brick_wall_gate","pyrite:mossy_calcite_brick_wall_gate","pyrite:mossy_deepslate_brick_wall_gate","pyrite:charred_nether_brick_wall_gate","pyrite:blue_nether_brick_wall_gate","pyrite:cobblestone_wall_gate","pyrite:mossy_cobblestone_wall_gate","pyrite:stone_brick_wall_gate","pyrite:mossy_stone_brick_wall_gate","pyrite:granite_wall_gate","pyrite:diorite_wall_gate","pyrite:andesite_wall_gate","pyrite:cobbled_deepslate_wall_gate","pyrite:polished_deepslate_wall_gate","pyrite:deepslate_brick_wall_gate","pyrite:deepslate_tile_wall_gate","pyrite:brick_wall_gate","pyrite:mud_brick_wall_gate","pyrite:sandstone_wall_gate","pyrite:red_sandstone_wall_gate","pyrite:prismarine_wall_gate","pyrite:nether_brick_wall_gate","pyrite:red_nether_brick_wall_gate","pyrite:blackstone_wall_gate","pyrite:polished_blackstone_wall_gate","pyrite:polished_blackstone_brick_wall_gate","pyrite:end_stone_brick_wall_gate","pyrite:cut_iron_wall_gate","pyrite:smooth_iron_wall_gate","pyrite:cut_gold_wall_gate","pyrite:smooth_gold_wall_gate","pyrite:cut_emerald_wall_gate","pyrite:smooth_emerald_wall_gate","pyrite:cut_diamond_wall_gate","pyrite:smooth_diamond_wall_gate","pyrite:cut_netherite_wall_gate","pyrite:smooth_netherite_wall_gate","pyrite:cut_quartz_wall_gate","pyrite:smooth_quartz_wall_gate","pyrite:cut_amethyst_wall_gate","pyrite:smooth_amethyst_wall_gate","pyrite:cut_lapis_wall_gate","pyrite:smooth_lapis_wall_gate","pyrite:cut_redstone_wall_gate","pyrite:smooth_redstone_wall_gate","pyrite:cut_copper_wall_gate","pyrite:smooth_copper_wall_gate","pyrite:cut_exposed_copper_wall_gate","pyrite:smooth_exposed_copper_wall_gate","pyrite:cut_weathered_copper_wall_gate","pyrite:smooth_weathered_copper_wall_gate","pyrite:cut_oxidized_copper_wall_gate","pyrite:smooth_oxidized_copper_wall_gate"]} \ No newline at end of file diff --git a/fabric/src/main/java/cc/cassian/pyrite/fabric/PyriteFabric.java b/fabric/src/main/java/cc/cassian/pyrite/fabric/PyriteFabric.java index fc8d0478b..d711d6d65 100644 --- a/fabric/src/main/java/cc/cassian/pyrite/fabric/PyriteFabric.java +++ b/fabric/src/main/java/cc/cassian/pyrite/fabric/PyriteFabric.java @@ -1,20 +1,15 @@ package cc.cassian.pyrite.fabric; import cc.cassian.pyrite.Pyrite; +import cc.cassian.pyrite.functions.fabric.BlockCreatorImpl; +import cc.cassian.pyrite.functions.fabric.FabricHelpers; import net.fabricmc.api.ModInitializer; -import net.minecraft.registry.Registries; -import net.minecraft.registry.Registry; -import net.minecraft.util.Identifier; - -import static cc.cassian.pyrite.Pyrite.modID; -import static cc.cassian.pyrite.functions.fabric.FabricHelpers.PYRITE_GROUP; -import static cc.cassian.pyrite.functions.fabric.FabricHelpers.registerFuelBlocks; public class PyriteFabric implements ModInitializer { @Override public void onInitialize() { Pyrite.init(); - Registry.register(Registries.ITEM_GROUP, Identifier.of(modID, "pyrite_group"), PYRITE_GROUP); - registerFuelBlocks(); + BlockCreatorImpl.register(); + FabricHelpers.registerFuelBlocks(); } } \ No newline at end of file diff --git a/fabric/src/main/java/cc/cassian/pyrite/fabric/client/PyriteClient.java b/fabric/src/main/java/cc/cassian/pyrite/fabric/client/PyriteClient.java index 0ede885c4..e989a7ca0 100644 --- a/fabric/src/main/java/cc/cassian/pyrite/fabric/client/PyriteClient.java +++ b/fabric/src/main/java/cc/cassian/pyrite/fabric/client/PyriteClient.java @@ -16,14 +16,14 @@ public class PyriteClient implements ClientModInitializer { @Override public void onInitializeClient() { - for (Block grassBlock : grassBlocks) { + for (Block grassBlock : GRASS_BLOCKS) { ColorProviderRegistry.BLOCK.register((state, view, pos, tintIndex) -> BiomeColors.getGrassColor(view, pos), grassBlock); ColorProviderRegistry.ITEM.register((stack, tintIndex) -> 9551193, grassBlock); } - for (Block transparentBlock : transparentBlocks) { + for (Block transparentBlock : TRANSPARENT_BLOCKS) { BlockRenderLayerMap.INSTANCE.putBlock(transparentBlock, RenderLayer.getCutout()); } - for (Block translucentBlock : translucentBlocks) { + for (Block translucentBlock : TRANSLUCENT_BLOCKS) { BlockRenderLayerMap.INSTANCE.putBlock(translucentBlock, RenderLayer.getTranslucent()); } } diff --git a/fabric/src/main/java/cc/cassian/pyrite/functions/fabric/BlockCreatorImpl.java b/fabric/src/main/java/cc/cassian/pyrite/functions/fabric/BlockCreatorImpl.java index ee29382f9..b1d237748 100644 --- a/fabric/src/main/java/cc/cassian/pyrite/functions/fabric/BlockCreatorImpl.java +++ b/fabric/src/main/java/cc/cassian/pyrite/functions/fabric/BlockCreatorImpl.java @@ -1,202 +1,369 @@ package cc.cassian.pyrite.functions.fabric; import cc.cassian.pyrite.blocks.*; -import net.fabricmc.fabric.api.object.builder.v1.block.entity.FabricBlockEntityTypeBuilder; +import cc.cassian.pyrite.functions.ModLists; +import com.mojang.serialization.MapCodec; +import net.fabricmc.fabric.api.itemgroup.v1.FabricItemGroup; +import net.fabricmc.fabric.api.object.builder.v1.block.type.WoodTypeBuilder; import net.minecraft.block.*; import net.minecraft.block.entity.BlockEntityType; import net.minecraft.entity.effect.StatusEffects; -import net.minecraft.item.BlockItem; -import net.minecraft.item.Item; +import net.minecraft.item.*; import net.minecraft.particle.ParticleEffect; import net.minecraft.particle.ParticleTypes; import net.minecraft.registry.Registries; import net.minecraft.registry.Registry; -import net.minecraft.util.math.BlockPos; +import net.minecraft.text.Text; +import net.minecraft.util.Identifier; import java.util.ArrayList; +import java.util.Objects; import static cc.cassian.pyrite.Pyrite.LOGGER; -import static cc.cassian.pyrite.functions.ModHelpers.identifier; +import static cc.cassian.pyrite.Pyrite.modID; +import static cc.cassian.pyrite.functions.ModHelpers.*; +import static cc.cassian.pyrite.functions.ModLists.getDyes; import static cc.cassian.pyrite.functions.fabric.FabricHelpers.*; +@SuppressWarnings("unused") public class BlockCreatorImpl { - public static ArrayList pyriteBlocks = new ArrayList<>(); - public static ArrayList pyriteItemlessBlocks = new ArrayList<>(); - public static ArrayList pyriteItems = new ArrayList<>(); - public static ArrayList pyriteBlockIDs = new ArrayList<>(); - public static ArrayList pyriteItemlessBlockIDs = new ArrayList<>(); - public static ArrayList pyriteItemIDs = new ArrayList<>(); + // All blocks and their IDs. + public static final ArrayList BLOCKS = new ArrayList<>(); + public static final ArrayList BLOCK_IDS = new ArrayList<>(); + // All blocks without block items and their IDs. + public static final ArrayList BLOCKS_ITEMLESS = new ArrayList<>(); + public static final ArrayList BLOCK_IDS_ITEMLESS = new ArrayList<>(); + // All items and their IDs. + public static final ArrayList ITEMS = new ArrayList<>(); + public static final ArrayList ITEM_IDS = new ArrayList<>(); + // Sublists for Item Groups + public static final ArrayList WOOD_BLOCKS = new ArrayList<>(); + public static final ArrayList RESOURCE_BLOCKS = new ArrayList<>(); + public static final ArrayList BRICK_BLOCKS = new ArrayList<>(); + public static final ArrayList REDSTONE_BLOCKS = new ArrayList<>(); + public static final ArrayList MISC_BLOCKS = new ArrayList<>(); - @SuppressWarnings("unused") + /** + * Implements {@link cc.cassian.pyrite.functions.BlockCreator#createWoodType(String, BlockSetType)} on Fabric. + */ + public static WoodType createWoodType(String blockID, BlockSetType setType) { + return WoodTypeBuilder.copyOf(WoodType.OAK).register(identifier(blockID), setType); + } + + /** + * Implements {@link cc.cassian.pyrite.functions.BlockCreator#platfomRegister(String, String, AbstractBlock.Settings, WoodType, BlockSetType, ParticleEffect, Block)} on Fabric. + */ public static void platfomRegister(String blockID, String blockType, AbstractBlock.Settings blockSettings, WoodType woodType, BlockSetType blockSetType, ParticleEffect particle, Block copyBlock) { int power; if (blockID.contains("redstone")) power = 15; else power = 0; + Block newBlock; switch (blockType.toLowerCase()) { case "block": - pyriteBlocks.add(new ModBlock(blockSettings, power)); - pyriteBlockIDs.add(blockID); + newBlock = new ModBlock(blockSettings, power); + BLOCKS.add(newBlock); + BLOCK_IDS.add(blockID); + if (power == 15) + if (blockID.equals("lit_redstone_lamp")) + REDSTONE_BLOCKS.add(0, newBlock); + else + REDSTONE_BLOCKS.add(newBlock); + if (Objects.equals(copyBlock, Blocks.OAK_PLANKS)) + WOOD_BLOCKS.add(newBlock); break; case "crafting": - pyriteBlocks.add(new ModCraftingTable(blockSettings)); - pyriteBlockIDs.add(blockID); + AbstractBlock.Settings craftingSettings; + boolean burnable; + // If block is not composed of flammable wood, make it burnable. if (!(blockID.contains("crimson") || blockID.contains("warped"))) { - fuel.put(getLastBlock(), 300); + craftingSettings = blockSettings.burnable(); + burnable = true; + } + else { + craftingSettings = blockSettings; + burnable = false; } + // Register Crafting table. + newBlock = new ModCraftingTable(craftingSettings); + BLOCKS.add(newBlock); + BLOCK_IDS.add(blockID); + WOOD_BLOCKS.add(newBlock); + // If block is not composed of flammable wood, make it furnace fuel. + if (burnable) + FUEL_BLOCKS.put(newBlock, 300); break; case "ladder": - pyriteBlocks.add(new LadderBlock(blockSettings)); - pyriteBlockIDs.add(blockID); + newBlock = new LadderBlock(blockSettings); + BLOCKS.add(newBlock); + BLOCK_IDS.add(blockID); + WOOD_BLOCKS.add(newBlock); addTransparentBlock(); break; case "carpet": - pyriteBlocks.add(new ModCarpet(blockSettings)); - pyriteBlockIDs.add(blockID); + newBlock = new ModCarpet(blockSettings); + BLOCKS.add(newBlock); + BLOCK_IDS.add(blockID); break; case "slab": - pyriteBlocks.add(new ModSlab(blockSettings, power)); - pyriteBlockIDs.add(blockID); + newBlock = new ModSlab(blockSettings, power); + BLOCKS.add(newBlock); + BLOCK_IDS.add(blockID); + if (Objects.equals(copyBlock, Blocks.OAK_SLAB)) + WOOD_BLOCKS.add(newBlock); + if (power == 15) + REDSTONE_BLOCKS.add(newBlock); break; case "stairs": - pyriteBlocks.add(new ModStairs(copyBlock.getDefaultState(), blockSettings)); - pyriteBlockIDs.add(blockID); + newBlock = new ModStairs(copyBlock.getDefaultState(), blockSettings); + BLOCKS.add(newBlock); + BLOCK_IDS.add(blockID); + if (Objects.equals(copyBlock, Blocks.OAK_STAIRS)) + WOOD_BLOCKS.add(newBlock); break; case "wall": - pyriteBlocks.add(new ModWall(blockSettings, power)); - pyriteBlockIDs.add(blockID); + newBlock = new ModWall(blockSettings, power); + BLOCKS.add(newBlock); + BLOCK_IDS.add(blockID); + if (power == 15) + REDSTONE_BLOCKS.add(newBlock); break; case "fence": - pyriteBlocks.add(new FenceBlock(blockSettings)); - pyriteBlockIDs.add(blockID); + newBlock = new FenceBlock(blockSettings); + BLOCKS.add(newBlock); + BLOCK_IDS.add(blockID); + WOOD_BLOCKS.add(newBlock); break; case "log": - pyriteBlocks.add(new ModPillar(blockSettings, power)); - pyriteBlockIDs.add(blockID); + newBlock = new ModPillar(blockSettings, power); + BLOCKS.add(newBlock); + BLOCK_IDS.add(blockID); + if (blockID.contains("mushroom")) + WOOD_BLOCKS.add(newBlock); + else if (power == 15) + REDSTONE_BLOCKS.add(newBlock); break; case "facing": - pyriteBlocks.add(new ModFacingBlock(blockSettings, power)); - pyriteBlockIDs.add(blockID); + newBlock = new ModFacingBlock(blockSettings, power); + BLOCKS.add(newBlock); + BLOCK_IDS.add(blockID); + if (power == 15) + REDSTONE_BLOCKS.add(newBlock); break; case "bars", "glass_pane": - pyriteBlocks.add(new ModPane(blockSettings, power)); - pyriteBlockIDs.add(blockID); + newBlock = new ModPane(blockSettings, power); + BLOCKS.add(newBlock); + BLOCK_IDS.add(blockID); + if (power == 15) + REDSTONE_BLOCKS.add(newBlock); addTransparentBlock(); break; case "tinted_glass_pane": - pyriteBlocks.add(new ModPane(blockSettings, power)); - pyriteBlockIDs.add(blockID); + newBlock = new ModPane(blockSettings, power); + BLOCKS.add(newBlock); + BLOCK_IDS.add(blockID); addTranslucentBlock(); break; case "glass": - pyriteBlocks.add(new ModGlass(blockSettings)); - pyriteBlockIDs.add(blockID); + newBlock = new ModGlass(blockSettings); + BLOCKS.add(newBlock); + BLOCK_IDS.add(blockID); addTransparentBlock(); break; case "tinted_glass": - pyriteBlocks.add(new ModGlass(blockSettings)); - pyriteBlockIDs.add(blockID); + newBlock = new ModGlass(blockSettings); + BLOCKS.add(newBlock); + BLOCK_IDS.add(blockID); addTranslucentBlock(); break; case "gravel": - pyriteBlocks.add(new GravelBlock(blockSettings)); - pyriteBlockIDs.add(blockID); + newBlock = new FallingBlock(blockSettings); + BLOCKS.add(newBlock); + BLOCK_IDS.add(blockID); break; case "flower": - pyriteBlocks.add(new FlowerBlock(StatusEffects.NIGHT_VISION, 5, blockSettings)); - pyriteBlockIDs.add(blockID); + newBlock = new FlowerBlock(StatusEffects.NIGHT_VISION, 5, blockSettings); + BLOCKS.add(newBlock); + BLOCK_IDS.add(blockID); addTransparentBlock(); break; case "fence_gate", "wall_gate": - pyriteBlocks.add(new FenceGateBlock(blockSettings, woodType)); - pyriteBlockIDs.add(blockID); + newBlock = new FenceGateBlock(blockSettings, woodType); + BLOCKS.add(newBlock); + BLOCK_IDS.add(blockID); + if (blockID.contains("_stained") || blockID.contains("mushroom")) + WOOD_BLOCKS.add(newBlock); break; case "sign": //Sign Blocks - pyriteItemlessBlocks.add(new SignBlock(blockSettings, woodType) { - public ModSign createBlockEntity(BlockPos pos, BlockState state) { - return new ModSign(pos, state); - } - }); - pyriteItemlessBlockIDs.add(blockID); + newBlock = new SignBlock(blockSettings, woodType); + BLOCKS_ITEMLESS.add(newBlock); + BLOCK_IDS_ITEMLESS.add(blockID); //Wall Sign Blocks - pyriteItemlessBlocks.add(new WallSignBlock(blockSettings, woodType) { - public ModSign createBlockEntity(BlockPos pos, BlockState state) { - return new ModSign(pos, state); - } - }); - pyriteItemlessBlockIDs.add(blockID + "_wall"); - //Register block entity for standard signs. - registerSignBlockEntity(pyriteItemlessBlocks.get(pyriteItemlessBlocks.size()-2), pyriteItemlessBlocks.get(pyriteItemlessBlockIDs.size()-1)); + final WallSignBlock WALL_SIGN = new WallSignBlock(blockSettings, woodType); + BLOCKS_ITEMLESS.add(WALL_SIGN); + BLOCK_IDS_ITEMLESS.add(blockID.replace("_sign", "_wall_sign")); + // Register item for signs. + final Item SIGN_ITEM = new SignItem(new Item.Settings().maxCount(16), newBlock, WALL_SIGN); + ITEMS.add(SIGN_ITEM); + ITEM_IDS.add(blockID); + WOOD_BLOCKS.add(SIGN_ITEM); + break; + case "hanging_sign": + //Sign Blocks + newBlock = new HangingSignBlock(blockSettings, woodType); + BLOCKS_ITEMLESS.add(newBlock); + BLOCK_IDS_ITEMLESS.add(blockID); + //Wall Sign Blocks + final WallHangingSignBlock HANGING_WALL_SIGN = new WallHangingSignBlock(blockSettings, woodType); + BLOCKS_ITEMLESS.add(HANGING_WALL_SIGN); + BLOCK_IDS_ITEMLESS.add(blockID.replace("_sign", "_wall_sign")); + // Register item for signs. + final Item HANGING_SIGN_ITEM = new HangingSignItem(newBlock, HANGING_WALL_SIGN, new Item.Settings().maxCount(16)); + ITEMS.add(HANGING_SIGN_ITEM); + ITEM_IDS.add(blockID); + WOOD_BLOCKS.add(HANGING_SIGN_ITEM); break; case "door": - pyriteBlocks.add(new DoorBlock(blockSettings.nonOpaque(), blockSetType)); - pyriteBlockIDs.add(blockID); + newBlock = new DoorBlock(blockSettings.nonOpaque(), blockSetType); + BLOCKS.add(newBlock); + BLOCK_IDS.add(blockID); addTransparentBlock(); + if (blockID.contains("_stained") || blockID.contains("mushroom")) + WOOD_BLOCKS.add(newBlock); break; case "trapdoor": - pyriteBlocks.add(new TrapdoorBlock(blockSettings.nonOpaque(), blockSetType)); - pyriteBlockIDs.add(blockID); + newBlock = new TrapdoorBlock(blockSettings.nonOpaque(), blockSetType); + BLOCKS.add(newBlock); + BLOCK_IDS.add(blockID); addTransparentBlock(); + if (blockID.contains("_stained") || blockID.contains("mushroom")) + WOOD_BLOCKS.add(newBlock); break; case "button": - pyriteBlocks.add(new ModWoodenButton(blockSettings, blockSetType)); - pyriteBlockIDs.add(blockID); + newBlock = new ModWoodenButton(blockSettings, blockSetType); + BLOCKS.add(newBlock); + BLOCK_IDS.add(blockID); + if (blockID.contains("_stained") || blockID.contains("mushroom")) + WOOD_BLOCKS.add(newBlock); break; case "pressure_plate": - pyriteBlocks.add(new ModPressurePlate(blockSettings, blockSetType)); - pyriteBlockIDs.add(blockID); + newBlock = new ModPressurePlate(blockSettings, blockSetType); + BLOCKS.add(newBlock); + BLOCK_IDS.add(blockID); + if (blockID.contains("_stained") || blockID.contains("mushroom")) + WOOD_BLOCKS.add(newBlock); break; case "torch": if (particle == null) - pyriteBlocks.add(new ModTorch(blockSettings.nonOpaque(), ParticleTypes.FLAME)); + newBlock = new ModTorch(blockSettings.nonOpaque(), ParticleTypes.FLAME); else - pyriteBlocks.add(new ModTorch(blockSettings.nonOpaque(), particle)); - pyriteBlockIDs.add(blockID); + newBlock = new ModTorch(blockSettings.nonOpaque(), particle); + BLOCKS.add(newBlock); + BLOCK_IDS.add(blockID); addTransparentBlock(); break; case "torch_lever": - pyriteBlocks.add(new TorchLever(blockSettings.nonOpaque(), particle)); - pyriteBlockIDs.add(blockID); + newBlock = new TorchLever(blockSettings.nonOpaque(), particle); + BLOCKS.add(newBlock); + BLOCK_IDS.add(blockID); + REDSTONE_BLOCKS.add(newBlock); addTransparentBlock(); break; + case "concrete_powder": + newBlock = new ConcretePowderBlock(getLastBlock(), blockSettings); + BLOCKS.add(newBlock); + BLOCK_IDS.add(BLOCK_IDS.indexOf(blockID.replace("_powder", "")), blockID); + break; + case "switchable_glass": + newBlock = new SwitchableGlass(blockSettings); + BLOCKS.add(newBlock); + BLOCK_IDS.add(blockID); + REDSTONE_BLOCKS.add(newBlock); + addTranslucentBlock(); + break; default: - LOGGER.error("{}created as a generic block, block provided{}", blockID, blockType); - pyriteBlocks.add(new Block(blockSettings)); - pyriteBlockIDs.add(blockID); + LOGGER.error("{}created as a generic block, block provided type: {}", blockID, blockType); + newBlock = new Block(blockSettings); + BLOCKS.add(newBlock); + BLOCK_IDS.add(blockID); break; } + for (Block block : ModLists.getVanillaResourceBlocks()) { + if (blockID.contains(Registries.BLOCK.getId(block).getPath().replace("_block", "")) && !inGroup(newBlock)) + RESOURCE_BLOCKS.add(newBlock); + } + if (blockID.contains("brick") && !inGroup(newBlock)) + BRICK_BLOCKS.add(newBlock); if (blockID.contains("grass")) { addGrassBlock(); } } - - //Create and add Pyrite items. - @SuppressWarnings("unused") + /** + * Implements {@link cc.cassian.pyrite.functions.BlockCreator#registerPyriteItem(String)} on Fabric. + * This registers a basic item with no additional settings - primarily used for Dye. + */ public static void registerPyriteItem(String itemID) { - pyriteItems.add(new Item(new Item.Settings())); - pyriteItemIDs.add(itemID); + ITEMS.add(new Item(new Item.Settings())); + ITEM_IDS.add(itemID); + } + + public static boolean inGroup(Object obj) { + return WOOD_BLOCKS.contains(obj) || BRICK_BLOCKS.contains(obj) || RESOURCE_BLOCKS.contains(obj) || REDSTONE_BLOCKS.contains(obj) || MISC_BLOCKS.contains(obj); + } + + public static void addItemGroup(String id, String icon, ArrayList blocks) { + ItemGroup group = FabricItemGroup.builder() + .icon(() -> new ItemStack(BLOCKS.get(BLOCK_IDS.indexOf(icon)))) + .displayName(Text.translatable("itemGroup.pyrite." + id)) + .entries((context, entries) -> { + for (Object obj : blocks) { + if (obj instanceof Block block) + entries.add(block); + else if (obj instanceof Item item) + entries.add(item); + } + }) + .build(); + Registry.register(Registries.ITEM_GROUP, Identifier.of(modID, id), group); } - @SuppressWarnings("unused") public static void register() { //Register blocks and block items. - for (int x = 0; x < pyriteBlockIDs.size(); x++) { - Registry.register(Registries.BLOCK, identifier(pyriteBlockIDs.get(x)), pyriteBlocks.get(x)); - Registry.register(Registries.ITEM, identifier(pyriteBlockIDs.get(x)), new BlockItem(pyriteBlocks.get(x), new Item.Settings())); + for (int x = 0; x < BLOCK_IDS.size(); x++) { + final var block = BLOCKS.get(x); + final var blockID = BLOCK_IDS.get(x); + Registry.register(Registries.BLOCK, identifier(blockID), block); + Registry.register(Registries.ITEM, identifier(blockID), new BlockItem(block, new Item.Settings())); + if (!inGroup(block)) + MISC_BLOCKS.add(block); } //Registers blocks without block items. - for (int x = 0; x < pyriteItemlessBlockIDs.size(); x++) { - Registry.register(Registries.BLOCK, identifier(pyriteItemlessBlockIDs.get(x)), pyriteItemlessBlocks.get(x)); + for (int x = 0; x < BLOCK_IDS_ITEMLESS.size(); x++) { + final var block = BLOCKS_ITEMLESS.get(x); + final var blockID = BLOCK_IDS_ITEMLESS.get(x); + Registry.register(Registries.BLOCK, identifier(blockID), block); } //Registers items. - for (int x = 0; x < pyriteItemIDs.size(); x++) { - Registry.register(Registries.ITEM, identifier(pyriteItemIDs.get(x)), pyriteItems.get(x)); + for (int x = 0; x < ITEM_IDS.size(); x++) { + Registry.register(Registries.ITEM, identifier(ITEM_IDS.get(x)), ITEMS.get(x)); + if (!inGroup(ITEMS.get(x))) + MISC_BLOCKS.add(ITEMS.get(x)); } + // Add vanilla Concrete to Pyrite item group. + for (int dyeIndex = 0; dyeIndex < 15; dyeIndex++) { + final var concrete = getDyes()[dyeIndex]+"_concrete"; + final var concreteStairs = concrete + "_stairs"; + final var item = BLOCKS.get(BLOCK_IDS.indexOf(concreteStairs)); + MISC_BLOCKS.add( + MISC_BLOCKS.indexOf(item), + Registries.BLOCK.get(Identifier.of("minecraft",concrete))); + } + // Register item groups. + addItemGroup("wood_group", "dragon_stained_crafting_table", WOOD_BLOCKS); + addItemGroup("resource_group", "cut_emerald", RESOURCE_BLOCKS); + addItemGroup("brick_group", "cobblestone_bricks", BRICK_BLOCKS); + addItemGroup("redstone_group", "chiseled_redstone_block", REDSTONE_BLOCKS); + addItemGroup("pyrite_group", "glowing_obsidian", MISC_BLOCKS); } - - public static BlockEntityType registerSignBlockEntity(Block sign, Block wall_sign) { - return FabricBlockEntityTypeBuilder.create(ModSign::new, sign, wall_sign).build(); - - } -} +} \ No newline at end of file diff --git a/fabric/src/main/java/cc/cassian/pyrite/functions/fabric/FabricHelpers.java b/fabric/src/main/java/cc/cassian/pyrite/functions/fabric/FabricHelpers.java index 52240effd..64d4b8567 100644 --- a/fabric/src/main/java/cc/cassian/pyrite/functions/fabric/FabricHelpers.java +++ b/fabric/src/main/java/cc/cassian/pyrite/functions/fabric/FabricHelpers.java @@ -1,54 +1,34 @@ package cc.cassian.pyrite.functions.fabric; -import net.fabricmc.fabric.api.itemgroup.v1.FabricItemGroup; import net.fabricmc.fabric.api.registry.FuelRegistry; import net.minecraft.block.Block; -import net.minecraft.item.Item; -import net.minecraft.item.ItemGroup; -import net.minecraft.item.ItemStack; -import net.minecraft.text.Text; import java.util.ArrayList; import java.util.HashMap; -import static cc.cassian.pyrite.functions.fabric.BlockCreatorImpl.pyriteBlocks; -import static cc.cassian.pyrite.functions.fabric.BlockCreatorImpl.pyriteItems; +import static cc.cassian.pyrite.functions.fabric.BlockCreatorImpl.*; public class FabricHelpers { public static void registerFuelBlocks() { - fuel.forEach(FuelRegistry.INSTANCE::add); + FUEL_BLOCKS.forEach(FuelRegistry.INSTANCE::add); } - //Add items to the Pyrite Item Group - public static final ItemGroup PYRITE_GROUP = FabricItemGroup.builder() - .icon(() -> new ItemStack(pyriteBlocks.get(2))) - .displayName(Text.translatable("itemGroup.pyrite.group")) - .entries((context, entries) -> { - for (Block block : pyriteBlocks) { - entries.add(block); - } - for (Item item : pyriteItems) { - entries.add(item); - } - }) - .build(); - - public static ArrayList transparentBlocks = new ArrayList<>(); - public static ArrayList translucentBlocks = new ArrayList<>(); - public static ArrayList grassBlocks = new ArrayList<>(); - public static HashMap fuel = new HashMap<>(); + public static ArrayList TRANSPARENT_BLOCKS = new ArrayList<>(); + public static ArrayList TRANSLUCENT_BLOCKS = new ArrayList<>(); + public static ArrayList GRASS_BLOCKS = new ArrayList<>(); + public static HashMap FUEL_BLOCKS = new HashMap<>(); public static void addGrassBlock() { - grassBlocks.add(getLastBlock()); + GRASS_BLOCKS.add(getLastBlock()); } public static void addTransparentBlock() { - transparentBlocks.add(getLastBlock()); + TRANSPARENT_BLOCKS.add(getLastBlock()); } public static void addTranslucentBlock() { - translucentBlocks.add(getLastBlock()); + TRANSLUCENT_BLOCKS.add(getLastBlock()); } public static Block getLastBlock() { - return pyriteBlocks.get(pyriteBlocks.size() - 1); + return BLOCKS.get(BLOCKS.size() - 1); } diff --git a/fabric/src/main/java/cc/cassian/pyrite/functions/fabric/ModHelpersImpl.java b/fabric/src/main/java/cc/cassian/pyrite/functions/fabric/ModHelpersImpl.java new file mode 100644 index 000000000..8db212e29 --- /dev/null +++ b/fabric/src/main/java/cc/cassian/pyrite/functions/fabric/ModHelpersImpl.java @@ -0,0 +1,11 @@ +package cc.cassian.pyrite.functions.fabric; + + +import net.fabricmc.loader.api.FabricLoader; + +@SuppressWarnings("unused") +public class ModHelpersImpl { + public static boolean isModLoaded(String modID) { + return FabricLoader.getInstance().isModLoaded(modID); + } +} diff --git a/forge/src/main/java/cc/cassian/pyrite/functions/forge/BlockCreatorImpl.java b/forge/src/main/java/cc/cassian/pyrite/functions/forge/BlockCreatorImpl.java index d8c0864c1..3c512ee0b 100644 --- a/forge/src/main/java/cc/cassian/pyrite/functions/forge/BlockCreatorImpl.java +++ b/forge/src/main/java/cc/cassian/pyrite/functions/forge/BlockCreatorImpl.java @@ -48,7 +48,7 @@ public class BlockCreatorImpl { /** - * Implements {@link cc.cassian.pyrite.functions.BlockCreator#createWoodType(String, BlockSetType)} on NeoForge. + * Implements {@link cc.cassian.pyrite.functions.BlockCreator#createWoodType(String, BlockSetType)} on Fabric. */ public static WoodType createWoodType(String blockID, BlockSetType setType) { WoodType woodType = new WoodType(identifier(blockID).toString(), setType); diff --git a/gradle.properties b/gradle.properties index dca6ab023..e824ddb85 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,7 +3,7 @@ org.gradle.jvmargs=-Xmx2G org.gradle.parallel=true # Mod properties -mod_version = 0.15.1+1.20.1 +mod_version = 0.15.2+1.20.1 maven_group = cc.cassian archives_name = pyrite enabled_platforms = fabric,forge