├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── LICENSE ├── README.md ├── SMITHED.md ├── data ├── chunk_scan │ ├── functions │ │ ├── chunk │ │ │ ├── generate.mcfunction │ │ │ ├── generate_2.mcfunction │ │ │ ├── generate_3.mcfunction │ │ │ ├── init.mcfunction │ │ │ └── spread.mcfunction │ │ ├── entities │ │ │ ├── summon_chunk_marker.mcfunction │ │ │ └── summon_gen_marker.mcfunction │ │ ├── load.mcfunction │ │ ├── main.mcfunction │ │ └── main_slow.mcfunction │ ├── predicates │ │ └── world_bottom.json │ └── tags │ │ ├── blocks │ │ └── all.json │ │ └── functions │ │ └── generate.json ├── du │ ├── advancements │ │ ├── base.json │ │ └── triggers │ │ │ ├── dealt_damage.json │ │ │ ├── furnace.json │ │ │ ├── place_blast_furnace.json │ │ │ ├── place_campfire.json │ │ │ ├── place_smoker.json │ │ │ └── place_soul_campfire.json │ ├── functions │ │ ├── base │ │ │ ├── base.mcfunction │ │ │ ├── init.mcfunction │ │ │ ├── init_chunk.mcfunction │ │ │ ├── items.mcfunction │ │ │ └── items_spawner.mcfunction │ │ ├── custom_campfire │ │ │ ├── main.mcfunction │ │ │ ├── process_0.mcfunction │ │ │ ├── process_1.mcfunction │ │ │ ├── process_2.mcfunction │ │ │ ├── process_3.mcfunction │ │ │ └── process_recipe.mcfunction │ │ ├── custom_crafter │ │ │ ├── check_output.mcfunction │ │ │ ├── check_recipes.mcfunction │ │ │ ├── check_stacksize.mcfunction │ │ │ ├── compact.mcfunction │ │ │ ├── main.mcfunction │ │ │ ├── main_ui.mcfunction │ │ │ ├── main_ui_clear.mcfunction │ │ │ ├── main_ui_move.mcfunction │ │ │ └── process_recipes.mcfunction │ │ ├── custom_furnace │ │ │ ├── check_out_stackable.mcfunction │ │ │ ├── check_out_stackable_16.mcfunction │ │ │ ├── end.mcfunction │ │ │ ├── fuel.mcfunction │ │ │ ├── fuel_2.mcfunction │ │ │ ├── main.mcfunction │ │ │ ├── make_lit.mcfunction │ │ │ ├── place.mcfunction │ │ │ ├── process_smelt.mcfunction │ │ │ └── start_smelt.mcfunction │ │ ├── entity │ │ │ ├── apply_damage │ │ │ │ ├── rot_0.mcfunction │ │ │ │ ├── rot_1.mcfunction │ │ │ │ ├── rot_2.mcfunction │ │ │ │ ├── rot_3.mcfunction │ │ │ │ ├── rot_4.mcfunction │ │ │ │ ├── rot_5.mcfunction │ │ │ │ ├── rot_6.mcfunction │ │ │ │ ├── rot_7.mcfunction │ │ │ │ ├── rot_8.mcfunction │ │ │ │ └── rot_9.mcfunction │ │ │ ├── damage_entity.mcfunction │ │ │ ├── damage_mob.mcfunction │ │ │ ├── damage_player.mcfunction │ │ │ └── reset_damage │ │ │ │ ├── remove_damage_0.mcfunction │ │ │ │ ├── remove_damage_1.mcfunction │ │ │ │ ├── remove_damage_2.mcfunction │ │ │ │ ├── remove_damage_3.mcfunction │ │ │ │ ├── remove_damage_4.mcfunction │ │ │ │ ├── remove_damage_5.mcfunction │ │ │ │ ├── remove_damage_6.mcfunction │ │ │ │ ├── remove_damage_7.mcfunction │ │ │ │ ├── remove_damage_8.mcfunction │ │ │ │ ├── remove_damage_9.mcfunction │ │ │ │ ├── reset_1.mcfunction │ │ │ │ └── reset_2.mcfunction │ │ ├── load.mcfunction │ │ ├── load_message.mcfunction │ │ ├── main.mcfunction │ │ ├── math │ │ │ ├── init.mcfunction │ │ │ ├── random.mcfunction │ │ │ ├── random_seeded.mcfunction │ │ │ ├── seed_from_position.mcfunction │ │ │ ├── xor_bitwise.mcfunction │ │ │ └── xor_shift.mcfunction │ │ ├── player │ │ │ ├── add_damage.mcfunction │ │ │ ├── clickdetect │ │ │ │ ├── click_detection_1.mcfunction │ │ │ │ ├── click_detection_3.mcfunction │ │ │ │ ├── click_detection_5.mcfunction │ │ │ │ ├── click_detection_end.mcfunction │ │ │ │ ├── clickdetect.mcfunction │ │ │ │ ├── summon_villagers.mcfunction │ │ │ │ └── tick.mcfunction │ │ │ ├── durability │ │ │ │ ├── change_durability.mcfunction │ │ │ │ ├── damage_boots.mcfunction │ │ │ │ ├── damage_chestplate.mcfunction │ │ │ │ ├── damage_helmet.mcfunction │ │ │ │ ├── damage_leggings.mcfunction │ │ │ │ ├── damage_mainhand.mcfunction │ │ │ │ ├── damage_offhand.mcfunction │ │ │ │ ├── get_max_durability.mcfunction │ │ │ │ ├── handle_durability.mcfunction │ │ │ │ ├── init_item.mcfunction │ │ │ │ ├── process_boots.mcfunction │ │ │ │ ├── process_chestplate.mcfunction │ │ │ │ ├── process_helmet.mcfunction │ │ │ │ ├── process_leggings.mcfunction │ │ │ │ ├── process_mainhand.mcfunction │ │ │ │ └── process_offhand.mcfunction │ │ │ ├── get_moving.mcfunction │ │ │ ├── head │ │ │ │ ├── drop_head.mcfunction │ │ │ │ ├── give_head.mcfunction │ │ │ │ └── store_head.mcfunction │ │ │ ├── inv │ │ │ │ ├── get_ender_chest.mcfunction │ │ │ │ ├── get_equipment.mcfunction │ │ │ │ ├── get_hotbar.mcfunction │ │ │ │ ├── get_inv.mcfunction │ │ │ │ ├── restore_ender_chest.mcfunction │ │ │ │ ├── restore_equipment.mcfunction │ │ │ │ ├── restore_hotbar.mcfunction │ │ │ │ └── restore_inv.mcfunction │ │ │ ├── player.mcfunction │ │ │ ├── triggers │ │ │ │ ├── dealt_damage.mcfunction │ │ │ │ ├── place_furnace.mcfunction │ │ │ │ └── place_head.mcfunction │ │ │ └── uuid │ │ │ │ └── get_uuid.mcfunction │ │ └── world │ │ │ ├── blocks │ │ │ ├── is_active.mcfunction │ │ │ └── is_powered.mcfunction │ │ │ ├── generation │ │ │ ├── generate_chunk.mcfunction │ │ │ ├── ore_gen │ │ │ │ ├── check_biomes.mcfunction │ │ │ │ ├── displace_x.mcfunction │ │ │ │ ├── displace_y.mcfunction │ │ │ │ ├── displace_y_2.mcfunction │ │ │ │ ├── displace_y_3.mcfunction │ │ │ │ ├── displace_z.mcfunction │ │ │ │ ├── generate_veins.mcfunction │ │ │ │ ├── generate_veins_loop.mcfunction │ │ │ │ ├── registry_check.mcfunction │ │ │ │ ├── registry_cycle.mcfunction │ │ │ │ ├── registry_generation.mcfunction │ │ │ │ ├── spawn_ore.mcfunction │ │ │ │ └── spawn_ore_2.mcfunction │ │ │ └── struct_gen │ │ │ │ ├── cave │ │ │ │ ├── check_biomes.mcfunction │ │ │ │ ├── check_structs.mcfunction │ │ │ │ ├── displace_y_cavern.mcfunction │ │ │ │ ├── displace_y_default.mcfunction │ │ │ │ ├── spawn_struct.mcfunction │ │ │ │ ├── start-cavern.mcfunction │ │ │ │ └── start-default.mcfunction │ │ │ │ ├── displace_x.mcfunction │ │ │ │ ├── displace_z.mcfunction │ │ │ │ ├── get_weighted_struct.mcfunction │ │ │ │ ├── registry_check.mcfunction │ │ │ │ ├── registry_cycle.mcfunction │ │ │ │ ├── scan_chunk.mcfunction │ │ │ │ ├── scan_chunk_2.mcfunction │ │ │ │ ├── scan_chunk_3.mcfunction │ │ │ │ ├── scan_chunk_cavern.mcfunction │ │ │ │ ├── scan_chunk_cavern_2.mcfunction │ │ │ │ ├── scan_chunk_cavern_3.mcfunction │ │ │ │ ├── scan_chunk_cavern_4.mcfunction │ │ │ │ ├── scan_chunk_cavern_5.mcfunction │ │ │ │ ├── sky │ │ │ │ ├── check_biomes.mcfunction │ │ │ │ ├── check_structs.mcfunction │ │ │ │ ├── displace_y.mcfunction │ │ │ │ ├── spawn_struct.mcfunction │ │ │ │ └── start.mcfunction │ │ │ │ └── surface │ │ │ │ ├── check_biomes.mcfunction │ │ │ │ ├── check_location.mcfunction │ │ │ │ ├── check_structs.mcfunction │ │ │ │ ├── spawn_struct.mcfunction │ │ │ │ └── start.mcfunction │ │ │ ├── pregen-stop.mcfunction │ │ │ ├── pregen.mcfunction │ │ │ ├── pregen │ │ │ ├── next.mcfunction │ │ │ ├── setup.mcfunction │ │ │ ├── teleport.mcfunction │ │ │ └── tick.mcfunction │ │ │ ├── registry │ │ │ ├── register_ore.mcfunction │ │ │ ├── register_ore_2.mcfunction │ │ │ ├── register_ore_cycle.mcfunction │ │ │ ├── register_struct.mcfunction │ │ │ ├── register_struct_2.mcfunction │ │ │ └── register_struct_cycle.mcfunction │ │ │ └── utils │ │ │ ├── get_biome.mcfunction │ │ │ ├── get_seed.mcfunction │ │ │ ├── init.mcfunction │ │ │ └── random_seeded.mcfunction │ ├── item_modifiers │ │ ├── append_durability_lore.json │ │ └── copy_nbt.json │ ├── loot_tables │ │ ├── biomes.json │ │ └── random.json │ ├── predicates │ │ ├── block │ │ │ ├── is_emitting_signal.json │ │ │ └── is_waterlogged.json │ │ ├── entity │ │ │ ├── holding_diamond_tool.json │ │ │ ├── holding_golden_tool.json │ │ │ ├── holding_iron_tool.json │ │ │ ├── holding_netherite_tool.json │ │ │ ├── holding_stone_tool.json │ │ │ ├── holding_wooden_tool.json │ │ │ ├── is_baby.json │ │ │ ├── is_invul_tick.json │ │ │ ├── is_on_fire.json │ │ │ ├── is_sneaking.json │ │ │ ├── is_sprinting.json │ │ │ └── is_swimming.json │ │ ├── location │ │ │ ├── biome_types │ │ │ │ ├── badlands.json │ │ │ │ ├── desert.json │ │ │ │ ├── forest.json │ │ │ │ ├── jungle.json │ │ │ │ ├── mountians.json │ │ │ │ ├── mushroom_field.json │ │ │ │ ├── ocean.json │ │ │ │ ├── plains.json │ │ │ │ ├── savanna.json │ │ │ │ ├── swamp.json │ │ │ │ ├── taiga.json │ │ │ │ ├── the_end.json │ │ │ │ └── the_nether.json │ │ │ ├── biomes │ │ │ │ ├── badlands.json │ │ │ │ ├── badlands_plateau.json │ │ │ │ ├── bamboo_jungle.json │ │ │ │ ├── bamboo_jungle_hills.json │ │ │ │ ├── basalt_deltas.json │ │ │ │ ├── beach.json │ │ │ │ ├── birch_forest.json │ │ │ │ ├── birch_forest_hills.json │ │ │ │ ├── cold_ocean.json │ │ │ │ ├── crimson_forest.json │ │ │ │ ├── dark_forest.json │ │ │ │ ├── dark_forest_hills.json │ │ │ │ ├── deep_cold_ocean.json │ │ │ │ ├── deep_frozen_ocean.json │ │ │ │ ├── deep_lukewarm_ocean.json │ │ │ │ ├── deep_ocean.json │ │ │ │ ├── deep_warm_ocean.json │ │ │ │ ├── desert.json │ │ │ │ ├── desert_hills.json │ │ │ │ ├── desert_lakes.json │ │ │ │ ├── end_barrens.json │ │ │ │ ├── end_highlands.json │ │ │ │ ├── end_midlands.json │ │ │ │ ├── eroded_badlands.json │ │ │ │ ├── flower_forest.json │ │ │ │ ├── forest.json │ │ │ │ ├── frozen_ocean.json │ │ │ │ ├── frozen_river.json │ │ │ │ ├── giant_spruce_taiga.json │ │ │ │ ├── giant_spruce_taiga_hills.json │ │ │ │ ├── giant_tree_taiga.json │ │ │ │ ├── giant_tree_taiga_hills.json │ │ │ │ ├── gravelly_mountains.json │ │ │ │ ├── ice_spikes.json │ │ │ │ ├── jungle.json │ │ │ │ ├── jungle_edge.json │ │ │ │ ├── jungle_hills.json │ │ │ │ ├── lukewarm_ocean.json │ │ │ │ ├── modified_badlands_plateau.json │ │ │ │ ├── modified_gravelly_mountains.json │ │ │ │ ├── modified_jungle.json │ │ │ │ ├── modified_jungle_edge.json │ │ │ │ ├── modified_wooded_badlands_plateau.json │ │ │ │ ├── mountain_edge.json │ │ │ │ ├── mountains.json │ │ │ │ ├── mushroom_field_shore.json │ │ │ │ ├── mushroom_fields.json │ │ │ │ ├── nether_wastes.json │ │ │ │ ├── ocean.json │ │ │ │ ├── plains.json │ │ │ │ ├── river.json │ │ │ │ ├── savanna.json │ │ │ │ ├── savanna_plateau.json │ │ │ │ ├── shattered_savanna.json │ │ │ │ ├── shattered_savanna_plateau.json │ │ │ │ ├── small_end_islands.json │ │ │ │ ├── snowy_beach.json │ │ │ │ ├── snowy_mountains.json │ │ │ │ ├── snowy_taiga.json │ │ │ │ ├── snowy_taiga_hills.json │ │ │ │ ├── snowy_tundra.json │ │ │ │ ├── soul_sand_valley.json │ │ │ │ ├── stone_shore.json │ │ │ │ ├── sunflower_plains.json │ │ │ │ ├── swamp.json │ │ │ │ ├── swamp_hills.json │ │ │ │ ├── taiga.json │ │ │ │ ├── taiga_hills.json │ │ │ │ ├── taiga_mountains.json │ │ │ │ ├── tall_birch_forest.json │ │ │ │ ├── tall_birch_hills.json │ │ │ │ ├── the_end.json │ │ │ │ ├── the_void.json │ │ │ │ ├── warm_ocean.json │ │ │ │ ├── warped_forest.json │ │ │ │ ├── wooded_badlands_plateau.json │ │ │ │ ├── wooded_hills.json │ │ │ │ └── wooded_mountains.json │ │ │ ├── light │ │ │ │ ├── level_0.json │ │ │ │ ├── level_1.json │ │ │ │ ├── level_10.json │ │ │ │ ├── level_11.json │ │ │ │ ├── level_12.json │ │ │ │ ├── level_13.json │ │ │ │ ├── level_14.json │ │ │ │ ├── level_15.json │ │ │ │ ├── level_2.json │ │ │ │ ├── level_3.json │ │ │ │ ├── level_4.json │ │ │ │ ├── level_5.json │ │ │ │ ├── level_6.json │ │ │ │ ├── level_7.json │ │ │ │ ├── level_8.json │ │ │ │ └── level_9.json │ │ │ └── structures │ │ │ │ ├── bastion_remnant.json │ │ │ │ ├── buried_treasure.json │ │ │ │ ├── desert_pyramid.json │ │ │ │ ├── endcity.json │ │ │ │ ├── fortress.json │ │ │ │ ├── igloo.json │ │ │ │ ├── jungle_pyramid.json │ │ │ │ ├── large_structure.json │ │ │ │ ├── mansion.json │ │ │ │ ├── mineshaft.json │ │ │ │ ├── monument.json │ │ │ │ ├── ocean_ruin.json │ │ │ │ ├── pillager_outpost.json │ │ │ │ ├── ruined_portal.json │ │ │ │ ├── shipwreck.json │ │ │ │ ├── stronghold.json │ │ │ │ ├── swamp_hut.json │ │ │ │ └── village.json │ │ ├── random │ │ │ ├── 0.1.json │ │ │ ├── 0.2.json │ │ │ ├── 0.3.json │ │ │ ├── 0.4.json │ │ │ ├── 0.5.json │ │ │ ├── 0.6.json │ │ │ ├── 0.7.json │ │ │ ├── 0.8.json │ │ │ └── 0.9.json │ │ └── world │ │ │ ├── custom_dimension.json │ │ │ ├── is_clear.json │ │ │ ├── is_raining.json │ │ │ ├── is_thundering.json │ │ │ ├── overworld.json │ │ │ ├── the_end.json │ │ │ └── the_nether.json │ └── tags │ │ ├── blocks │ │ ├── air.json │ │ ├── blackstone.json │ │ ├── colors │ │ │ ├── concrete.json │ │ │ ├── concrete_powder.json │ │ │ ├── glass.json │ │ │ ├── glass_panes.json │ │ │ ├── glazed_terracotta.json │ │ │ ├── shulker_boxes.json │ │ │ └── terracotta.json │ │ ├── command_blocks.json │ │ ├── copper.json │ │ ├── crops.json │ │ ├── deepslate.json │ │ ├── double_blocks.json │ │ ├── emit_light.json │ │ ├── fence_gates.json │ │ ├── flammable.json │ │ ├── fluids.json │ │ ├── heads.json │ │ ├── ice.json │ │ ├── infested.json │ │ ├── internal │ │ │ ├── chest-like.json │ │ │ ├── decoration.json │ │ │ ├── furnace-like.json │ │ │ ├── redstone │ │ │ │ ├── redstone_torch.json │ │ │ │ ├── strong_power_bottom.json │ │ │ │ ├── strong_power_side.json │ │ │ │ ├── strong_power_top.json │ │ │ │ ├── transparent.json │ │ │ │ ├── weak_power_bottom.json │ │ │ │ ├── weak_power_side.json │ │ │ │ └── weak_power_top.json │ │ │ ├── valid_gen_ore.json │ │ │ └── valid_gen_struct.json │ │ ├── non-solid.json │ │ ├── plants.json │ │ ├── pressure_plates.json │ │ ├── prismarine.json │ │ ├── quartz.json │ │ ├── sandstone.json │ │ ├── stone.json │ │ ├── stripped_logs.json │ │ ├── torches.json │ │ ├── unbreakable.json │ │ └── water-loggable.json │ │ ├── entity_types │ │ ├── aligned.json │ │ ├── aquatic.json │ │ ├── arrows.json │ │ ├── bosses.json │ │ ├── breedable.json │ │ ├── fish.json │ │ ├── flying.json │ │ ├── horses.json │ │ ├── hostile.json │ │ ├── illagers.json │ │ ├── living.json │ │ ├── minecarts.json │ │ ├── mobs.json │ │ ├── nether.json │ │ ├── neutral.json │ │ ├── passive.json │ │ ├── projectiles.json │ │ ├── skeletons.json │ │ ├── spiders.json │ │ ├── tameable.json │ │ ├── undead.json │ │ └── zombies.json │ │ ├── functions │ │ ├── generation │ │ │ ├── chunk.json │ │ │ ├── custom_biomes.json │ │ │ ├── ore.json │ │ │ └── structure.json │ │ ├── item_processing.json │ │ ├── place_custom_head.json │ │ ├── recipes │ │ │ ├── blast_furnace.json │ │ │ ├── campfire.json │ │ │ ├── crafting.json │ │ │ ├── furnace.json │ │ │ └── smoker.json │ │ └── spawner_block.json │ │ └── items │ │ ├── armor │ │ ├── armor.json │ │ ├── boots.json │ │ ├── chainmail.json │ │ ├── chestplates.json │ │ ├── diamond.json │ │ ├── helmets.json │ │ ├── iron.json │ │ ├── leather.json │ │ ├── leggings.json │ │ └── netherite.json │ │ ├── tools │ │ ├── axes.json │ │ ├── diamond.json │ │ ├── golden.json │ │ ├── hoes.json │ │ ├── iron.json │ │ ├── netherite.json │ │ ├── pickaxes.json │ │ ├── shovels.json │ │ ├── stone.json │ │ ├── swords.json │ │ ├── tools.json │ │ ├── weapons.json │ │ └── wooden.json │ │ └── ui-items.json ├── global │ └── advancements │ │ ├── icy105.json │ │ └── root.json ├── load │ ├── functions │ │ └── _private │ │ │ └── init.mcfunction │ └── tags │ │ └── functions │ │ ├── _private │ │ ├── init.json │ │ └── load.json │ │ ├── load.json │ │ ├── post_load.json │ │ └── pre_load.json └── minecraft │ ├── loot_tables │ ├── blocks │ │ ├── acacia_log.json │ │ ├── acacia_wood.json │ │ ├── ancient_debris.json │ │ ├── andesite.json │ │ ├── birch_log.json │ │ ├── birch_wood.json │ │ ├── black_terracotta.json │ │ ├── blue_terracotta.json │ │ ├── brown_terracotta.json │ │ ├── cactus.json │ │ ├── chorus_plant.json │ │ ├── clay.json │ │ ├── cobbled_deepslate.json │ │ ├── cobblestone.json │ │ ├── copper_ore.json │ │ ├── cyan_terracotta.json │ │ ├── dark_oak_log.json │ │ ├── dark_oak_wood.json │ │ ├── deepslate.json │ │ ├── deepslate_bricks.json │ │ ├── deepslate_copper_ore.json │ │ ├── deepslate_gold_ore.json │ │ ├── deepslate_iron_ore.json │ │ ├── deepslate_tiles.json │ │ ├── diorite.json │ │ ├── dirt.json │ │ ├── gold_ore.json │ │ ├── granite.json │ │ ├── grass_block.json │ │ ├── gray_terracotta.json │ │ ├── green_shulker_box.json │ │ ├── green_terracotta.json │ │ ├── iron_ore.json │ │ ├── jungle_log.json │ │ ├── jungle_wood.json │ │ ├── light_blue_terracotta.json │ │ ├── light_gray_terracotta.json │ │ ├── lime_terracotta.json │ │ ├── magenta_terracotta.json │ │ ├── nether_bricks.json │ │ ├── netherrack.json │ │ ├── oak_log.json │ │ ├── oak_wood.json │ │ ├── orange_terracotta.json │ │ ├── pink_terracotta.json │ │ ├── polished_blackstone_bricks.json │ │ ├── purple_terracotta.json │ │ ├── red_sand.json │ │ ├── red_terracotta.json │ │ ├── sand.json │ │ ├── spawner.json │ │ ├── spruce_log.json │ │ ├── spruce_wood.json │ │ ├── stone.json │ │ ├── stone_bricks.json │ │ ├── stripped_acacia_log.json │ │ ├── stripped_acacia_wood.json │ │ ├── stripped_birch_log.json │ │ ├── stripped_birch_wood.json │ │ ├── stripped_dark_oak_log.json │ │ ├── stripped_dark_oak_wood.json │ │ ├── stripped_jungle_log.json │ │ ├── stripped_jungle_wood.json │ │ ├── stripped_oak_log.json │ │ ├── stripped_oak_wood.json │ │ ├── stripped_spruce_log.json │ │ ├── stripped_spruce_wood.json │ │ ├── wet_sponge.json │ │ ├── white_terracotta.json │ │ └── yellow_terracotta.json │ └── entities │ │ └── player.json │ └── tags │ └── functions │ └── load.json ├── pack.mcmeta └── pack.png /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/README.md -------------------------------------------------------------------------------- /SMITHED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/SMITHED.md -------------------------------------------------------------------------------- /data/chunk_scan/functions/chunk/generate.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/chunk_scan/functions/chunk/generate.mcfunction -------------------------------------------------------------------------------- /data/chunk_scan/functions/chunk/generate_2.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/chunk_scan/functions/chunk/generate_2.mcfunction -------------------------------------------------------------------------------- /data/chunk_scan/functions/chunk/generate_3.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/chunk_scan/functions/chunk/generate_3.mcfunction -------------------------------------------------------------------------------- /data/chunk_scan/functions/chunk/init.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/chunk_scan/functions/chunk/init.mcfunction -------------------------------------------------------------------------------- /data/chunk_scan/functions/chunk/spread.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/chunk_scan/functions/chunk/spread.mcfunction -------------------------------------------------------------------------------- /data/chunk_scan/functions/entities/summon_chunk_marker.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/chunk_scan/functions/entities/summon_chunk_marker.mcfunction -------------------------------------------------------------------------------- /data/chunk_scan/functions/entities/summon_gen_marker.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/chunk_scan/functions/entities/summon_gen_marker.mcfunction -------------------------------------------------------------------------------- /data/chunk_scan/functions/load.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/chunk_scan/functions/load.mcfunction -------------------------------------------------------------------------------- /data/chunk_scan/functions/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/chunk_scan/functions/main.mcfunction -------------------------------------------------------------------------------- /data/chunk_scan/functions/main_slow.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/chunk_scan/functions/main_slow.mcfunction -------------------------------------------------------------------------------- /data/chunk_scan/predicates/world_bottom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/chunk_scan/predicates/world_bottom.json -------------------------------------------------------------------------------- /data/chunk_scan/tags/blocks/all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/chunk_scan/tags/blocks/all.json -------------------------------------------------------------------------------- /data/chunk_scan/tags/functions/generate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/chunk_scan/tags/functions/generate.json -------------------------------------------------------------------------------- /data/du/advancements/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/advancements/base.json -------------------------------------------------------------------------------- /data/du/advancements/triggers/dealt_damage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/advancements/triggers/dealt_damage.json -------------------------------------------------------------------------------- /data/du/advancements/triggers/furnace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/advancements/triggers/furnace.json -------------------------------------------------------------------------------- /data/du/advancements/triggers/place_blast_furnace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/advancements/triggers/place_blast_furnace.json -------------------------------------------------------------------------------- /data/du/advancements/triggers/place_campfire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/advancements/triggers/place_campfire.json -------------------------------------------------------------------------------- /data/du/advancements/triggers/place_smoker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/advancements/triggers/place_smoker.json -------------------------------------------------------------------------------- /data/du/advancements/triggers/place_soul_campfire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/advancements/triggers/place_soul_campfire.json -------------------------------------------------------------------------------- /data/du/functions/base/base.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/base/base.mcfunction -------------------------------------------------------------------------------- /data/du/functions/base/init.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/base/init.mcfunction -------------------------------------------------------------------------------- /data/du/functions/base/init_chunk.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/base/init_chunk.mcfunction -------------------------------------------------------------------------------- /data/du/functions/base/items.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/base/items.mcfunction -------------------------------------------------------------------------------- /data/du/functions/base/items_spawner.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/base/items_spawner.mcfunction -------------------------------------------------------------------------------- /data/du/functions/custom_campfire/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/custom_campfire/main.mcfunction -------------------------------------------------------------------------------- /data/du/functions/custom_campfire/process_0.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/custom_campfire/process_0.mcfunction -------------------------------------------------------------------------------- /data/du/functions/custom_campfire/process_1.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/custom_campfire/process_1.mcfunction -------------------------------------------------------------------------------- /data/du/functions/custom_campfire/process_2.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/custom_campfire/process_2.mcfunction -------------------------------------------------------------------------------- /data/du/functions/custom_campfire/process_3.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/custom_campfire/process_3.mcfunction -------------------------------------------------------------------------------- /data/du/functions/custom_campfire/process_recipe.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/custom_campfire/process_recipe.mcfunction -------------------------------------------------------------------------------- /data/du/functions/custom_crafter/check_output.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/custom_crafter/check_output.mcfunction -------------------------------------------------------------------------------- /data/du/functions/custom_crafter/check_recipes.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/custom_crafter/check_recipes.mcfunction -------------------------------------------------------------------------------- /data/du/functions/custom_crafter/check_stacksize.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/custom_crafter/check_stacksize.mcfunction -------------------------------------------------------------------------------- /data/du/functions/custom_crafter/compact.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/custom_crafter/compact.mcfunction -------------------------------------------------------------------------------- /data/du/functions/custom_crafter/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/custom_crafter/main.mcfunction -------------------------------------------------------------------------------- /data/du/functions/custom_crafter/main_ui.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/custom_crafter/main_ui.mcfunction -------------------------------------------------------------------------------- /data/du/functions/custom_crafter/main_ui_clear.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/custom_crafter/main_ui_clear.mcfunction -------------------------------------------------------------------------------- /data/du/functions/custom_crafter/main_ui_move.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/custom_crafter/main_ui_move.mcfunction -------------------------------------------------------------------------------- /data/du/functions/custom_crafter/process_recipes.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/custom_crafter/process_recipes.mcfunction -------------------------------------------------------------------------------- /data/du/functions/custom_furnace/check_out_stackable.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/custom_furnace/check_out_stackable.mcfunction -------------------------------------------------------------------------------- /data/du/functions/custom_furnace/check_out_stackable_16.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/custom_furnace/check_out_stackable_16.mcfunction -------------------------------------------------------------------------------- /data/du/functions/custom_furnace/end.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/custom_furnace/end.mcfunction -------------------------------------------------------------------------------- /data/du/functions/custom_furnace/fuel.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/custom_furnace/fuel.mcfunction -------------------------------------------------------------------------------- /data/du/functions/custom_furnace/fuel_2.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/custom_furnace/fuel_2.mcfunction -------------------------------------------------------------------------------- /data/du/functions/custom_furnace/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/custom_furnace/main.mcfunction -------------------------------------------------------------------------------- /data/du/functions/custom_furnace/make_lit.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/custom_furnace/make_lit.mcfunction -------------------------------------------------------------------------------- /data/du/functions/custom_furnace/place.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/custom_furnace/place.mcfunction -------------------------------------------------------------------------------- /data/du/functions/custom_furnace/process_smelt.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/custom_furnace/process_smelt.mcfunction -------------------------------------------------------------------------------- /data/du/functions/custom_furnace/start_smelt.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/custom_furnace/start_smelt.mcfunction -------------------------------------------------------------------------------- /data/du/functions/entity/apply_damage/rot_0.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/entity/apply_damage/rot_0.mcfunction -------------------------------------------------------------------------------- /data/du/functions/entity/apply_damage/rot_1.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/entity/apply_damage/rot_1.mcfunction -------------------------------------------------------------------------------- /data/du/functions/entity/apply_damage/rot_2.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/entity/apply_damage/rot_2.mcfunction -------------------------------------------------------------------------------- /data/du/functions/entity/apply_damage/rot_3.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/entity/apply_damage/rot_3.mcfunction -------------------------------------------------------------------------------- /data/du/functions/entity/apply_damage/rot_4.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/entity/apply_damage/rot_4.mcfunction -------------------------------------------------------------------------------- /data/du/functions/entity/apply_damage/rot_5.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/entity/apply_damage/rot_5.mcfunction -------------------------------------------------------------------------------- /data/du/functions/entity/apply_damage/rot_6.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/entity/apply_damage/rot_6.mcfunction -------------------------------------------------------------------------------- /data/du/functions/entity/apply_damage/rot_7.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/entity/apply_damage/rot_7.mcfunction -------------------------------------------------------------------------------- /data/du/functions/entity/apply_damage/rot_8.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/entity/apply_damage/rot_8.mcfunction -------------------------------------------------------------------------------- /data/du/functions/entity/apply_damage/rot_9.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/entity/apply_damage/rot_9.mcfunction -------------------------------------------------------------------------------- /data/du/functions/entity/damage_entity.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/entity/damage_entity.mcfunction -------------------------------------------------------------------------------- /data/du/functions/entity/damage_mob.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/entity/damage_mob.mcfunction -------------------------------------------------------------------------------- /data/du/functions/entity/damage_player.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/entity/damage_player.mcfunction -------------------------------------------------------------------------------- /data/du/functions/entity/reset_damage/remove_damage_0.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/entity/reset_damage/remove_damage_0.mcfunction -------------------------------------------------------------------------------- /data/du/functions/entity/reset_damage/remove_damage_1.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/entity/reset_damage/remove_damage_1.mcfunction -------------------------------------------------------------------------------- /data/du/functions/entity/reset_damage/remove_damage_2.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/entity/reset_damage/remove_damage_2.mcfunction -------------------------------------------------------------------------------- /data/du/functions/entity/reset_damage/remove_damage_3.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/entity/reset_damage/remove_damage_3.mcfunction -------------------------------------------------------------------------------- /data/du/functions/entity/reset_damage/remove_damage_4.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/entity/reset_damage/remove_damage_4.mcfunction -------------------------------------------------------------------------------- /data/du/functions/entity/reset_damage/remove_damage_5.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/entity/reset_damage/remove_damage_5.mcfunction -------------------------------------------------------------------------------- /data/du/functions/entity/reset_damage/remove_damage_6.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/entity/reset_damage/remove_damage_6.mcfunction -------------------------------------------------------------------------------- /data/du/functions/entity/reset_damage/remove_damage_7.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/entity/reset_damage/remove_damage_7.mcfunction -------------------------------------------------------------------------------- /data/du/functions/entity/reset_damage/remove_damage_8.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/entity/reset_damage/remove_damage_8.mcfunction -------------------------------------------------------------------------------- /data/du/functions/entity/reset_damage/remove_damage_9.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/entity/reset_damage/remove_damage_9.mcfunction -------------------------------------------------------------------------------- /data/du/functions/entity/reset_damage/reset_1.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/entity/reset_damage/reset_1.mcfunction -------------------------------------------------------------------------------- /data/du/functions/entity/reset_damage/reset_2.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/entity/reset_damage/reset_2.mcfunction -------------------------------------------------------------------------------- /data/du/functions/load.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/load.mcfunction -------------------------------------------------------------------------------- /data/du/functions/load_message.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/load_message.mcfunction -------------------------------------------------------------------------------- /data/du/functions/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/main.mcfunction -------------------------------------------------------------------------------- /data/du/functions/math/init.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/math/init.mcfunction -------------------------------------------------------------------------------- /data/du/functions/math/random.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/math/random.mcfunction -------------------------------------------------------------------------------- /data/du/functions/math/random_seeded.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/math/random_seeded.mcfunction -------------------------------------------------------------------------------- /data/du/functions/math/seed_from_position.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/math/seed_from_position.mcfunction -------------------------------------------------------------------------------- /data/du/functions/math/xor_bitwise.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/math/xor_bitwise.mcfunction -------------------------------------------------------------------------------- /data/du/functions/math/xor_shift.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/math/xor_shift.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/add_damage.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/add_damage.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/clickdetect/click_detection_1.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/clickdetect/click_detection_1.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/clickdetect/click_detection_3.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/clickdetect/click_detection_3.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/clickdetect/click_detection_5.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/clickdetect/click_detection_5.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/clickdetect/click_detection_end.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/clickdetect/click_detection_end.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/clickdetect/clickdetect.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/clickdetect/clickdetect.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/clickdetect/summon_villagers.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/clickdetect/summon_villagers.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/clickdetect/tick.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/clickdetect/tick.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/durability/change_durability.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/durability/change_durability.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/durability/damage_boots.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/durability/damage_boots.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/durability/damage_chestplate.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/durability/damage_chestplate.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/durability/damage_helmet.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/durability/damage_helmet.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/durability/damage_leggings.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/durability/damage_leggings.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/durability/damage_mainhand.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/durability/damage_mainhand.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/durability/damage_offhand.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/durability/damage_offhand.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/durability/get_max_durability.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/durability/get_max_durability.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/durability/handle_durability.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/durability/handle_durability.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/durability/init_item.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/durability/init_item.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/durability/process_boots.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/durability/process_boots.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/durability/process_chestplate.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/durability/process_chestplate.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/durability/process_helmet.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/durability/process_helmet.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/durability/process_leggings.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/durability/process_leggings.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/durability/process_mainhand.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/durability/process_mainhand.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/durability/process_offhand.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/durability/process_offhand.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/get_moving.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/get_moving.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/head/drop_head.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/head/drop_head.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/head/give_head.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/head/give_head.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/head/store_head.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/head/store_head.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/inv/get_ender_chest.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/inv/get_ender_chest.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/inv/get_equipment.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/inv/get_equipment.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/inv/get_hotbar.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/inv/get_hotbar.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/inv/get_inv.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/inv/get_inv.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/inv/restore_ender_chest.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/inv/restore_ender_chest.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/inv/restore_equipment.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/inv/restore_equipment.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/inv/restore_hotbar.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/inv/restore_hotbar.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/inv/restore_inv.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/inv/restore_inv.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/player.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/player.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/triggers/dealt_damage.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/triggers/dealt_damage.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/triggers/place_furnace.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/triggers/place_furnace.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/triggers/place_head.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/triggers/place_head.mcfunction -------------------------------------------------------------------------------- /data/du/functions/player/uuid/get_uuid.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/player/uuid/get_uuid.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/blocks/is_active.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/blocks/is_active.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/blocks/is_powered.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/blocks/is_powered.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/generate_chunk.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/generate_chunk.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/ore_gen/check_biomes.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/ore_gen/check_biomes.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/ore_gen/displace_x.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/ore_gen/displace_x.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/ore_gen/displace_y.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/ore_gen/displace_y.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/ore_gen/displace_y_2.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/ore_gen/displace_y_2.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/ore_gen/displace_y_3.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/ore_gen/displace_y_3.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/ore_gen/displace_z.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/ore_gen/displace_z.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/ore_gen/generate_veins.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/ore_gen/generate_veins.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/ore_gen/generate_veins_loop.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/ore_gen/generate_veins_loop.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/ore_gen/registry_check.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/ore_gen/registry_check.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/ore_gen/registry_cycle.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/ore_gen/registry_cycle.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/ore_gen/registry_generation.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/ore_gen/registry_generation.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/ore_gen/spawn_ore.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/ore_gen/spawn_ore.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/ore_gen/spawn_ore_2.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/ore_gen/spawn_ore_2.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/struct_gen/cave/check_biomes.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/struct_gen/cave/check_biomes.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/struct_gen/cave/check_structs.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/struct_gen/cave/check_structs.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/struct_gen/cave/displace_y_cavern.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/struct_gen/cave/displace_y_cavern.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/struct_gen/cave/displace_y_default.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/struct_gen/cave/displace_y_default.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/struct_gen/cave/spawn_struct.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/struct_gen/cave/spawn_struct.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/struct_gen/cave/start-cavern.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/struct_gen/cave/start-cavern.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/struct_gen/cave/start-default.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/struct_gen/cave/start-default.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/struct_gen/displace_x.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/struct_gen/displace_x.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/struct_gen/displace_z.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/struct_gen/displace_z.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/struct_gen/get_weighted_struct.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/struct_gen/get_weighted_struct.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/struct_gen/registry_check.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/struct_gen/registry_check.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/struct_gen/registry_cycle.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/struct_gen/registry_cycle.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/struct_gen/scan_chunk.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/struct_gen/scan_chunk.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/struct_gen/scan_chunk_2.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/struct_gen/scan_chunk_2.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/struct_gen/scan_chunk_3.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/struct_gen/scan_chunk_3.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/struct_gen/scan_chunk_cavern.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/struct_gen/scan_chunk_cavern.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/struct_gen/scan_chunk_cavern_2.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/struct_gen/scan_chunk_cavern_2.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/struct_gen/scan_chunk_cavern_3.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/struct_gen/scan_chunk_cavern_3.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/struct_gen/scan_chunk_cavern_4.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/struct_gen/scan_chunk_cavern_4.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/struct_gen/scan_chunk_cavern_5.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/struct_gen/scan_chunk_cavern_5.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/struct_gen/sky/check_biomes.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/struct_gen/sky/check_biomes.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/struct_gen/sky/check_structs.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/struct_gen/sky/check_structs.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/struct_gen/sky/displace_y.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/struct_gen/sky/displace_y.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/struct_gen/sky/spawn_struct.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/struct_gen/sky/spawn_struct.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/struct_gen/sky/start.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/struct_gen/sky/start.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/struct_gen/surface/check_biomes.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/struct_gen/surface/check_biomes.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/struct_gen/surface/check_location.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/struct_gen/surface/check_location.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/struct_gen/surface/check_structs.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/struct_gen/surface/check_structs.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/struct_gen/surface/spawn_struct.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/struct_gen/surface/spawn_struct.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/generation/struct_gen/surface/start.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/generation/struct_gen/surface/start.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/pregen-stop.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/pregen-stop.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/pregen.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/pregen.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/pregen/next.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/pregen/next.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/pregen/setup.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/pregen/setup.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/pregen/teleport.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/pregen/teleport.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/pregen/tick.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/pregen/tick.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/registry/register_ore.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/registry/register_ore.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/registry/register_ore_2.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/registry/register_ore_2.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/registry/register_ore_cycle.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/registry/register_ore_cycle.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/registry/register_struct.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/registry/register_struct.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/registry/register_struct_2.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/registry/register_struct_2.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/registry/register_struct_cycle.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/registry/register_struct_cycle.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/utils/get_biome.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/utils/get_biome.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/utils/get_seed.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/utils/get_seed.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/utils/init.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/utils/init.mcfunction -------------------------------------------------------------------------------- /data/du/functions/world/utils/random_seeded.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/functions/world/utils/random_seeded.mcfunction -------------------------------------------------------------------------------- /data/du/item_modifiers/append_durability_lore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/item_modifiers/append_durability_lore.json -------------------------------------------------------------------------------- /data/du/item_modifiers/copy_nbt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/item_modifiers/copy_nbt.json -------------------------------------------------------------------------------- /data/du/loot_tables/biomes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/loot_tables/biomes.json -------------------------------------------------------------------------------- /data/du/loot_tables/random.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/loot_tables/random.json -------------------------------------------------------------------------------- /data/du/predicates/block/is_emitting_signal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/block/is_emitting_signal.json -------------------------------------------------------------------------------- /data/du/predicates/block/is_waterlogged.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/block/is_waterlogged.json -------------------------------------------------------------------------------- /data/du/predicates/entity/holding_diamond_tool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/entity/holding_diamond_tool.json -------------------------------------------------------------------------------- /data/du/predicates/entity/holding_golden_tool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/entity/holding_golden_tool.json -------------------------------------------------------------------------------- /data/du/predicates/entity/holding_iron_tool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/entity/holding_iron_tool.json -------------------------------------------------------------------------------- /data/du/predicates/entity/holding_netherite_tool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/entity/holding_netherite_tool.json -------------------------------------------------------------------------------- /data/du/predicates/entity/holding_stone_tool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/entity/holding_stone_tool.json -------------------------------------------------------------------------------- /data/du/predicates/entity/holding_wooden_tool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/entity/holding_wooden_tool.json -------------------------------------------------------------------------------- /data/du/predicates/entity/is_baby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/entity/is_baby.json -------------------------------------------------------------------------------- /data/du/predicates/entity/is_invul_tick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/entity/is_invul_tick.json -------------------------------------------------------------------------------- /data/du/predicates/entity/is_on_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/entity/is_on_fire.json -------------------------------------------------------------------------------- /data/du/predicates/entity/is_sneaking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/entity/is_sneaking.json -------------------------------------------------------------------------------- /data/du/predicates/entity/is_sprinting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/entity/is_sprinting.json -------------------------------------------------------------------------------- /data/du/predicates/entity/is_swimming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/entity/is_swimming.json -------------------------------------------------------------------------------- /data/du/predicates/location/biome_types/badlands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biome_types/badlands.json -------------------------------------------------------------------------------- /data/du/predicates/location/biome_types/desert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biome_types/desert.json -------------------------------------------------------------------------------- /data/du/predicates/location/biome_types/forest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biome_types/forest.json -------------------------------------------------------------------------------- /data/du/predicates/location/biome_types/jungle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biome_types/jungle.json -------------------------------------------------------------------------------- /data/du/predicates/location/biome_types/mountians.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biome_types/mountians.json -------------------------------------------------------------------------------- /data/du/predicates/location/biome_types/mushroom_field.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biome_types/mushroom_field.json -------------------------------------------------------------------------------- /data/du/predicates/location/biome_types/ocean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biome_types/ocean.json -------------------------------------------------------------------------------- /data/du/predicates/location/biome_types/plains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biome_types/plains.json -------------------------------------------------------------------------------- /data/du/predicates/location/biome_types/savanna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biome_types/savanna.json -------------------------------------------------------------------------------- /data/du/predicates/location/biome_types/swamp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biome_types/swamp.json -------------------------------------------------------------------------------- /data/du/predicates/location/biome_types/taiga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biome_types/taiga.json -------------------------------------------------------------------------------- /data/du/predicates/location/biome_types/the_end.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biome_types/the_end.json -------------------------------------------------------------------------------- /data/du/predicates/location/biome_types/the_nether.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biome_types/the_nether.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/badlands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/badlands.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/badlands_plateau.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/badlands_plateau.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/bamboo_jungle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/bamboo_jungle.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/bamboo_jungle_hills.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/bamboo_jungle_hills.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/basalt_deltas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/basalt_deltas.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/beach.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/beach.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/birch_forest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/birch_forest.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/birch_forest_hills.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/birch_forest_hills.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/cold_ocean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/cold_ocean.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/crimson_forest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/crimson_forest.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/dark_forest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/dark_forest.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/dark_forest_hills.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/dark_forest_hills.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/deep_cold_ocean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/deep_cold_ocean.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/deep_frozen_ocean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/deep_frozen_ocean.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/deep_lukewarm_ocean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/deep_lukewarm_ocean.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/deep_ocean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/deep_ocean.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/deep_warm_ocean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/deep_warm_ocean.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/desert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/desert.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/desert_hills.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/desert_hills.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/desert_lakes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/desert_lakes.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/end_barrens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/end_barrens.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/end_highlands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/end_highlands.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/end_midlands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/end_midlands.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/eroded_badlands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/eroded_badlands.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/flower_forest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/flower_forest.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/forest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/forest.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/frozen_ocean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/frozen_ocean.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/frozen_river.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/frozen_river.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/giant_spruce_taiga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/giant_spruce_taiga.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/giant_spruce_taiga_hills.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/giant_spruce_taiga_hills.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/giant_tree_taiga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/giant_tree_taiga.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/giant_tree_taiga_hills.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/giant_tree_taiga_hills.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/gravelly_mountains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/gravelly_mountains.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/ice_spikes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/ice_spikes.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/jungle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/jungle.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/jungle_edge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/jungle_edge.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/jungle_hills.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/jungle_hills.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/lukewarm_ocean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/lukewarm_ocean.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/modified_badlands_plateau.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/modified_badlands_plateau.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/modified_gravelly_mountains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/modified_gravelly_mountains.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/modified_jungle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/modified_jungle.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/modified_jungle_edge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/modified_jungle_edge.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/modified_wooded_badlands_plateau.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/modified_wooded_badlands_plateau.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/mountain_edge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/mountain_edge.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/mountains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/mountains.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/mushroom_field_shore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/mushroom_field_shore.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/mushroom_fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/mushroom_fields.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/nether_wastes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/nether_wastes.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/ocean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/ocean.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/plains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/plains.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/river.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/river.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/savanna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/savanna.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/savanna_plateau.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/savanna_plateau.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/shattered_savanna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/shattered_savanna.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/shattered_savanna_plateau.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/shattered_savanna_plateau.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/small_end_islands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/small_end_islands.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/snowy_beach.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/snowy_beach.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/snowy_mountains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/snowy_mountains.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/snowy_taiga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/snowy_taiga.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/snowy_taiga_hills.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/snowy_taiga_hills.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/snowy_tundra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/snowy_tundra.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/soul_sand_valley.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/soul_sand_valley.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/stone_shore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/stone_shore.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/sunflower_plains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/sunflower_plains.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/swamp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/swamp.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/swamp_hills.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/swamp_hills.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/taiga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/taiga.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/taiga_hills.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/taiga_hills.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/taiga_mountains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/taiga_mountains.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/tall_birch_forest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/tall_birch_forest.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/tall_birch_hills.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/tall_birch_hills.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/the_end.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/the_end.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/the_void.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/the_void.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/warm_ocean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/warm_ocean.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/warped_forest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/warped_forest.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/wooded_badlands_plateau.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/wooded_badlands_plateau.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/wooded_hills.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/wooded_hills.json -------------------------------------------------------------------------------- /data/du/predicates/location/biomes/wooded_mountains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/biomes/wooded_mountains.json -------------------------------------------------------------------------------- /data/du/predicates/location/light/level_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/light/level_0.json -------------------------------------------------------------------------------- /data/du/predicates/location/light/level_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/light/level_1.json -------------------------------------------------------------------------------- /data/du/predicates/location/light/level_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/light/level_10.json -------------------------------------------------------------------------------- /data/du/predicates/location/light/level_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/light/level_11.json -------------------------------------------------------------------------------- /data/du/predicates/location/light/level_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/light/level_12.json -------------------------------------------------------------------------------- /data/du/predicates/location/light/level_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/light/level_13.json -------------------------------------------------------------------------------- /data/du/predicates/location/light/level_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/light/level_14.json -------------------------------------------------------------------------------- /data/du/predicates/location/light/level_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/light/level_15.json -------------------------------------------------------------------------------- /data/du/predicates/location/light/level_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/light/level_2.json -------------------------------------------------------------------------------- /data/du/predicates/location/light/level_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/light/level_3.json -------------------------------------------------------------------------------- /data/du/predicates/location/light/level_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/light/level_4.json -------------------------------------------------------------------------------- /data/du/predicates/location/light/level_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/light/level_5.json -------------------------------------------------------------------------------- /data/du/predicates/location/light/level_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/light/level_6.json -------------------------------------------------------------------------------- /data/du/predicates/location/light/level_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/light/level_7.json -------------------------------------------------------------------------------- /data/du/predicates/location/light/level_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/light/level_8.json -------------------------------------------------------------------------------- /data/du/predicates/location/light/level_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/light/level_9.json -------------------------------------------------------------------------------- /data/du/predicates/location/structures/bastion_remnant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/structures/bastion_remnant.json -------------------------------------------------------------------------------- /data/du/predicates/location/structures/buried_treasure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/structures/buried_treasure.json -------------------------------------------------------------------------------- /data/du/predicates/location/structures/desert_pyramid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/structures/desert_pyramid.json -------------------------------------------------------------------------------- /data/du/predicates/location/structures/endcity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/structures/endcity.json -------------------------------------------------------------------------------- /data/du/predicates/location/structures/fortress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/structures/fortress.json -------------------------------------------------------------------------------- /data/du/predicates/location/structures/igloo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/structures/igloo.json -------------------------------------------------------------------------------- /data/du/predicates/location/structures/jungle_pyramid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/structures/jungle_pyramid.json -------------------------------------------------------------------------------- /data/du/predicates/location/structures/large_structure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/structures/large_structure.json -------------------------------------------------------------------------------- /data/du/predicates/location/structures/mansion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/structures/mansion.json -------------------------------------------------------------------------------- /data/du/predicates/location/structures/mineshaft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/structures/mineshaft.json -------------------------------------------------------------------------------- /data/du/predicates/location/structures/monument.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/structures/monument.json -------------------------------------------------------------------------------- /data/du/predicates/location/structures/ocean_ruin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/structures/ocean_ruin.json -------------------------------------------------------------------------------- /data/du/predicates/location/structures/pillager_outpost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/structures/pillager_outpost.json -------------------------------------------------------------------------------- /data/du/predicates/location/structures/ruined_portal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/structures/ruined_portal.json -------------------------------------------------------------------------------- /data/du/predicates/location/structures/shipwreck.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/structures/shipwreck.json -------------------------------------------------------------------------------- /data/du/predicates/location/structures/stronghold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/structures/stronghold.json -------------------------------------------------------------------------------- /data/du/predicates/location/structures/swamp_hut.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/structures/swamp_hut.json -------------------------------------------------------------------------------- /data/du/predicates/location/structures/village.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/location/structures/village.json -------------------------------------------------------------------------------- /data/du/predicates/random/0.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/random/0.1.json -------------------------------------------------------------------------------- /data/du/predicates/random/0.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/random/0.2.json -------------------------------------------------------------------------------- /data/du/predicates/random/0.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/random/0.3.json -------------------------------------------------------------------------------- /data/du/predicates/random/0.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/random/0.4.json -------------------------------------------------------------------------------- /data/du/predicates/random/0.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/random/0.5.json -------------------------------------------------------------------------------- /data/du/predicates/random/0.6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/random/0.6.json -------------------------------------------------------------------------------- /data/du/predicates/random/0.7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/random/0.7.json -------------------------------------------------------------------------------- /data/du/predicates/random/0.8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/random/0.8.json -------------------------------------------------------------------------------- /data/du/predicates/random/0.9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/random/0.9.json -------------------------------------------------------------------------------- /data/du/predicates/world/custom_dimension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/world/custom_dimension.json -------------------------------------------------------------------------------- /data/du/predicates/world/is_clear.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/world/is_clear.json -------------------------------------------------------------------------------- /data/du/predicates/world/is_raining.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/world/is_raining.json -------------------------------------------------------------------------------- /data/du/predicates/world/is_thundering.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/world/is_thundering.json -------------------------------------------------------------------------------- /data/du/predicates/world/overworld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/world/overworld.json -------------------------------------------------------------------------------- /data/du/predicates/world/the_end.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/world/the_end.json -------------------------------------------------------------------------------- /data/du/predicates/world/the_nether.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/predicates/world/the_nether.json -------------------------------------------------------------------------------- /data/du/tags/blocks/air.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/air.json -------------------------------------------------------------------------------- /data/du/tags/blocks/blackstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/blackstone.json -------------------------------------------------------------------------------- /data/du/tags/blocks/colors/concrete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/colors/concrete.json -------------------------------------------------------------------------------- /data/du/tags/blocks/colors/concrete_powder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/colors/concrete_powder.json -------------------------------------------------------------------------------- /data/du/tags/blocks/colors/glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/colors/glass.json -------------------------------------------------------------------------------- /data/du/tags/blocks/colors/glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/colors/glass_panes.json -------------------------------------------------------------------------------- /data/du/tags/blocks/colors/glazed_terracotta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/colors/glazed_terracotta.json -------------------------------------------------------------------------------- /data/du/tags/blocks/colors/shulker_boxes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/colors/shulker_boxes.json -------------------------------------------------------------------------------- /data/du/tags/blocks/colors/terracotta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/colors/terracotta.json -------------------------------------------------------------------------------- /data/du/tags/blocks/command_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/command_blocks.json -------------------------------------------------------------------------------- /data/du/tags/blocks/copper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/copper.json -------------------------------------------------------------------------------- /data/du/tags/blocks/crops.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/crops.json -------------------------------------------------------------------------------- /data/du/tags/blocks/deepslate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/deepslate.json -------------------------------------------------------------------------------- /data/du/tags/blocks/double_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/double_blocks.json -------------------------------------------------------------------------------- /data/du/tags/blocks/emit_light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/emit_light.json -------------------------------------------------------------------------------- /data/du/tags/blocks/fence_gates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/fence_gates.json -------------------------------------------------------------------------------- /data/du/tags/blocks/flammable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/flammable.json -------------------------------------------------------------------------------- /data/du/tags/blocks/fluids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/fluids.json -------------------------------------------------------------------------------- /data/du/tags/blocks/heads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/heads.json -------------------------------------------------------------------------------- /data/du/tags/blocks/ice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/ice.json -------------------------------------------------------------------------------- /data/du/tags/blocks/infested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/infested.json -------------------------------------------------------------------------------- /data/du/tags/blocks/internal/chest-like.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/internal/chest-like.json -------------------------------------------------------------------------------- /data/du/tags/blocks/internal/decoration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/internal/decoration.json -------------------------------------------------------------------------------- /data/du/tags/blocks/internal/furnace-like.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/internal/furnace-like.json -------------------------------------------------------------------------------- /data/du/tags/blocks/internal/redstone/redstone_torch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/internal/redstone/redstone_torch.json -------------------------------------------------------------------------------- /data/du/tags/blocks/internal/redstone/strong_power_bottom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/internal/redstone/strong_power_bottom.json -------------------------------------------------------------------------------- /data/du/tags/blocks/internal/redstone/strong_power_side.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/internal/redstone/strong_power_side.json -------------------------------------------------------------------------------- /data/du/tags/blocks/internal/redstone/strong_power_top.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/internal/redstone/strong_power_top.json -------------------------------------------------------------------------------- /data/du/tags/blocks/internal/redstone/transparent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/internal/redstone/transparent.json -------------------------------------------------------------------------------- /data/du/tags/blocks/internal/redstone/weak_power_bottom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/internal/redstone/weak_power_bottom.json -------------------------------------------------------------------------------- /data/du/tags/blocks/internal/redstone/weak_power_side.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/internal/redstone/weak_power_side.json -------------------------------------------------------------------------------- /data/du/tags/blocks/internal/redstone/weak_power_top.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/internal/redstone/weak_power_top.json -------------------------------------------------------------------------------- /data/du/tags/blocks/internal/valid_gen_ore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/internal/valid_gen_ore.json -------------------------------------------------------------------------------- /data/du/tags/blocks/internal/valid_gen_struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/internal/valid_gen_struct.json -------------------------------------------------------------------------------- /data/du/tags/blocks/non-solid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/non-solid.json -------------------------------------------------------------------------------- /data/du/tags/blocks/plants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/plants.json -------------------------------------------------------------------------------- /data/du/tags/blocks/pressure_plates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/pressure_plates.json -------------------------------------------------------------------------------- /data/du/tags/blocks/prismarine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/prismarine.json -------------------------------------------------------------------------------- /data/du/tags/blocks/quartz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/quartz.json -------------------------------------------------------------------------------- /data/du/tags/blocks/sandstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/sandstone.json -------------------------------------------------------------------------------- /data/du/tags/blocks/stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/stone.json -------------------------------------------------------------------------------- /data/du/tags/blocks/stripped_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/stripped_logs.json -------------------------------------------------------------------------------- /data/du/tags/blocks/torches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/torches.json -------------------------------------------------------------------------------- /data/du/tags/blocks/unbreakable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/unbreakable.json -------------------------------------------------------------------------------- /data/du/tags/blocks/water-loggable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/blocks/water-loggable.json -------------------------------------------------------------------------------- /data/du/tags/entity_types/aligned.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/entity_types/aligned.json -------------------------------------------------------------------------------- /data/du/tags/entity_types/aquatic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/entity_types/aquatic.json -------------------------------------------------------------------------------- /data/du/tags/entity_types/arrows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/entity_types/arrows.json -------------------------------------------------------------------------------- /data/du/tags/entity_types/bosses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/entity_types/bosses.json -------------------------------------------------------------------------------- /data/du/tags/entity_types/breedable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/entity_types/breedable.json -------------------------------------------------------------------------------- /data/du/tags/entity_types/fish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/entity_types/fish.json -------------------------------------------------------------------------------- /data/du/tags/entity_types/flying.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/entity_types/flying.json -------------------------------------------------------------------------------- /data/du/tags/entity_types/horses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/entity_types/horses.json -------------------------------------------------------------------------------- /data/du/tags/entity_types/hostile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/entity_types/hostile.json -------------------------------------------------------------------------------- /data/du/tags/entity_types/illagers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/entity_types/illagers.json -------------------------------------------------------------------------------- /data/du/tags/entity_types/living.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/entity_types/living.json -------------------------------------------------------------------------------- /data/du/tags/entity_types/minecarts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/entity_types/minecarts.json -------------------------------------------------------------------------------- /data/du/tags/entity_types/mobs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/entity_types/mobs.json -------------------------------------------------------------------------------- /data/du/tags/entity_types/nether.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/entity_types/nether.json -------------------------------------------------------------------------------- /data/du/tags/entity_types/neutral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/entity_types/neutral.json -------------------------------------------------------------------------------- /data/du/tags/entity_types/passive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/entity_types/passive.json -------------------------------------------------------------------------------- /data/du/tags/entity_types/projectiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/entity_types/projectiles.json -------------------------------------------------------------------------------- /data/du/tags/entity_types/skeletons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/entity_types/skeletons.json -------------------------------------------------------------------------------- /data/du/tags/entity_types/spiders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/entity_types/spiders.json -------------------------------------------------------------------------------- /data/du/tags/entity_types/tameable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/entity_types/tameable.json -------------------------------------------------------------------------------- /data/du/tags/entity_types/undead.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/entity_types/undead.json -------------------------------------------------------------------------------- /data/du/tags/entity_types/zombies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/entity_types/zombies.json -------------------------------------------------------------------------------- /data/du/tags/functions/generation/chunk.json: -------------------------------------------------------------------------------- 1 | { 2 | "required":false, 3 | "values":[ 4 | 5 | ] 6 | } -------------------------------------------------------------------------------- /data/du/tags/functions/generation/custom_biomes.json: -------------------------------------------------------------------------------- 1 | { 2 | "required":false, 3 | "values":[ 4 | 5 | ] 6 | } -------------------------------------------------------------------------------- /data/du/tags/functions/generation/ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "required":false, 3 | "values":[ 4 | 5 | ] 6 | } -------------------------------------------------------------------------------- /data/du/tags/functions/generation/structure.json: -------------------------------------------------------------------------------- 1 | { 2 | "required":false, 3 | "values":[ 4 | 5 | ] 6 | } -------------------------------------------------------------------------------- /data/du/tags/functions/item_processing.json: -------------------------------------------------------------------------------- 1 | { 2 | "required":false, 3 | "values":[ 4 | 5 | ] 6 | } -------------------------------------------------------------------------------- /data/du/tags/functions/place_custom_head.json: -------------------------------------------------------------------------------- 1 | { 2 | "required":false, 3 | "values":[ 4 | 5 | ] 6 | } -------------------------------------------------------------------------------- /data/du/tags/functions/recipes/blast_furnace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/functions/recipes/blast_furnace.json -------------------------------------------------------------------------------- /data/du/tags/functions/recipes/campfire.json: -------------------------------------------------------------------------------- 1 | { 2 | "values":[ 3 | 4 | ] 5 | } -------------------------------------------------------------------------------- /data/du/tags/functions/recipes/crafting.json: -------------------------------------------------------------------------------- 1 | { 2 | "required":false, 3 | "values":[ 4 | 5 | ] 6 | } -------------------------------------------------------------------------------- /data/du/tags/functions/recipes/furnace.json: -------------------------------------------------------------------------------- 1 | { 2 | "required":false, 3 | "values":[ 4 | 5 | ] 6 | } -------------------------------------------------------------------------------- /data/du/tags/functions/recipes/smoker.json: -------------------------------------------------------------------------------- 1 | { 2 | "required":false, 3 | "values":[ 4 | 5 | ] 6 | } -------------------------------------------------------------------------------- /data/du/tags/functions/spawner_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "required":false, 3 | "values":[ 4 | 5 | ] 6 | } -------------------------------------------------------------------------------- /data/du/tags/items/armor/armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/items/armor/armor.json -------------------------------------------------------------------------------- /data/du/tags/items/armor/boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/items/armor/boots.json -------------------------------------------------------------------------------- /data/du/tags/items/armor/chainmail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/items/armor/chainmail.json -------------------------------------------------------------------------------- /data/du/tags/items/armor/chestplates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/items/armor/chestplates.json -------------------------------------------------------------------------------- /data/du/tags/items/armor/diamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/items/armor/diamond.json -------------------------------------------------------------------------------- /data/du/tags/items/armor/helmets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/items/armor/helmets.json -------------------------------------------------------------------------------- /data/du/tags/items/armor/iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/items/armor/iron.json -------------------------------------------------------------------------------- /data/du/tags/items/armor/leather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/items/armor/leather.json -------------------------------------------------------------------------------- /data/du/tags/items/armor/leggings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/items/armor/leggings.json -------------------------------------------------------------------------------- /data/du/tags/items/armor/netherite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/items/armor/netherite.json -------------------------------------------------------------------------------- /data/du/tags/items/tools/axes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/items/tools/axes.json -------------------------------------------------------------------------------- /data/du/tags/items/tools/diamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/items/tools/diamond.json -------------------------------------------------------------------------------- /data/du/tags/items/tools/golden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/items/tools/golden.json -------------------------------------------------------------------------------- /data/du/tags/items/tools/hoes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/items/tools/hoes.json -------------------------------------------------------------------------------- /data/du/tags/items/tools/iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/items/tools/iron.json -------------------------------------------------------------------------------- /data/du/tags/items/tools/netherite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/items/tools/netherite.json -------------------------------------------------------------------------------- /data/du/tags/items/tools/pickaxes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/items/tools/pickaxes.json -------------------------------------------------------------------------------- /data/du/tags/items/tools/shovels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/items/tools/shovels.json -------------------------------------------------------------------------------- /data/du/tags/items/tools/stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/items/tools/stone.json -------------------------------------------------------------------------------- /data/du/tags/items/tools/swords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/items/tools/swords.json -------------------------------------------------------------------------------- /data/du/tags/items/tools/tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/items/tools/tools.json -------------------------------------------------------------------------------- /data/du/tags/items/tools/weapons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/items/tools/weapons.json -------------------------------------------------------------------------------- /data/du/tags/items/tools/wooden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/items/tools/wooden.json -------------------------------------------------------------------------------- /data/du/tags/items/ui-items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/du/tags/items/ui-items.json -------------------------------------------------------------------------------- /data/global/advancements/icy105.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/global/advancements/icy105.json -------------------------------------------------------------------------------- /data/global/advancements/root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/global/advancements/root.json -------------------------------------------------------------------------------- /data/load/functions/_private/init.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/load/functions/_private/init.mcfunction -------------------------------------------------------------------------------- /data/load/tags/functions/_private/init.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/load/tags/functions/_private/init.json -------------------------------------------------------------------------------- /data/load/tags/functions/_private/load.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/load/tags/functions/_private/load.json -------------------------------------------------------------------------------- /data/load/tags/functions/load.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/load/tags/functions/load.json -------------------------------------------------------------------------------- /data/load/tags/functions/post_load.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /data/load/tags/functions/pre_load.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } 4 | -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/acacia_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/acacia_log.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/acacia_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/acacia_wood.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/ancient_debris.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/ancient_debris.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/andesite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/andesite.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/birch_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/birch_log.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/birch_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/birch_wood.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/black_terracotta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/black_terracotta.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/blue_terracotta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/blue_terracotta.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/brown_terracotta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/brown_terracotta.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/cactus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/cactus.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/chorus_plant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/chorus_plant.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/clay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/clay.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/cobbled_deepslate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/cobbled_deepslate.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/cobblestone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/cobblestone.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/copper_ore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/copper_ore.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/cyan_terracotta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/cyan_terracotta.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/dark_oak_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/dark_oak_log.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/dark_oak_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/dark_oak_wood.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/deepslate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/deepslate.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/deepslate_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/deepslate_bricks.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/deepslate_copper_ore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/deepslate_copper_ore.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/deepslate_gold_ore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/deepslate_gold_ore.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/deepslate_iron_ore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/deepslate_iron_ore.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/deepslate_tiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/deepslate_tiles.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/diorite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/diorite.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/dirt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/dirt.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/gold_ore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/gold_ore.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/granite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/granite.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/grass_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/grass_block.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/gray_terracotta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/gray_terracotta.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/green_shulker_box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/green_shulker_box.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/green_terracotta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/green_terracotta.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/iron_ore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/iron_ore.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/jungle_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/jungle_log.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/jungle_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/jungle_wood.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/light_blue_terracotta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/light_blue_terracotta.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/light_gray_terracotta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/light_gray_terracotta.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/lime_terracotta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/lime_terracotta.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/magenta_terracotta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/magenta_terracotta.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/nether_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/nether_bricks.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/netherrack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/netherrack.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/oak_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/oak_log.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/oak_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/oak_wood.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/orange_terracotta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/orange_terracotta.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/pink_terracotta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/pink_terracotta.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/polished_blackstone_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/polished_blackstone_bricks.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/purple_terracotta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/purple_terracotta.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/red_sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/red_sand.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/red_terracotta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/red_terracotta.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/sand.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/spawner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/spawner.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/spruce_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/spruce_log.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/spruce_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/spruce_wood.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/stone.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/stone_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/stone_bricks.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/stripped_acacia_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/stripped_acacia_log.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/stripped_acacia_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/stripped_acacia_wood.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/stripped_birch_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/stripped_birch_log.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/stripped_birch_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/stripped_birch_wood.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/stripped_dark_oak_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/stripped_dark_oak_log.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/stripped_dark_oak_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/stripped_dark_oak_wood.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/stripped_jungle_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/stripped_jungle_log.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/stripped_jungle_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/stripped_jungle_wood.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/stripped_oak_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/stripped_oak_log.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/stripped_oak_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/stripped_oak_wood.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/stripped_spruce_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/stripped_spruce_log.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/stripped_spruce_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/stripped_spruce_wood.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/wet_sponge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/wet_sponge.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/white_terracotta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/white_terracotta.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/blocks/yellow_terracotta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/blocks/yellow_terracotta.json -------------------------------------------------------------------------------- /data/minecraft/loot_tables/entities/player.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/loot_tables/entities/player.json -------------------------------------------------------------------------------- /data/minecraft/tags/functions/load.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/data/minecraft/tags/functions/load.json -------------------------------------------------------------------------------- /pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/pack.mcmeta -------------------------------------------------------------------------------- /pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICY105/Datapack-Utilities/HEAD/pack.png --------------------------------------------------------------------------------