├── README.md ├── datapacks ├── enchantments │ ├── data │ │ ├── example │ │ │ ├── enchantment │ │ │ │ ├── annoyance.json │ │ │ │ ├── boom_boom.json │ │ │ │ ├── claw.json │ │ │ │ ├── cowbow.json │ │ │ │ ├── diminishing.json │ │ │ │ ├── fire_walker.json │ │ │ │ ├── fishy.json │ │ │ │ ├── fragility_curse.json │ │ │ │ ├── galaxy_brain.json │ │ │ │ ├── multi_multi_shot.json │ │ │ │ ├── pollen_allergy_curse.json │ │ │ │ ├── roulette.json │ │ │ │ ├── sparkles.json │ │ │ │ └── thor.json │ │ │ └── function │ │ │ │ └── annoying.mcfunction │ │ └── minecraft │ │ │ └── tags │ │ │ └── enchantment │ │ │ └── curse.json │ └── pack.mcmeta └── v16demo │ ├── data │ └── v16 │ │ └── functions │ │ ├── concat.mcfunction │ │ ├── eval.mcfunction │ │ ├── fails.mcfunction │ │ ├── fails2.mcfunction │ │ ├── get_player_health.mcfunction │ │ ├── line_continuation.mcfunction │ │ ├── set_time.mcfunction │ │ └── succeeds.mcfunction │ └── pack.mcmeta └── so_lime.json /README.md: -------------------------------------------------------------------------------- 1 | # Random example files 2 | 3 | This repo contains random example files in random state of up-to-dateness. 4 | -------------------------------------------------------------------------------- /datapacks/enchantments/data/example/enchantment/annoyance.json: -------------------------------------------------------------------------------- 1 | { 2 | "anvil_cost": 8, 3 | "description": { 4 | "text": "Curse of Annoyance" 5 | }, 6 | "effects": { 7 | "minecraft:hit_block": [ 8 | { 9 | "effect": { 10 | "type": "minecraft:run_function", 11 | "function": "example:annoying" 12 | }, 13 | "requirements": { 14 | "chance": 0.2, 15 | "condition": "minecraft:random_chance" 16 | } 17 | } 18 | ] 19 | }, 20 | "max_cost": { 21 | "base": 50, 22 | "per_level_above_first": 0 23 | }, 24 | "max_level": 1, 25 | "min_cost": { 26 | "base": 25, 27 | "per_level_above_first": 0 28 | }, 29 | "slots": [ 30 | "mainhand" 31 | ], 32 | "supported_items": "#minecraft:enchantable/vanishing", 33 | "weight": 1 34 | } -------------------------------------------------------------------------------- /datapacks/enchantments/data/example/enchantment/boom_boom.json: -------------------------------------------------------------------------------- 1 | { 2 | "anvil_cost": 4, 3 | "description": { 4 | "text": "Boom Boom" 5 | }, 6 | "effects": { 7 | "minecraft:hit_block": [ 8 | { 9 | "effect": { 10 | "type": "minecraft:explode", 11 | "block_interaction": "mob", 12 | "large_particle": { 13 | "type": "minecraft:angry_villager" 14 | }, 15 | "radius": 2.0, 16 | "small_particle": { 17 | "type": "minecraft:ash" 18 | }, 19 | "sound": "minecraft:entity.generic.explode" 20 | }, 21 | "requirements": { 22 | "condition": "minecraft:entity_properties", 23 | "entity": "this", 24 | "predicate": { 25 | "type": "#minecraft:arrows" 26 | } 27 | } 28 | } 29 | ] 30 | }, 31 | "max_cost": { 32 | "base": 65, 33 | "per_level_above_first": 9 34 | }, 35 | "max_level": 3, 36 | "min_cost": { 37 | "base": 15, 38 | "per_level_above_first": 9 39 | }, 40 | "slots": [ 41 | "mainhand", 42 | "offhand" 43 | ], 44 | "supported_items": "#minecraft:enchantable/bow", 45 | "weight": 2 46 | } -------------------------------------------------------------------------------- /datapacks/enchantments/data/example/enchantment/claw.json: -------------------------------------------------------------------------------- 1 | { 2 | "anvil_cost": 4, 3 | "description": { 4 | "text": "Claw" 5 | }, 6 | "effects": { 7 | "minecraft:attributes": [ 8 | { 9 | "amount": { 10 | "type": "minecraft:linear", 11 | "base": 2, 12 | "per_level_above_first": 2 13 | }, 14 | "attribute": "minecraft:player.block_interaction_range", 15 | "id": "example:enchantment.claw", 16 | "operation": "add_value" 17 | } 18 | ] 19 | }, 20 | "max_cost": { 21 | "base": 40, 22 | "per_level_above_first": 10 23 | }, 24 | "max_level": 5, 25 | "min_cost": { 26 | "base": 10, 27 | "per_level_above_first": 10 28 | }, 29 | "slots": [ 30 | "mainhand" 31 | ], 32 | "supported_items": "#minecraft:enchantable/vanishing", 33 | "weight": 2 34 | } -------------------------------------------------------------------------------- /datapacks/enchantments/data/example/enchantment/cowbow.json: -------------------------------------------------------------------------------- 1 | { 2 | "anvil_cost": 2, 3 | "description": { 4 | "text": "Cowbow" 5 | }, 6 | "effects": { 7 | "minecraft:crossbow_charging_sounds": [ 8 | { 9 | "end": "minecraft:entity.cow.hurt", 10 | "start": "minecraft:entity.cow.ambient" 11 | } 12 | ] 13 | }, 14 | "max_cost": { 15 | "base": 50, 16 | "per_level_above_first": 0 17 | }, 18 | "max_level": 1, 19 | "min_cost": { 20 | "base": 12, 21 | "per_level_above_first": 20 22 | }, 23 | "slots": [ 24 | "mainhand" 25 | ], 26 | "supported_items": "#minecraft:enchantable/crossbow", 27 | "weight": 5 28 | } -------------------------------------------------------------------------------- /datapacks/enchantments/data/example/enchantment/diminishing.json: -------------------------------------------------------------------------------- 1 | { 2 | "anvil_cost": 4, 3 | "description": { 4 | "text": "Diminishing" 5 | }, 6 | "effects": { 7 | "minecraft:attributes": [ 8 | { 9 | "amount": { 10 | "type": "minecraft:linear", 11 | "base": -0.2, 12 | "per_level_above_first": -0.2 13 | }, 14 | "attribute": "minecraft:generic.scale", 15 | "id": "example:enchantment.diminishing", 16 | "operation": "add_multiplied_base" 17 | } 18 | ] 19 | }, 20 | "max_cost": { 21 | "base": 40, 22 | "per_level_above_first": 10 23 | }, 24 | "max_level": 3, 25 | "min_cost": { 26 | "base": 10, 27 | "per_level_above_first": 10 28 | }, 29 | "slots": [ 30 | "head" 31 | ], 32 | "supported_items": "#minecraft:enchantable/head_armor", 33 | "weight": 2 34 | } -------------------------------------------------------------------------------- /datapacks/enchantments/data/example/enchantment/fire_walker.json: -------------------------------------------------------------------------------- 1 | { 2 | "anvil_cost": 4, 3 | "description": { 4 | "text": "Fire Walker" 5 | }, 6 | "effects": { 7 | "minecraft:damage_immunity": [ 8 | { 9 | "effect": {}, 10 | "requirements": { 11 | "condition": "minecraft:damage_source_properties", 12 | "predicate": { 13 | "tags": [ 14 | { 15 | "expected": true, 16 | "id": "minecraft:is_freezing" 17 | }, 18 | { 19 | "expected": false, 20 | "id": "minecraft:bypasses_invulnerability" 21 | } 22 | ] 23 | } 24 | } 25 | } 26 | ], 27 | "minecraft:location_changed": [ 28 | { 29 | "effect": { 30 | "type": "minecraft:replace_disk", 31 | "block_state": { 32 | "type": "minecraft:weighted_state_provider", 33 | "entries": [ 34 | { 35 | "data": { 36 | "Name": "minecraft:obsidian" 37 | }, 38 | "weight": 9 39 | }, 40 | { 41 | "data": { 42 | "Name": "minecraft:crying_obsidian" 43 | }, 44 | "weight": 1 45 | } 46 | ] }, 47 | "height": 1.0, 48 | "offset": [ 49 | 0, 50 | -1, 51 | 0 52 | ], 53 | "predicate": { 54 | "type": "minecraft:all_of", 55 | "predicates": [ 56 | { 57 | "type": "minecraft:matching_blocks", 58 | "blocks": "minecraft:air", 59 | "offset": [ 60 | 0, 61 | 1, 62 | 0 63 | ] 64 | }, 65 | { 66 | "type": "minecraft:matching_fluids", 67 | "fluids": "minecraft:lava" 68 | }, 69 | { 70 | "type": "minecraft:unobstructed" 71 | } 72 | ] 73 | }, 74 | "radius": { 75 | "type": "minecraft:clamped", 76 | "max": 16.0, 77 | "min": 0.0, 78 | "value": { 79 | "type": "minecraft:linear", 80 | "base": 3.0, 81 | "per_level_above_first": 1.0 82 | } 83 | } 84 | }, 85 | "requirements": { 86 | "condition": "minecraft:entity_properties", 87 | "entity": "this", 88 | "predicate": { 89 | "flags": { 90 | "is_on_ground": true 91 | } 92 | } 93 | } 94 | } 95 | ] 96 | }, 97 | "exclusive_set": "#minecraft:exclusive_set/boots", 98 | "max_cost": { 99 | "base": 25, 100 | "per_level_above_first": 10 101 | }, 102 | "max_level": 2, 103 | "min_cost": { 104 | "base": 10, 105 | "per_level_above_first": 10 106 | }, 107 | "slots": [ 108 | "feet" 109 | ], 110 | "supported_items": "#minecraft:enchantable/foot_armor", 111 | "weight": 2 112 | } -------------------------------------------------------------------------------- /datapacks/enchantments/data/example/enchantment/fishy.json: -------------------------------------------------------------------------------- 1 | { 2 | "anvil_cost": 8, 3 | "description": { 4 | "text": "Fishy" 5 | }, 6 | "effects": { 7 | "minecraft:tick": [ 8 | { 9 | "effect": { 10 | "type": "minecraft:summon_entity", 11 | "entity": "silverfish" 12 | }, 13 | "requirements": { 14 | "chance": 0.001, 15 | "condition": "minecraft:random_chance" 16 | } 17 | } 18 | ] 19 | }, 20 | "max_cost": { 21 | "base": 50, 22 | "per_level_above_first": 0 23 | }, 24 | "max_level": 1, 25 | "min_cost": { 26 | "base": 25, 27 | "per_level_above_first": 0 28 | }, 29 | "slots": [ 30 | "mainhand" 31 | ], 32 | "supported_items": "#minecraft:enchantable/fishing", 33 | "weight": 1 34 | } -------------------------------------------------------------------------------- /datapacks/enchantments/data/example/enchantment/fragility_curse.json: -------------------------------------------------------------------------------- 1 | { 2 | "anvil_cost": 8, 3 | "description": { 4 | "text": "Curse of Fragility" 5 | }, 6 | "effects": { 7 | "minecraft:hit_block": [ 8 | { 9 | "effect": { 10 | "type": "minecraft:damage_item", 11 | "amount": 64 12 | }, 13 | "requirements": { 14 | "chance": 0.03, 15 | "condition": "minecraft:random_chance" 16 | } 17 | } 18 | ], 19 | "minecraft:post_attack": [ 20 | { 21 | "enchanted": "attacker", 22 | "affected": "attacker", 23 | "effect": { 24 | "type": "minecraft:damage_item", 25 | "amount": 256 26 | }, 27 | "requirements": { 28 | "chance": 0.03, 29 | "condition": "minecraft:random_chance" 30 | } 31 | }, 32 | { 33 | "enchanted": "victim", 34 | "affected": "victim", 35 | "effect": { 36 | "type": "minecraft:damage_item", 37 | "amount": 64 38 | }, 39 | "requirements": { 40 | "chance": 0.03, 41 | "condition": "minecraft:random_chance" 42 | } 43 | } 44 | ] 45 | }, 46 | "max_cost": { 47 | "base": 50, 48 | "per_level_above_first": 0 49 | }, 50 | "max_level": 1, 51 | "min_cost": { 52 | "base": 25, 53 | "per_level_above_first": 0 54 | }, 55 | "slots": [ 56 | "any" 57 | ], 58 | "supported_items": "#minecraft:enchantable/vanishing", 59 | "weight": 1 60 | } -------------------------------------------------------------------------------- /datapacks/enchantments/data/example/enchantment/galaxy_brain.json: -------------------------------------------------------------------------------- 1 | { 2 | "anvil_cost": 4, 3 | "description": { 4 | "text": "Galaxy Brain" 5 | }, 6 | "effects": { 7 | "minecraft:mob_experience": [ 8 | { 9 | "effect": { 10 | "type": "minecraft:add", 11 | "value": 100.0 12 | } 13 | } 14 | ] 15 | }, 16 | "max_cost": { 17 | "base": 65, 18 | "per_level_above_first": 9 19 | }, 20 | "max_level": 3, 21 | "min_cost": { 22 | "base": 15, 23 | "per_level_above_first": 9 24 | }, 25 | "slots": [ 26 | "mainhand" 27 | ], 28 | "supported_items": "#minecraft:enchantable/sword", 29 | "weight": 2 30 | } -------------------------------------------------------------------------------- /datapacks/enchantments/data/example/enchantment/multi_multi_shot.json: -------------------------------------------------------------------------------- 1 | { 2 | "anvil_cost": 4, 3 | "description": { 4 | "text": "Multi-Multishot" 5 | }, 6 | "effects": { 7 | "minecraft:projectile_count": [ 8 | { 9 | "effect": { 10 | "type": "minecraft:add", 11 | "value": { 12 | "type": "minecraft:linear", 13 | "base": 20.0, 14 | "per_level_above_first": 20.0 15 | } 16 | } 17 | } 18 | ], 19 | "minecraft:projectile_spread": [ 20 | { 21 | "effect": { 22 | "type": "minecraft:add", 23 | "value": { 24 | "type": "minecraft:linear", 25 | "base": 20.0, 26 | "per_level_above_first": 20.0 27 | } 28 | } 29 | } 30 | ] 31 | }, 32 | "exclusive_set": "#minecraft:exclusive_set/crossbow", 33 | "max_cost": { 34 | "base": 50, 35 | "per_level_above_first": 0 36 | }, 37 | "max_level": 3, 38 | "min_cost": { 39 | "base": 20, 40 | "per_level_above_first": 0 41 | }, 42 | "slots": [ 43 | "mainhand" 44 | ], 45 | "supported_items": "#minecraft:enchantable/bow", 46 | "weight": 2 47 | } -------------------------------------------------------------------------------- /datapacks/enchantments/data/example/enchantment/pollen_allergy_curse.json: -------------------------------------------------------------------------------- 1 | { 2 | "anvil_cost": 4, 3 | "description": { 4 | "text": "Curse of Pollen Allergy" 5 | }, 6 | "effects": { 7 | "minecraft:tick": [ 8 | { 9 | "effect": { 10 | "type": "damage_entity", 11 | "damage_type": "thorns", 12 | "min_damage": 1, 13 | "max_damage": 1 14 | }, 15 | "requirements": { 16 | "condition": "minecraft:all_of", 17 | "terms": [ 18 | { 19 | "chance": 0.005, 20 | "condition": "minecraft:random_chance" 21 | }, 22 | { 23 | "condition": "minecraft:location_check", 24 | "predicate": { 25 | "biomes": "#is_forest" 26 | } 27 | } 28 | ] 29 | } 30 | } 31 | ] 32 | }, 33 | "max_cost": { 34 | "base": 40, 35 | "per_level_above_first": 10 36 | }, 37 | "max_level": 3, 38 | "min_cost": { 39 | "base": 10, 40 | "per_level_above_first": 10 41 | }, 42 | "slots": [ 43 | "armor" 44 | ], 45 | "supported_items": "#minecraft:enchantable/armor", 46 | "weight": 2 47 | } -------------------------------------------------------------------------------- /datapacks/enchantments/data/example/enchantment/roulette.json: -------------------------------------------------------------------------------- 1 | { 2 | "anvil_cost": 2, 3 | "description": { 4 | "text": "Roulette" 5 | }, 6 | "effects": { 7 | "minecraft:item_damage": [ 8 | { 9 | "effect": { 10 | "type": "minecraft:set", 11 | "value": 0 12 | } 13 | }, 14 | { 15 | "effect": { 16 | "type": "minecraft:add", 17 | "value": 2000 18 | }, 19 | "requirements": { 20 | "condition": "random_chance", 21 | "chance": 0.01 22 | } 23 | } 24 | ] 25 | }, 26 | "max_cost": { 27 | "base": 55, 28 | "per_level_above_first": 8 29 | }, 30 | "max_level": 1, 31 | "min_cost": { 32 | "base": 5, 33 | "per_level_above_first": 8 34 | }, 35 | "slots": [ 36 | "mainhand" 37 | ], 38 | "supported_items": "#minecraft:enchantable/durability", 39 | "weight": 5 40 | } -------------------------------------------------------------------------------- /datapacks/enchantments/data/example/enchantment/sparkles.json: -------------------------------------------------------------------------------- 1 | { 2 | "anvil_cost": 4, 3 | "description": { 4 | "text": "Sparkles!" 5 | }, 6 | "effects": { 7 | "minecraft:tick": [ 8 | { 9 | "effect": { 10 | "type": "minecraft:spawn_particles", 11 | "horizontal_position": { 12 | "type": "in_bounding_box" 13 | }, 14 | "horizontal_velocity": { 15 | "movement_scale": 0 16 | }, 17 | "particle": { 18 | "type": "minecraft:ominous_spawning" 19 | }, 20 | "speed": 1.0, 21 | "vertical_position": { 22 | "type": "in_bounding_box" 23 | }, 24 | "vertical_velocity": { 25 | "base": 0.1 26 | } 27 | } 28 | } 29 | ] 30 | }, 31 | "max_cost": { 32 | "base": 40, 33 | "per_level_above_first": 10 34 | }, 35 | "max_level": 1, 36 | "min_cost": { 37 | "base": 10, 38 | "per_level_above_first": 10 39 | }, 40 | "slots": [ 41 | "armor" 42 | ], 43 | "supported_items": "#minecraft:enchantable/armor", 44 | "weight": 2 45 | } -------------------------------------------------------------------------------- /datapacks/enchantments/data/example/enchantment/thor.json: -------------------------------------------------------------------------------- 1 | { 2 | "anvil_cost": 4, 3 | "description": { 4 | "text": "Thor" 5 | }, 6 | "effects": { 7 | "minecraft:damage_immunity": [ 8 | { 9 | "effect": {}, 10 | "requirements": { 11 | "condition": "minecraft:weather_check", 12 | "thundering": true 13 | } 14 | } 15 | ] 16 | }, 17 | "max_cost": { 18 | "base": 65, 19 | "per_level_above_first": 9 20 | }, 21 | "max_level": 1, 22 | "min_cost": { 23 | "base": 15, 24 | "per_level_above_first": 9 25 | }, 26 | "slots": [ 27 | "mainhand" 28 | ], 29 | "supported_items": "#minecraft:enchantable/mace", 30 | "weight": 2 31 | } -------------------------------------------------------------------------------- /datapacks/enchantments/data/example/function/annoying.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard objectives add Random dummy 2 | execute store result score @s Random run random value 1..11 3 | 4 | execute if score @s Random matches 1 run tellraw @s "Cat Facts: Thanks for signing up for Cat Facts! You now will receive fun daily facts about CATS! >o<" 5 | execute if score @s Random matches 2 run tellraw @s "Cat Facts: Cats use their tails for balance and have nearly 30 individual bones in them! " 6 | execute if score @s Random matches 3 run tellraw @s "Cat Facts: In ancient Egypt, killing a cat was a crime punishable by death. Thank you for choosing Cat Facts!" 7 | execute if score @s Random matches 4 run tellraw @s "Cat Facts: Did you know that the first cat show was held in 1871 at the Crystal Palace in London? Mee-wow!" 8 | execute if score @s Random matches 5 run tellraw @s "Cat Facts: Did you know there are about 100 distinct breeds of domestic cat? Plenty of furry love!" 9 | execute if score @s Random matches 6 run tellraw @s "Cat Facts: Cats bury their feces to cover their trails from predators. " 10 | execute if score @s Random matches 7 run tellraw @s "Cat Facts: A cat has two vocal chords, and can make over 100 sounds." 11 | execute if score @s Random matches 8 run tellraw @s "Cat Facts: To unsubscribe, please reply ‘catfactscancel’" 12 | execute if score @s Random matches 9 run tellraw @s "Cat Facts: A cat will spend nearly 30% of her life grooming herself. " 13 | execute if score @s Random matches 10 run tellraw @s "Cat Facts: Recent studies have shown that cats can see blue and green. There is disagreement as to whether they can see red." 14 | execute if score @s Random matches 11 run tellraw @s "Cat Facts: A domestic cat can sprint at about 31 miles per hour. " 15 | -------------------------------------------------------------------------------- /datapacks/enchantments/data/minecraft/tags/enchantment/curse.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "example:fragility_curse", 4 | "example:pollen_allergy_curse", 5 | "example:annoyance" 6 | ] 7 | } -------------------------------------------------------------------------------- /datapacks/enchantments/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "pack_format": 48, 4 | "description": "Enchantments Demo" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /datapacks/v16demo/data/v16/functions/concat.mcfunction: -------------------------------------------------------------------------------- 1 | # Concatenate $(string1) and $(string2), save that to $(path) in storage $(id) 2 | $data modify storage $(id) $(path) set value "$(string1)$(string2)" 3 | -------------------------------------------------------------------------------- /datapacks/v16demo/data/v16/functions/eval.mcfunction: -------------------------------------------------------------------------------- 1 | # Run the command in $(command) 2 | $$(command) 3 | -------------------------------------------------------------------------------- /datapacks/v16demo/data/v16/functions/fails.mcfunction: -------------------------------------------------------------------------------- 1 | # A function fails if it doesn't use return 2 | setblock ~ ~-1 ~ stone 3 | -------------------------------------------------------------------------------- /datapacks/v16demo/data/v16/functions/fails2.mcfunction: -------------------------------------------------------------------------------- 1 | # A function fails if it returns 0 2 | return 0 3 | -------------------------------------------------------------------------------- /datapacks/v16demo/data/v16/functions/get_player_health.mcfunction: -------------------------------------------------------------------------------- 1 | # If this is a player, return the health value 2 | execute if entity @s[type=player] run return run data get entity @s Health 3 | 4 | # Return 0 for non-players 5 | return 0 6 | -------------------------------------------------------------------------------- /datapacks/v16demo/data/v16/functions/line_continuation.mcfunction: -------------------------------------------------------------------------------- 1 | scoreboard players operation @a result \ 2 | += @e[type=marker,limit=1,tag=source] value 3 | -------------------------------------------------------------------------------- /datapacks/v16demo/data/v16/functions/set_time.mcfunction: -------------------------------------------------------------------------------- 1 | # Set the time to $(time) 2 | $time set $(time) 3 | -------------------------------------------------------------------------------- /datapacks/v16demo/data/v16/functions/succeeds.mcfunction: -------------------------------------------------------------------------------- 1 | # Return non-zero as a success value 2 | return 1 3 | -------------------------------------------------------------------------------- /datapacks/v16demo/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "pack_format": 16, 4 | "description": "Data Pack v16 Demo" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /so_lime.json: -------------------------------------------------------------------------------- 1 | { 2 | "generator": { 3 | "type": "minecraft:noise", 4 | "seed": -1464245863, 5 | "biome_source": { 6 | "type": "minecraft:vanilla_layered", 7 | "seed": -1464245863, 8 | "large_biomes": true 9 | }, 10 | "settings": { 11 | "default_block": { 12 | "Name": "minecraft:lime_wool", 13 | "Properties": {} 14 | }, 15 | "default_fluid": { 16 | "Name": "minecraft:water", 17 | "Properties": { 18 | "level": "8" 19 | } 20 | }, 21 | "bedrock_floor_position": -10, 22 | "bedrock_roof_position": -10, 23 | "sea_level": 32, 24 | "disable_mob_generation": false, 25 | "noise": { 26 | "height": 128, 27 | "sampling": { 28 | "xz_scale": 1, 29 | "y_scale": 3, 30 | "xz_factor": 80, 31 | "y_factor": 60 32 | }, 33 | "top_slide": { 34 | "target": 120, 35 | "size": 3, 36 | "offset": 0 37 | }, 38 | "bottom_slide": { 39 | "target": 320, 40 | "size": 4, 41 | "offset": -1 42 | }, 43 | "size_horizontal": 1, 44 | "size_vertical": 2, 45 | "density_factor": 0.0, 46 | "density_offset": 0.019921875, 47 | "simplex_surface_noise": false, 48 | "random_density_offset": false, 49 | "island_noise_override": false, 50 | "amplified": false 51 | }, 52 | "structures": { 53 | "stronghold": { 54 | "distance": 32, 55 | "spread": 3, 56 | "count": 128 57 | }, 58 | "structures": { 59 | "minecraft:village": { 60 | "spacing": 32, 61 | "separation": 8, 62 | "salt": 10387312 63 | } 64 | } 65 | } 66 | } 67 | }, 68 | "type": "minecraft:overworld" 69 | } 70 | --------------------------------------------------------------------------------