diff options
author | Daniel Weipert <git@mail.dweipert.de> | 2024-06-23 17:04:11 +0200 |
---|---|---|
committer | Daniel Weipert <git@mail.dweipert.de> | 2024-06-23 17:04:11 +0200 |
commit | fcbea16f2ae86843eb214f64e02a96862e8e3564 (patch) | |
tree | cf169230f9ad723e610cfb511701ae128c754ed2 /data/vanilla_skyblock | |
parent | 9104556192e966c52b28c2e95e3e9692ed8e7932 (diff) |
original => vanilla && overwrite some more hard-coded structures :]
Diffstat (limited to 'data/vanilla_skyblock')
26 files changed, 222 insertions, 0 deletions
diff --git a/data/vanilla_skyblock/function/debug.mcfunction b/data/vanilla_skyblock/function/debug.mcfunction new file mode 100644 index 0000000..bbf2fe7 --- /dev/null +++ b/data/vanilla_skyblock/function/debug.mcfunction @@ -0,0 +1,27 @@ +gamemode creative + + + +# create nether portal + +fill -1 63 -2 2 63 -2 obsidian +fill -1 63 -2 -1 68 -2 obsidian +fill 2 63 -2 2 68 -2 obsidian +fill -1 68 -2 2 68 -2 obsidian + +fill 0 64 -2 1 67 -2 nether_portal + + + +# create end portal + +fill 5 63 1 5 63 -1 end_portal_frame +fill 6 63 2 8 63 2 end_portal_frame +fill 6 63 -2 8 63 -2 end_portal_frame +fill 9 63 1 9 63 -1 end_portal_frame + +fill 6 63 1 8 63 -1 end_portal + +execute in the_end run forceload add 103 0 +execute in the_end run forceload remove 103 0 +execute in the_end run setblock 103 48 0 end_gateway diff --git a/data/vanilla_skyblock/function/initialize.mcfunction b/data/vanilla_skyblock/function/initialize.mcfunction new file mode 100644 index 0000000..5a0f179 --- /dev/null +++ b/data/vanilla_skyblock/function/initialize.mcfunction @@ -0,0 +1,63 @@ +setworldspawn 0 64 0 +gamerule spawnRadius 0 + + + +# starting island + +execute in overworld run forceload add -1 -1 1 1 +execute in overworld run forceload remove -1 -1 1 1 + +execute in overworld run fill 4 63 -1 -1 63 1 grass_block +execute in overworld run fill 4 62 -1 -1 61 1 dirt +execute in overworld run fill 1 63 2 -1 63 4 grass_block +execute in overworld run fill 1 62 2 -1 61 4 dirt +execute in overworld run setblock 0 61 0 bedrock + +execute in overworld run place feature oak -1 64 4 + +execute in overworld run setblock 4 64 0 chest[facing=west] +execute in overworld run item replace block 4 64 0 container.0 with ice 1 +execute in overworld run item replace block 4 64 0 container.1 with lava_bucket 1 +#execute in overworld run item replace block 4 64 0 container.26 with obsidian 10 + +execute in overworld run setblock 0 60 0 chest[facing=north] +execute in the_nether run item replace block 0 60 0 container.0 with sweet_berries 1 +#execute in overworld run item replace block 0 60 0 container.1 with sniffer_egg 2 + + + +# nether + +execute in the_nether run forceload add -1 -1 1 1 +execute in the_nether run forceload remove -1 -1 1 1 + +execute in the_nether run fill 2 63 0 2 63 1 obsidian +execute in the_nether run fill 2 64 2 2 66 2 obsidian +execute in the_nether run fill 2 67 0 2 67 1 obsidian +execute in the_nether run fill 2 64 -1 2 66 -1 obsidian +execute in the_nether run fill 2 64 0 2 66 1 nether_portal[axis=z] + +execute in the_nether run fill 1 63 -1 1 63 2 glowstone +execute in the_nether run fill 3 63 -1 3 63 2 glowstone + +execute in the_nether run setblock 1 64 -1 chest[facing=west] +execute in the_nether run item replace block 1 64 -1 container.0 with nether_wart 1 + + + +# end + +execute in the_end run forceload add -1 -1 112 0 +execute in the_end run forceload remove -1 -1 112 0 + +execute in the_end run setblock 0 61 0 bedrock + +execute in the_end run setblock 112 48 0 obsidian +execute in the_end run setblock 112 49 0 chest[facing=west] +execute in the_end run item replace block 112 49 0 container.0 with chorus_flower 1 + + + +# set flag +scoreboard players set $initialized vanilla_skyblock_data 1 diff --git a/data/vanilla_skyblock/function/load.mcfunction b/data/vanilla_skyblock/function/load.mcfunction new file mode 100644 index 0000000..512c50a --- /dev/null +++ b/data/vanilla_skyblock/function/load.mcfunction @@ -0,0 +1,3 @@ +scoreboard objectives add vanilla_skyblock_data dummy + +execute unless score $initialized vanilla_skyblock_data matches 1 run function vanilla_skyblock:initialize diff --git a/data/vanilla_skyblock/structure/archaeology/desert_pyramid.nbt b/data/vanilla_skyblock/structure/archaeology/desert_pyramid.nbt Binary files differnew file mode 100644 index 0000000..1e42216 --- /dev/null +++ b/data/vanilla_skyblock/structure/archaeology/desert_pyramid.nbt diff --git a/data/vanilla_skyblock/structure/archaeology/desert_well.nbt b/data/vanilla_skyblock/structure/archaeology/desert_well.nbt Binary files differnew file mode 100644 index 0000000..ec5aa82 --- /dev/null +++ b/data/vanilla_skyblock/structure/archaeology/desert_well.nbt diff --git a/data/vanilla_skyblock/structure/archaeology/ocean_ruin_cold.nbt b/data/vanilla_skyblock/structure/archaeology/ocean_ruin_cold.nbt Binary files differnew file mode 100644 index 0000000..09aedf6 --- /dev/null +++ b/data/vanilla_skyblock/structure/archaeology/ocean_ruin_cold.nbt diff --git a/data/vanilla_skyblock/structure/archaeology/ocean_ruin_warm.nbt b/data/vanilla_skyblock/structure/archaeology/ocean_ruin_warm.nbt Binary files differnew file mode 100644 index 0000000..668f7fa --- /dev/null +++ b/data/vanilla_skyblock/structure/archaeology/ocean_ruin_warm.nbt diff --git a/data/vanilla_skyblock/structure/archaeology/trail_ruins_common.nbt b/data/vanilla_skyblock/structure/archaeology/trail_ruins_common.nbt Binary files differnew file mode 100644 index 0000000..7537513 --- /dev/null +++ b/data/vanilla_skyblock/structure/archaeology/trail_ruins_common.nbt diff --git a/data/vanilla_skyblock/structure/archaeology/trail_ruins_rare.nbt b/data/vanilla_skyblock/structure/archaeology/trail_ruins_rare.nbt Binary files differnew file mode 100644 index 0000000..1ebd680 --- /dev/null +++ b/data/vanilla_skyblock/structure/archaeology/trail_ruins_rare.nbt diff --git a/data/vanilla_skyblock/structure/bastion/bastion_bridge.nbt b/data/vanilla_skyblock/structure/bastion/bastion_bridge.nbt Binary files differnew file mode 100644 index 0000000..10a8a03 --- /dev/null +++ b/data/vanilla_skyblock/structure/bastion/bastion_bridge.nbt diff --git a/data/vanilla_skyblock/structure/bastion/bastion_hoglin_stable.nbt b/data/vanilla_skyblock/structure/bastion/bastion_hoglin_stable.nbt Binary files differnew file mode 100644 index 0000000..1feb6fd --- /dev/null +++ b/data/vanilla_skyblock/structure/bastion/bastion_hoglin_stable.nbt diff --git a/data/vanilla_skyblock/structure/bastion/bastion_other.nbt b/data/vanilla_skyblock/structure/bastion/bastion_other.nbt Binary files differnew file mode 100644 index 0000000..80b57df --- /dev/null +++ b/data/vanilla_skyblock/structure/bastion/bastion_other.nbt diff --git a/data/vanilla_skyblock/structure/bastion/bastion_treasure.nbt b/data/vanilla_skyblock/structure/bastion/bastion_treasure.nbt Binary files differnew file mode 100644 index 0000000..e8b7c89 --- /dev/null +++ b/data/vanilla_skyblock/structure/bastion/bastion_treasure.nbt diff --git a/data/vanilla_skyblock/structure/empty_16.nbt b/data/vanilla_skyblock/structure/empty_16.nbt Binary files differnew file mode 100644 index 0000000..3eddcb6 --- /dev/null +++ b/data/vanilla_skyblock/structure/empty_16.nbt diff --git a/data/vanilla_skyblock/structure/empty_full.nbt b/data/vanilla_skyblock/structure/empty_full.nbt Binary files differnew file mode 100644 index 0000000..59af38e --- /dev/null +++ b/data/vanilla_skyblock/structure/empty_full.nbt diff --git a/data/vanilla_skyblock/structure/end/end_city.nbt b/data/vanilla_skyblock/structure/end/end_city.nbt Binary files differnew file mode 100644 index 0000000..2e05534 --- /dev/null +++ b/data/vanilla_skyblock/structure/end/end_city.nbt diff --git a/data/vanilla_skyblock/structure/end/end_portal.nbt b/data/vanilla_skyblock/structure/end/end_portal.nbt Binary files differnew file mode 100644 index 0000000..384e613 --- /dev/null +++ b/data/vanilla_skyblock/structure/end/end_portal.nbt diff --git a/data/vanilla_skyblock/structure/trial_chamber.nbt b/data/vanilla_skyblock/structure/trial_chamber.nbt Binary files differnew file mode 100644 index 0000000..63d0f51 --- /dev/null +++ b/data/vanilla_skyblock/structure/trial_chamber.nbt diff --git a/data/vanilla_skyblock/worldgen/template_pool/desert_pyramid.json b/data/vanilla_skyblock/worldgen/template_pool/desert_pyramid.json new file mode 100644 index 0000000..b2b87d1 --- /dev/null +++ b/data/vanilla_skyblock/worldgen/template_pool/desert_pyramid.json @@ -0,0 +1,24 @@ +{ + "name": "vanilla_skyblock:desert_pyramid", + "fallback": "minecraft:empty", + "elements": [ + { + "weight": 1, + "element": { + "element_type": "minecraft:single_pool_element", + "location": "vanilla_skyblock:archaeology/desert_pyramid", + "projection": "rigid", + "processors": "minecraft:empty" + } + }, + { + "weight": 1, + "element": { + "element_type": "minecraft:single_pool_element", + "location": "vanilla_skyblock:archaeology/desert_well", + "projection": "rigid", + "processors": "minecraft:empty" + } + } + ] +} diff --git a/data/vanilla_skyblock/worldgen/template_pool/empty_16.json b/data/vanilla_skyblock/worldgen/template_pool/empty_16.json new file mode 100644 index 0000000..87f1e50 --- /dev/null +++ b/data/vanilla_skyblock/worldgen/template_pool/empty_16.json @@ -0,0 +1,15 @@ +{ + "name": "vanilla_skyblock:empty_16", + "fallback": "minecraft:empty", + "elements": [ + { + "weight": 1, + "element": { + "element_type": "minecraft:single_pool_element", + "location": "vanilla_skyblock:empty_16", + "projection": "rigid", + "processors": "minecraft:empty" + } + } + ] +} diff --git a/data/vanilla_skyblock/worldgen/template_pool/empty_full.json b/data/vanilla_skyblock/worldgen/template_pool/empty_full.json new file mode 100644 index 0000000..7f737c8 --- /dev/null +++ b/data/vanilla_skyblock/worldgen/template_pool/empty_full.json @@ -0,0 +1,15 @@ +{ + "name": "vanilla_skyblock:empty_full", + "fallback": "minecraft:empty", + "elements": [ + { + "weight": 1, + "element": { + "element_type": "minecraft:single_pool_element", + "location": "vanilla_skyblock:empty_full", + "projection": "rigid", + "processors": "minecraft:empty" + } + } + ] +} diff --git a/data/vanilla_skyblock/worldgen/template_pool/end_city.json b/data/vanilla_skyblock/worldgen/template_pool/end_city.json new file mode 100644 index 0000000..fb693af --- /dev/null +++ b/data/vanilla_skyblock/worldgen/template_pool/end_city.json @@ -0,0 +1,15 @@ +{ + "name": "vanilla_skyblock:end_city", + "fallback": "minecraft:empty", + "elements": [ + { + "weight": 1, + "element": { + "element_type": "minecraft:single_pool_element", + "location": "vanilla_skyblock:end/end_city", + "projection": "rigid", + "processors": "minecraft:empty" + } + } + ] +} diff --git a/data/vanilla_skyblock/worldgen/template_pool/fortress.json b/data/vanilla_skyblock/worldgen/template_pool/fortress.json new file mode 100644 index 0000000..78a1273 --- /dev/null +++ b/data/vanilla_skyblock/worldgen/template_pool/fortress.json @@ -0,0 +1,15 @@ +{ + "name": "vanilla_skyblock:fortress", + "fallback": "minecraft:empty", + "elements": [ + { + "weight": 1, + "element": { + "element_type": "minecraft:single_pool_element", + "location": "vanilla_skyblock:empty_full", + "projection": "rigid", + "processors": "minecraft:empty" + } + } + ] +} diff --git a/data/vanilla_skyblock/worldgen/template_pool/ocean_ruin_cold.json b/data/vanilla_skyblock/worldgen/template_pool/ocean_ruin_cold.json new file mode 100644 index 0000000..3e329be --- /dev/null +++ b/data/vanilla_skyblock/worldgen/template_pool/ocean_ruin_cold.json @@ -0,0 +1,15 @@ +{ + "name": "vanilla_skyblock:ocean_ruin_cold", + "fallback": "minecraft:empty", + "elements": [ + { + "weight": 1, + "element": { + "element_type": "minecraft:single_pool_element", + "location": "vanilla_skyblock:archaeology/ocean_ruin_cold", + "projection": "rigid", + "processors": "minecraft:empty" + } + } + ] +} diff --git a/data/vanilla_skyblock/worldgen/template_pool/ocean_ruin_warm.json b/data/vanilla_skyblock/worldgen/template_pool/ocean_ruin_warm.json new file mode 100644 index 0000000..3092131 --- /dev/null +++ b/data/vanilla_skyblock/worldgen/template_pool/ocean_ruin_warm.json @@ -0,0 +1,15 @@ +{ + "name": "vanilla_skyblock:ocean_ruin_warm", + "fallback": "minecraft:empty", + "elements": [ + { + "weight": 1, + "element": { + "element_type": "minecraft:single_pool_element", + "location": "vanilla_skyblock:archaeology/ocean_ruin_warm", + "projection": "rigid", + "processors": "minecraft:empty" + } + } + ] +} diff --git a/data/vanilla_skyblock/worldgen/template_pool/stronghold.json b/data/vanilla_skyblock/worldgen/template_pool/stronghold.json new file mode 100644 index 0000000..1120c75 --- /dev/null +++ b/data/vanilla_skyblock/worldgen/template_pool/stronghold.json @@ -0,0 +1,15 @@ +{ + "name": "vanilla_skyblock:stronghold", + "fallback": "minecraft:empty", + "elements": [ + { + "weight": 1, + "element": { + "element_type": "minecraft:single_pool_element", + "location": "vanilla_skyblock:end/end_portal", + "projection": "rigid", + "processors": "minecraft:empty" + } + } + ] +} |