-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #290 from Loweredgames/new_recipes_fix
Aggiunte nuove ricette per rinovare gli oggetti nel mondo Custom
- Loading branch information
Showing
95 changed files
with
1,536 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 0 additions & 20 deletions
20
datapacks/Skyblock CE datapacks/legacy_skyblock/data/skyblock_legacy/recipe/bundle.json
This file was deleted.
Oops, something went wrong.
19 changes: 19 additions & 0 deletions
19
...cks/Skyblock CE datapacks/skyblock_custom_world/data/skyblock/recipe/skyblock_azalea.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"group": "skyblock", | ||
"pattern": [ | ||
"M#" | ||
], | ||
"key": { | ||
"#": [ | ||
"minecraft:oak_sapling" | ||
], | ||
"M": [ | ||
"minecraft:moss_block" | ||
] | ||
}, | ||
"result": { | ||
"id": "minecraft:azalea", | ||
"count": 1 | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
...k CE datapacks/skyblock_custom_world/data/skyblock/recipe/skyblock_cobbled_deepslate.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"group": "skyblock", | ||
"pattern": [ | ||
"##", | ||
"##" | ||
], | ||
"key": { | ||
"#": [ | ||
"minecraft:cobblestone" | ||
] | ||
}, | ||
"result": { | ||
"id": "minecraft:cobbled_deepslate", | ||
"count": 4 | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
...ck CE datapacks/skyblock_custom_world/data/skyblock/recipe/skyblock_flowering_azalea.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"group": "skyblock", | ||
"pattern": [ | ||
"M#P" | ||
], | ||
"key": { | ||
"#": [ | ||
"minecraft:oak_sapling" | ||
], | ||
"M": [ | ||
"minecraft:moss_block" | ||
], | ||
"P": [ | ||
"minecraft:pink_petals" | ||
] | ||
}, | ||
"result": { | ||
"id": "minecraft:flowering_azalea", | ||
"count": 1 | ||
} | ||
} |
21 changes: 21 additions & 0 deletions
21
...yblock CE datapacks/skyblock_custom_world/data/skyblock/recipe/skyblock_glow_berries.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"group": "skyblock", | ||
"pattern": [ | ||
"###", | ||
"#T#", | ||
"###" | ||
], | ||
"key": { | ||
"#": [ | ||
"minecraft:glow_ink_sac" | ||
], | ||
"T": [ | ||
"minecraft:torchflower" | ||
] | ||
}, | ||
"result": { | ||
"id": "minecraft:glow_berries", | ||
"count": 1 | ||
} | ||
} |
16 changes: 16 additions & 0 deletions
16
...CE datapacks/skyblock_custom_world/data/skyblock/recipe/skyblock_prismarine_crystals.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"type": "minecraft:crafting_shapeless", | ||
"group": "skyblock", | ||
"ingredients": [ | ||
[ | ||
"minecraft:glow_ink_sac" | ||
], | ||
[ | ||
"minecraft:prismarine_shard" | ||
] | ||
], | ||
"result": { | ||
"id": "minecraft:prismarine_crystals", | ||
"count": 2 | ||
} | ||
} |
30 changes: 30 additions & 0 deletions
30
...ck CE datapacks/skyblock_custom_world/data/skyblock/recipe/skyblock_prismarine_shard.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"group": "skyblock", | ||
"pattern": [ | ||
" # ", | ||
"SFP", | ||
" K " | ||
], | ||
"key": { | ||
"#": [ | ||
"minecraft:ink_sac" | ||
], | ||
"S": [ | ||
"minecraft:sea_pickle" | ||
], | ||
"F": [ | ||
"minecraft:flint" | ||
], | ||
"P": [ | ||
"minecraft:pufferfish" | ||
], | ||
"K": [ | ||
"minecraft:kelp" | ||
] | ||
}, | ||
"result": { | ||
"id": "minecraft:prismarine_shard", | ||
"count": 4 | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
...s/Skyblock CE datapacks/skyblock_custom_world/data/skyblock/recipe/skyblock_red_sand.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"group": "skyblock", | ||
"pattern": [ | ||
"#S" | ||
], | ||
"key": { | ||
"#": [ | ||
"minecraft:redstone" | ||
], | ||
"S": [ | ||
"minecraft:sand" | ||
] | ||
}, | ||
"result": { | ||
"id": "minecraft:red_sand", | ||
"count": 2 | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
...packs/Skyblock CE datapacks/skyblock_custom_world/data/skyblock/recipe/skyblock_sand.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"group": "skyblock", | ||
"pattern": [ | ||
"#R", | ||
"R#" | ||
], | ||
"key": { | ||
"#": [ | ||
"minecraft:coarse_dirt" | ||
], | ||
"R": [ | ||
"minecraft:rotten_flesh" | ||
] | ||
}, | ||
"result": { | ||
"id": "minecraft:sand", | ||
"count": 4 | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
...block CE datapacks/skyblock_custom_world/data/skyblock/recipe/skyblock_spore_blossom.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"group": "skyblock", | ||
"pattern": [ | ||
" M", | ||
" #" | ||
], | ||
"key": { | ||
"#": [ | ||
"minecraft:pink_petals" | ||
], | ||
"M": [ | ||
"minecraft:moss_block" | ||
] | ||
}, | ||
"result": { | ||
"id": "minecraft:spore_blossom", | ||
"count": 1 | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
...packs/Skyblock CE datapacks/skyblock_custom_world/data/skyblock/recipe/skyblock_tuff.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"group": "skyblock", | ||
"pattern": [ | ||
"##", | ||
"##" | ||
], | ||
"key": { | ||
"#": [ | ||
"minecraft:andesite" | ||
] | ||
}, | ||
"result": { | ||
"id": "minecraft:tuff", | ||
"count": 1 | ||
} | ||
} |
70 changes: 70 additions & 0 deletions
70
...kyblock CE datapacks/skyblock_mc121/data/minecraft/worldgen/configured_carver/canyon.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
{ | ||
"type": "minecraft:canyon", | ||
"config": { | ||
"debug_settings": { | ||
"air_state": { | ||
"Name": "minecraft:warped_button", | ||
"Properties": { | ||
"face": "wall", | ||
"facing": "north", | ||
"powered": "false" | ||
} | ||
}, | ||
"barrier_state": { | ||
"Name": "minecraft:glass" | ||
}, | ||
"lava_state": { | ||
"Name": "minecraft:orange_stained_glass" | ||
}, | ||
"water_state": { | ||
"Name": "minecraft:candle", | ||
"Properties": { | ||
"candles": "1", | ||
"lit": "false", | ||
"waterlogged": "false" | ||
} | ||
} | ||
}, | ||
"lava_level": { | ||
"above_bottom": 8 | ||
}, | ||
"probability": 0.01, | ||
"replaceable": "#minecraft:overworld_carver_replaceables", | ||
"shape": { | ||
"distance_factor": { | ||
"type": "minecraft:uniform", | ||
"max_exclusive": 1.0, | ||
"min_inclusive": 0.75 | ||
}, | ||
"horizontal_radius_factor": { | ||
"type": "minecraft:uniform", | ||
"max_exclusive": 1.0, | ||
"min_inclusive": 0.75 | ||
}, | ||
"thickness": { | ||
"type": "minecraft:trapezoid", | ||
"max": 6.0, | ||
"min": 0.0, | ||
"plateau": 2.0 | ||
}, | ||
"vertical_radius_center_factor": 0.0, | ||
"vertical_radius_default_factor": 1.0, | ||
"width_smoothness": 3 | ||
}, | ||
"vertical_rotation": { | ||
"type": "minecraft:uniform", | ||
"max_exclusive": 0.125, | ||
"min_inclusive": -0.125 | ||
}, | ||
"y": { | ||
"type": "minecraft:uniform", | ||
"max_inclusive": { | ||
"absolute": 67 | ||
}, | ||
"min_inclusive": { | ||
"absolute": 10 | ||
} | ||
}, | ||
"yScale": 3.0 | ||
} | ||
} |
63 changes: 63 additions & 0 deletions
63
.../Skyblock CE datapacks/skyblock_mc121/data/minecraft/worldgen/configured_carver/cave.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
{ | ||
"type": "minecraft:cave", | ||
"config": { | ||
"debug_settings": { | ||
"air_state": { | ||
"Name": "minecraft:crimson_button", | ||
"Properties": { | ||
"face": "wall", | ||
"facing": "north", | ||
"powered": "false" | ||
} | ||
}, | ||
"barrier_state": { | ||
"Name": "minecraft:glass" | ||
}, | ||
"lava_state": { | ||
"Name": "minecraft:orange_stained_glass" | ||
}, | ||
"water_state": { | ||
"Name": "minecraft:candle", | ||
"Properties": { | ||
"candles": "1", | ||
"lit": "false", | ||
"waterlogged": "false" | ||
} | ||
} | ||
}, | ||
"floor_level": { | ||
"type": "minecraft:uniform", | ||
"max_exclusive": -0.4, | ||
"min_inclusive": -1.0 | ||
}, | ||
"horizontal_radius_multiplier": { | ||
"type": "minecraft:uniform", | ||
"max_exclusive": 1.4, | ||
"min_inclusive": 0.7 | ||
}, | ||
"lava_level": { | ||
"above_bottom": 8 | ||
}, | ||
"probability": 0.15, | ||
"replaceable": "#minecraft:overworld_carver_replaceables", | ||
"vertical_radius_multiplier": { | ||
"type": "minecraft:uniform", | ||
"max_exclusive": 1.3, | ||
"min_inclusive": 0.8 | ||
}, | ||
"y": { | ||
"type": "minecraft:uniform", | ||
"max_inclusive": { | ||
"absolute": 180 | ||
}, | ||
"min_inclusive": { | ||
"above_bottom": 8 | ||
} | ||
}, | ||
"yScale": { | ||
"type": "minecraft:uniform", | ||
"max_exclusive": 0.9, | ||
"min_inclusive": 0.1 | ||
} | ||
} | ||
} |
Oops, something went wrong.