UNPKG

@minecraft/creator-tools

Version:

Minecraft Creator Tools command line and libraries.

1,093 lines 34.5 kB
{ "title": "Walk navigation", "description": "Walking style of the mob", "fields": [ { "id": "can_float", "title": "Tells the pathfinder that it can path through through the air.", "dataType": 1, "samples": { "/vanilla/behavior_pack/entities/cat.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": true } ], "/vanilla/behavior_pack/entities/panda.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": true } ] } }, { "id": "blocks_to_avoid", "title": "Tells the pathfinder which blocks to avoid when creating a path.", "dataType": 1, "samples": { "/vanilla/behavior_pack/entities/breeze.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": [ { "tags": "query.any_tag('trapdoors')" } ] } ], "/vanilla/behavior_pack/entities/goat.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": [ { "name": "minecraft:powder_snow" } ] } ] }, "description": "Tells the pathfinder which blocks to avoid when creating a path" }, { "id": "can_breach", "title": "Tells the pathfinder whether or not it can jump out of water (like a dolphin).", "dataType": 1, "defaultValue": false, "description": "Tells the pathfinder whether or not it can jump out of water (like a dolphin)" }, { "id": "can_break_doors", "title": "Tells the pathfinder that it can path through a closed door and break it.", "dataType": 1, "samples": { "/vanilla/behavior_pack/entities/husk.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": true } ], "/vanilla/behavior_pack/entities/zombie.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": true } ] }, "defaultValue": false, "description": "Tells the pathfinder that it can path through a closed door and break it" }, { "id": "can_jump", "title": " Tells the pathfinder whether or not it can jump up blocks.", "dataType": 1, "defaultValue": true, "description": "Tells the pathfinder whether or not it can jump up blocks" }, { "id": "can_open_doors", "title": " Tells the pathfinder that it can path through a closed door assuming the AI will open the door.", "dataType": 1, "samples": { "/vanilla/behavior_pack/entities/evocation_illager.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": true } ], "/vanilla/behavior_pack/entities/piglin_brute.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": true } ] }, "defaultValue": false, "description": "Tells the pathfinder that it can path through a closed door assuming the AI will open the door" }, { "id": "can_open_iron_doors", "title": " Tells the pathfinder that it can path through a closed iron door assuming the AI will open the door.", "dataType": 1, "defaultValue": false, "description": "Tells the pathfinder that it can path through a closed iron door assuming the AI will open the door" }, { "id": "avoid_water", "title": "Avoids water", "dataType": 1, "samples": { "/vanilla/behavior_pack/entities/armadillo.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": true } ], "/vanilla/behavior_pack/entities/blaze.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": true } ] }, "defaultValue": false, "description": "Tells the pathfinder to avoid water when creating a path" }, { "id": "avoid_damage_blocks", "title": "Avoid damaging blocks", "dataType": 1, "samples": { "/vanilla/behavior_pack/entities/armadillo.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": true } ], "/vanilla/behavior_pack/entities/blaze.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": true } ] }, "defaultValue": false, "description": "Tells the pathfinder to avoid blocks that cause damage when finding a path" }, { "id": "avoid_portals", "title": "Avoid Portals", "description": "Tells the pathfinder to avoid portals (like nether portals) when finding a path", "defaultValue": false, "dataType": 1, "samples": { "/vanilla/behavior_pack/entities/zombie_pigman.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": true } ] } }, { "id": "avoid_sun", "title": "Avoid Sun", "description": "Whether or not the pathfinder should avoid tiles that are exposed to the sun when creating paths", "defaultValue": false, "dataType": 1, "samples": { "/vanilla/behavior_pack/entities/bogged.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": true } ], "/vanilla/behavior_pack/entities/skeleton.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": true } ] } }, { "id": "can_pass_doors", "title": "Can Pass Doors", "description": "Whether a path can be created through a door", "defaultValue": true, "dataType": 1, "samples": { "/vanilla/behavior_pack/entities/evocation_illager.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": true } ], "/vanilla/behavior_pack/entities/husk.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": true } ] } }, { "id": "can_path_from_air", "title": "Can Path From Air", "description": "Tells the pathfinder that it can start pathing when in the air", "defaultValue": false, "dataType": 1 }, { "id": "can_path_over_lava", "title": "Can Path Over Lava", "description": "Tells the pathfinder whether or not it can travel on the surface of the lava", "defaultValue": false, "dataType": 1, "samples": { "/vanilla/behavior_pack/entities/creaking.json": [ { "path": "/minecraft:entity/component_groups/minecraft:spawned_by_creaking_heart/minecraft:navigation.walk/", "content": true } ], "/vanilla/behavior_pack/entities/strider.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": true } ] } }, { "id": "can_path_over_water", "title": "Can Path Over Water", "description": "Tells the pathfinder whether or not it can travel on the surface of the water", "defaultValue": false, "dataType": 1, "samples": { "/vanilla/behavior_pack/entities/armadillo.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": true } ], "/vanilla/behavior_pack/entities/blaze.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": true } ] } }, { "id": "can_sink", "title": "Can Sink", "description": "Tells the pathfinder whether or not it will be pulled down by gravity while in water", "defaultValue": true, "dataType": 1 }, { "id": "can_swim", "title": "Can Swim", "description": "Tells the pathfinder whether or not it can path anywhere through water and plays swimming animation along that path", "defaultValue": false, "dataType": 1 }, { "id": "can_walk", "title": "Can Walk", "description": "Tells the pathfinder whether or not it can walk on the ground outside water", "defaultValue": true, "dataType": 1, "samples": { "/vanilla/behavior_pack/entities/villager.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": true } ], "/vanilla/behavior_pack/entities/zombie.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": true } ] } }, { "id": "can_walk_in_lava", "title": "Can Walk In Lava", "description": "Tells the pathfinder whether or not it can travel in lava like walking on ground", "defaultValue": false, "dataType": 1, "samples": { "/vanilla/behavior_pack/entities/strider.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": true } ] } }, { "id": "is_amphibious", "title": "Is Amphibious", "description": "Tells the pathfinder whether or not it can walk on the ground underwater", "defaultValue": false, "dataType": 1, "samples": { "/vanilla/behavior_pack/entities/bogged.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": true } ], "/vanilla/behavior_pack/entities/husk.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": true } ] } } ], "samples": { "/vanilla/behavior_pack/entities/armadillo.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "avoid_damage_blocks": true, "avoid_water": true } } ], "/vanilla/behavior_pack/entities/blaze.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "avoid_water": true, "avoid_damage_blocks": true } } ], "/vanilla/behavior_pack/entities/bogged.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "is_amphibious": true, "avoid_sun": true, "avoid_water": true } } ], "/vanilla/behavior_pack/entities/breeze.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "blocks_to_avoid": [ { "tags": "query.any_tag('trapdoors')" } ] } } ], "/vanilla/behavior_pack/entities/camel.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "avoid_damage_blocks": true } } ], "/vanilla/behavior_pack/entities/cat.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_float": true, "avoid_water": true, "avoid_damage_blocks": true } } ], "/vanilla/behavior_pack/entities/chicken.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "avoid_damage_blocks": true } } ], "/vanilla/behavior_pack/entities/cow.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "avoid_water": true, "avoid_damage_blocks": true } } ], "/vanilla/behavior_pack/entities/creaking.json": [ { "path": "/minecraft:entity/component_groups/minecraft:spawned_by_player/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "can_path_over_lava": false, "avoid_damage_blocks": true } }, { "path": "/minecraft:entity/component_groups/minecraft:spawned_by_creaking_heart/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "can_path_over_lava": true, "avoid_damage_blocks": false } } ], "/vanilla/behavior_pack/entities/creeper.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true } } ], "/vanilla/behavior_pack/entities/donkey.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "avoid_water": true, "avoid_damage_blocks": true } } ], "/vanilla/behavior_pack/entities/enderman.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": false, "avoid_water": true } } ], "/vanilla/behavior_pack/entities/endermite.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true } } ], "/vanilla/behavior_pack/entities/evocation_illager.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "can_pass_doors": true, "can_open_doors": true, "avoid_water": true } } ], "/vanilla/behavior_pack/entities/fox.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "avoid_water": true, "avoid_damage_blocks": true } } ], "/vanilla/behavior_pack/entities/glow_squid.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "can_sink": false } } ], "/vanilla/behavior_pack/entities/goat.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "avoid_water": true, "avoid_damage_blocks": true, "blocks_to_avoid": [ { "name": "minecraft:powder_snow" } ] } } ], "/vanilla/behavior_pack/entities/hoglin.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "avoid_water": true, "avoid_damage_blocks": true } } ], "/vanilla/behavior_pack/entities/horse.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "avoid_water": true, "avoid_damage_blocks": true } } ], "/vanilla/behavior_pack/entities/husk.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "is_amphibious": true, "can_pass_doors": true, "can_break_doors": true, "avoid_portals": false } } ], "/vanilla/behavior_pack/entities/iron_golem.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": false, "avoid_water": true, "avoid_damage_blocks": true } } ], "/vanilla/behavior_pack/entities/llama.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "avoid_damage_blocks": true } } ], "/vanilla/behavior_pack/entities/magma_cube.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "avoid_water": true } } ], "/vanilla/behavior_pack/entities/mooshroom.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "avoid_water": true, "avoid_damage_blocks": true } } ], "/vanilla/behavior_pack/entities/mule.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "avoid_water": true, "avoid_damage_blocks": true } } ], "/vanilla/behavior_pack/entities/ocelot.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "avoid_water": true, "avoid_damage_blocks": true } } ], "/vanilla/behavior_pack/entities/panda.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_float": true, "avoid_water": true, "avoid_damage_blocks": true } } ], "/vanilla/behavior_pack/entities/pig.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "avoid_water": true, "avoid_damage_blocks": true } } ], "/vanilla/behavior_pack/entities/piglin_brute.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "can_open_doors": true } } ], "/vanilla/behavior_pack/entities/piglin.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "can_open_doors": true } } ], "/vanilla/behavior_pack/entities/pillager.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true } } ], "/vanilla/behavior_pack/entities/polar_bear.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "avoid_damage_blocks": true } } ], "/vanilla/behavior_pack/entities/rabbit.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "avoid_water": true } } ], "/vanilla/behavior_pack/entities/ravager.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "avoid_damage_blocks": true, "can_path_over_water": true, "can_sink": false } } ], "/vanilla/behavior_pack/entities/sheep.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "avoid_water": true } } ], "/vanilla/behavior_pack/entities/shulker.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": {} } ], "/vanilla/behavior_pack/entities/silverfish.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true } } ], "/vanilla/behavior_pack/entities/skeleton_horse.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "is_amphibious": true, "avoid_water": true } } ], "/vanilla/behavior_pack/entities/skeleton.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "is_amphibious": true, "avoid_sun": true, "avoid_water": true } } ], "/vanilla/behavior_pack/entities/slime.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "avoid_water": true } } ], "/vanilla/behavior_pack/entities/sniffer.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "avoid_water": true, "avoid_damage_blocks": true } } ], "/vanilla/behavior_pack/entities/snow_golem.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "avoid_water": true } } ], "/vanilla/behavior_pack/entities/squid.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "can_sink": false } } ], "/vanilla/behavior_pack/entities/stray.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "is_amphibious": true, "avoid_sun": true, "avoid_water": true } } ], "/vanilla/behavior_pack/entities/strider.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_lava": true, "avoid_water": true, "can_sink": false, "can_walk_in_lava": true } } ], "/vanilla/behavior_pack/entities/trader_llama.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "avoid_damage_blocks": true } } ], "/vanilla/behavior_pack/entities/vex.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true } } ], "/vanilla/behavior_pack/entities/villager_v2.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "can_pass_doors": true, "can_open_doors": true, "avoid_water": true } } ], "/vanilla/behavior_pack/entities/villager.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "is_amphibious": true, "can_path_over_water": true, "can_pass_doors": true, "can_open_doors": true, "can_walk": true, "avoid_water": true } } ], "/vanilla/behavior_pack/entities/wandering_trader.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "can_pass_doors": true, "can_open_doors": false, "avoid_water": true } } ], "/vanilla/behavior_pack/entities/warden.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "can_path_over_lava": true, "avoid_damage_blocks": true } } ], "/vanilla/behavior_pack/entities/witch.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "avoid_water": false } } ], "/vanilla/behavior_pack/entities/wither_skeleton.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "is_amphibious": true, "avoid_sun": true, "avoid_water": true, "can_path_over_lava": true } } ], "/vanilla/behavior_pack/entities/wither.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "avoid_water": true } } ], "/vanilla/behavior_pack/entities/wolf.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "avoid_damage_blocks": true } } ], "/vanilla/behavior_pack/entities/zoglin.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "is_amphibious": true, "can_path_over_water": false, "avoid_water": true, "avoid_damage_blocks": true } } ], "/vanilla/behavior_pack/entities/zombie_horse.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "is_amphibious": true, "avoid_water": true } } ], "/vanilla/behavior_pack/entities/zombie_pigman.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "is_amphibious": true, "can_pass_doors": true, "can_open_doors": true, "avoid_water": true, "avoid_portals": true, "can_path_over_lava": true } } ], "/vanilla/behavior_pack/entities/zombie.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "is_amphibious": true, "can_pass_doors": true, "can_walk": true, "can_break_doors": true } } ], "/samples/add_entity_robot/full/robot_example_full_behavior/entities/robot.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "avoid_water": true } } ], "/samples/addon_starter/1_hello_world/behavior_packs/aop_mobs/entities/sheepomelon.behavior.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "avoid_water": true } } ], "/samples/addon_starter/2_entities/behavior_packs/aop_mobs/entities/biceson.behavior.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "avoid_damage_blocks": true } } ], "/samples/addon_starter/2_entities/behavior_packs/aop_mobs/entities/frost_moose.behavior.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "avoid_damage_blocks": true } } ], "/samples/addon_starter/2_entities/behavior_packs/aop_mobs/entities/sheepomelon.behavior.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "avoid_water": true } } ], "/samples/addon_starter/complete/behavior_packs/aop_mobs/entities/biceson.behavior.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "avoid_damage_blocks": true } } ], "/samples/addon_starter/complete/behavior_packs/aop_mobs/entities/frost_moose.behavior.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "avoid_damage_blocks": true } } ], "/samples/addon_starter/complete/behavior_packs/aop_mobs/entities/sheepomelon.behavior.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "avoid_water": true } } ], "/samples/behavior_pack_sample/entities/cow.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "avoid_water": true, "avoid_damage_blocks": true } } ], "/samples/casual_creator/chill_dreams/1_dream_turkey/behavior_packs/mamm_cds/entities/dream_turkey.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "avoid_damage_blocks": true } } ], "/samples/casual_creator/chill_dreams/2_dreams_come_true/behavior_packs/mamm_cds/entities/dream_turkey.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "avoid_damage_blocks": true } } ], "/samples/casual_creator/chill_dreams/complete/behavior_packs/mamm_cds/entities/dream_turkey.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_path_over_water": true, "avoid_damage_blocks": true } } ], "/samples/casual_creator/custom_cat_eliza/behavior_packs/mike_eliz/entities/eliza.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "can_float": true, "avoid_water": true, "avoid_damage_blocks": true } } ], "/samples/casual_creator/gray_wave/behavior_packs/mikeamm_gwve/entities/axe_turret.behavior.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": {} } ], "/samples/casual_creator/gray_wave/behavior_packs/mikeamm_gwve/entities/bow_turret.behavior.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": {} } ], "/samples/casual_creator/gray_wave/behavior_packs/mikeamm_gwve/entities/crossbow_turret.behavior.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": {} } ], "/samples/casual_creator/gray_wave/behavior_packs/mikeamm_gwve/entities/gray_wave_generator.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": {} } ], "/samples/casual_creator/gray_wave/behavior_packs/mikeamm_gwve/entities/gray_wave.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": {} } ], "/samples/casual_creator/gray_wave/behavior_packs/mikeamm_gwve/entities/gray_zombie_leader.behavior.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": { "is_amphibious": true, "can_pass_doors": true, "can_walk": true, "can_break_doors": true } } ], "/samples/casual_creator/gray_wave/behavior_packs/mikeamm_gwve/entities/shbullet_turret.behavior.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": {} } ], "/samples/casual_creator/gray_wave/behavior_packs/mikeamm_gwve/entities/smfireball_turret.behavior.json": [ { "path": "/minecraft:entity/components/minecraft:navigation.walk/", "content": {} } ] }, "id": "minecraft:navigation.walk" }