diff options
author | Daniel Weipert <git@mail.dweipert.de> | 2024-07-18 11:13:59 +0200 |
---|---|---|
committer | Daniel Weipert <git@mail.dweipert.de> | 2024-07-18 11:13:59 +0200 |
commit | 9ce7496a99df220d7594f853aad667a3e9bff79f (patch) | |
tree | 09b4097a0cb2666613ac087a723ea1c0cd7f4aca /data/vanilla_skyblock | |
parent | f4ead94a90f775a99132ead16aa1ccf1bfde4e80 (diff) |
fix and add structures and missing criteria for advancements
Diffstat (limited to 'data/vanilla_skyblock')
-rw-r--r-- | data/vanilla_skyblock/function/initialize.mcfunction | 5 | ||||
-rw-r--r-- | data/vanilla_skyblock/structure/ocean_monument.nbt | bin | 0 -> 276127 bytes | |||
-rw-r--r-- | data/vanilla_skyblock/structure/trial_chamber.nbt | bin | 9101 -> 9094 bytes | |||
-rw-r--r-- | data/vanilla_skyblock/structure/village_desert.nbt | bin | 0 -> 844 bytes | |||
-rw-r--r-- | data/vanilla_skyblock/worldgen/template_pool/ocean_monument.json | 15 |
5 files changed, 17 insertions, 3 deletions
diff --git a/data/vanilla_skyblock/function/initialize.mcfunction b/data/vanilla_skyblock/function/initialize.mcfunction index 9aa7c02..b30ae0c 100644 --- a/data/vanilla_skyblock/function/initialize.mcfunction +++ b/data/vanilla_skyblock/function/initialize.mcfunction @@ -19,9 +19,8 @@ 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 setblock -1 61 4 chest[facing=north] -execute in overworld run item replace block -1 61 4 container.0 with sweet_berries 1 +execute in overworld run item replace block 4 64 0 container.25 with sweet_berries 1 +execute in overworld run item replace block 4 64 0 container.26 with glow_berries 1 diff --git a/data/vanilla_skyblock/structure/ocean_monument.nbt b/data/vanilla_skyblock/structure/ocean_monument.nbt Binary files differnew file mode 100644 index 0000000..f785daf --- /dev/null +++ b/data/vanilla_skyblock/structure/ocean_monument.nbt diff --git a/data/vanilla_skyblock/structure/trial_chamber.nbt b/data/vanilla_skyblock/structure/trial_chamber.nbt Binary files differindex 63d0f51..7621e2f 100644 --- a/data/vanilla_skyblock/structure/trial_chamber.nbt +++ b/data/vanilla_skyblock/structure/trial_chamber.nbt diff --git a/data/vanilla_skyblock/structure/village_desert.nbt b/data/vanilla_skyblock/structure/village_desert.nbt Binary files differnew file mode 100644 index 0000000..c89600c --- /dev/null +++ b/data/vanilla_skyblock/structure/village_desert.nbt diff --git a/data/vanilla_skyblock/worldgen/template_pool/ocean_monument.json b/data/vanilla_skyblock/worldgen/template_pool/ocean_monument.json new file mode 100644 index 0000000..803a6b9 --- /dev/null +++ b/data/vanilla_skyblock/worldgen/template_pool/ocean_monument.json @@ -0,0 +1,15 @@ +{ + "name": "vanilla_skyblock:ocean_monument", + "fallback": "minecraft:empty", + "elements": [ + { + "weight": 1, + "element": { + "element_type": "minecraft:single_pool_element", + "location": "vanilla_skyblock:ocean_monument", + "projection": "rigid", + "processors": "minecraft:empty" + } + } + ] +} |