├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── pull_request_template.md ├── dependabot.yml └── workflows │ ├── compress-json-schemas.yml │ ├── dependabot.yml │ ├── pull-request.yml │ └── release-page.yml ├── .gitignore ├── .npmrc ├── .nvmrc ├── .vscode ├── easy.code-snippets ├── extensions.json ├── schema-validation.json ├── settings.json └── tasks.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Minecraft bedrock json schemas.code-workspace ├── README.md ├── behavior ├── NOTE.md ├── animation_controllers │ └── animation_controller.json ├── animations │ └── animations.json ├── biomes │ └── biomes.json ├── blocks │ └── blocks.json ├── cameras │ └── presets │ │ └── cameras.json ├── dialogue │ └── dialogue.json ├── entities │ └── entities.json ├── feature_rules │ └── feature_rules.json ├── features │ └── features.json ├── functions │ └── tick.json ├── item_catalog │ └── crafting_item_catalog.json ├── items │ └── items.json ├── loot_tables │ └── loot_tables.json ├── recipes │ └── recipes.json ├── spawn_rules │ └── spawn_rules.json ├── trading │ └── trading.json └── worldgen │ ├── jigsaw_structures │ └── jigsaw.json │ ├── processors │ └── processor_list.json │ ├── structure_sets │ └── structure_set.json │ └── template_pools │ └── template_pool.json ├── eslint.config.mjs ├── general ├── NOTE.md ├── manifest.json └── world_x_packs.json ├── jest.config.ts ├── language ├── NOTE.md ├── language_names.json └── languages.json ├── makefile ├── package.json ├── resource ├── NOTE.md ├── animation_controllers │ └── animation_controller.json ├── animations │ └── actor_animation.json ├── atmospherics │ └── atmospherics.json ├── attachables │ └── attachables.json ├── biomes │ └── biomes.json ├── biomes_client.json ├── block_culling │ └── block_culling.json ├── blocks.json ├── color_grading │ └── color_grading.json ├── entity │ └── entity.json ├── fog │ └── fog.json ├── items │ └── items.json ├── lighting │ └── lighting.json ├── materials │ └── materials.json ├── models │ └── entity │ │ └── model_entity.json ├── particles │ └── particles.json ├── pbr │ └── pbr.json ├── point_lights │ └── point_lights.json ├── render_controllers │ └── render_controllers.json ├── shadows │ └── shadows.json ├── sounds.json ├── sounds │ ├── music_definitions.json │ └── sound_definitions.json ├── textures │ ├── flipbook_textures.json │ ├── item_texture.json │ ├── terrain_texture.json │ ├── texture_set.json │ ├── textures_list.json │ └── ui_texture_definition.json ├── ui │ ├── _global_variables.json │ ├── _ui_defs.json │ └── ui.json └── water │ └── water.json ├── scripts ├── format_documents.ps1 └── json.prettierrc.json ├── skinpacks ├── NOTE.md └── skins.json ├── source ├── behavior │ ├── animation_controllers │ │ └── animation_controller.json │ ├── animations │ │ └── animations.json │ ├── biomes │ │ ├── biomes.json │ │ └── format │ │ │ ├── components │ │ │ ├── climate.json │ │ │ ├── creature_spawn_probability.json │ │ │ ├── humidity.json │ │ │ ├── map_tints.json │ │ │ ├── mountain_parameters.json │ │ │ ├── multinoise_generation_rules.json │ │ │ ├── overworld_generation_rules.json │ │ │ ├── overworld_height.json │ │ │ ├── partially_frozen.json │ │ │ ├── replace_biomes.json │ │ │ ├── surface_builder.json │ │ │ ├── surface_material_adjustments.json │ │ │ └── tags.json │ │ │ └── minecraft.biome.json │ ├── blocks │ │ ├── blocks.json │ │ └── format │ │ │ ├── components │ │ │ ├── collision_box.json │ │ │ ├── crafting_table.json │ │ │ ├── custom_components.json │ │ │ ├── destructible_by_explosion.json │ │ │ ├── destructible_by_mining.json │ │ │ ├── destruction_particles.json │ │ │ ├── display_name.json │ │ │ ├── embedded_visual.json │ │ │ ├── entity_fall_on.json │ │ │ ├── flammable.json │ │ │ ├── flower_pottable.json │ │ │ ├── friction.json │ │ │ ├── geometry.json │ │ │ ├── item_visual.json │ │ │ ├── light_dampening.json │ │ │ ├── light_emission.json │ │ │ ├── liquid_detection.json │ │ │ ├── loot.json │ │ │ ├── map_color.json │ │ │ ├── material_instances.json │ │ │ ├── movable.json │ │ │ ├── placement_filter.json │ │ │ ├── precipitation_interactions.json │ │ │ ├── random_offset.json │ │ │ ├── redstone_conductivity.json │ │ │ ├── redstone_producer.json │ │ │ ├── replaceable.json │ │ │ ├── selection_box.json │ │ │ ├── tick.json │ │ │ └── transformation.json │ │ │ ├── minecraft.block.json │ │ │ ├── states │ │ │ ├── enum.json │ │ │ └── integer_range.json │ │ │ └── traits │ │ │ ├── placement_direction.json │ │ │ └── placement_position.json │ ├── cameras │ │ └── presets │ │ │ └── cameras.json │ ├── dialogue │ │ └── dialogue.json │ ├── entities │ │ ├── entities.json │ │ ├── filters │ │ │ ├── filters.json │ │ │ └── filters │ │ │ │ ├── actor_health.json │ │ │ │ ├── all_slots_empty.json │ │ │ │ ├── any_slots_empty.json │ │ │ │ ├── bool_property.json │ │ │ │ ├── clock_time.json │ │ │ │ ├── distance_to_nearest_player.json │ │ │ │ ├── enum_property.json │ │ │ │ ├── float_property.json │ │ │ │ ├── has_ability.json │ │ │ │ ├── has_biome_tag.json │ │ │ │ ├── has_component.json │ │ │ │ ├── has_container_open.json │ │ │ │ ├── has_damage.json │ │ │ │ ├── has_damaged_equipment.json │ │ │ │ ├── has_equipment.json │ │ │ │ ├── has_equipment_tag.json │ │ │ │ ├── has_mob_effect.json │ │ │ │ ├── has_nametag.json │ │ │ │ ├── has_property.json │ │ │ │ ├── has_ranged_weapon.json │ │ │ │ ├── has_silk_touch.json │ │ │ │ ├── has_tag.json │ │ │ │ ├── has_target.json │ │ │ │ ├── has_trade_supply.json │ │ │ │ ├── home_distance.json │ │ │ │ ├── hourly_clock_time.json │ │ │ │ ├── in_block.json │ │ │ │ ├── in_caravan.json │ │ │ │ ├── in_clouds.json │ │ │ │ ├── in_contact_with_water.json │ │ │ │ ├── in_lava.json │ │ │ │ ├── in_nether.json │ │ │ │ ├── in_overworld.json │ │ │ │ ├── in_water.json │ │ │ │ ├── in_water_or_rain.json │ │ │ │ ├── inactivity_timer.json │ │ │ │ ├── int_property.json │ │ │ │ ├── is_altitude.json │ │ │ │ ├── is_avoiding_mobs.json │ │ │ │ ├── is_biome.json │ │ │ │ ├── is_block.json │ │ │ │ ├── is_bound_to_creaking_heart.json │ │ │ │ ├── is_brightness.json │ │ │ │ ├── is_climbing.json │ │ │ │ ├── is_color.json │ │ │ │ ├── is_daytime.json │ │ │ │ ├── is_difficulty.json │ │ │ │ ├── is_family.json │ │ │ │ ├── is_game_rule.json │ │ │ │ ├── is_humid.json │ │ │ │ ├── is_immobile.json │ │ │ │ ├── is_in_village.json │ │ │ │ ├── is_leashed.json │ │ │ │ ├── is_leashed_to.json │ │ │ │ ├── is_mark_variant.json │ │ │ │ ├── is_missing_health.json │ │ │ │ ├── is_moving.json │ │ │ │ ├── is_navigating.json │ │ │ │ ├── is_owner.json │ │ │ │ ├── is_panicking.json │ │ │ │ ├── is_persistent.json │ │ │ │ ├── is_riding.json │ │ │ │ ├── is_riding_self.json │ │ │ │ ├── is_sitting.json │ │ │ │ ├── is_skin_id.json │ │ │ │ ├── is_sleeping.json │ │ │ │ ├── is_sneak_held.json │ │ │ │ ├── is_sneaking.json │ │ │ │ ├── is_snow_covered.json │ │ │ │ ├── is_sprinting.json │ │ │ │ ├── is_target.json │ │ │ │ ├── is_temperature_type.json │ │ │ │ ├── is_temperature_value.json │ │ │ │ ├── is_underground.json │ │ │ │ ├── is_underwater.json │ │ │ │ ├── is_variant.json │ │ │ │ ├── is_vehicle_family.json │ │ │ │ ├── is_visible.json │ │ │ │ ├── is_waterlogged.json │ │ │ │ ├── light_level.json │ │ │ │ ├── moon_intensity.json │ │ │ │ ├── moon_phase.json │ │ │ │ ├── on_ground.json │ │ │ │ ├── on_ladder.json │ │ │ │ ├── owner_distance.json │ │ │ │ ├── random_chance.json │ │ │ │ ├── rider_count.json │ │ │ │ ├── surface_mob.json │ │ │ │ ├── taking_fire_damage.json │ │ │ │ ├── target_distance.json │ │ │ │ ├── trusts.json │ │ │ │ ├── types │ │ │ │ ├── equipment_location.json │ │ │ │ ├── operator.json │ │ │ │ └── subject.json │ │ │ │ ├── weather.json │ │ │ │ ├── weather_at_position.json │ │ │ │ └── y_rotation.json │ │ └── format │ │ │ ├── behaviors │ │ │ ├── admire_item.json │ │ │ ├── avoid_block.json │ │ │ ├── avoid_mob_type.json │ │ │ ├── barter.json │ │ │ ├── beg.json │ │ │ ├── break_door.json │ │ │ ├── breed.json │ │ │ ├── celebrate.json │ │ │ ├── celebrate_survive.json │ │ │ ├── charge_attack.json │ │ │ ├── charge_held_item.json │ │ │ ├── circle_around_anchor.json │ │ │ ├── controlled_by_player.json │ │ │ ├── croak.json │ │ │ ├── defend_trusted_target.json │ │ │ ├── defend_village_target.json │ │ │ ├── delayed_attack.json │ │ │ ├── dig.json │ │ │ ├── door_interact.json │ │ │ ├── dragonchargeplayer.json │ │ │ ├── dragondeath.json │ │ │ ├── dragonflaming.json │ │ │ ├── dragonholdingpattern.json │ │ │ ├── dragonlanding.json │ │ │ ├── dragonscanning.json │ │ │ ├── dragonstrafeplayer.json │ │ │ ├── dragontakeoff.json │ │ │ ├── drink_milk.json │ │ │ ├── drink_potion.json │ │ │ ├── drop_item_for.json │ │ │ ├── eat_block.json │ │ │ ├── eat_carried_item.json │ │ │ ├── eat_mob.json │ │ │ ├── emerge.json │ │ │ ├── equip_item.json │ │ │ ├── explore_outskirts.json │ │ │ ├── fertilize_farm_block.json │ │ │ ├── find_cover.json │ │ │ ├── find_mount.json │ │ │ ├── find_underwater_treasure.json │ │ │ ├── fire_at_target.json │ │ │ ├── flee_sun.json │ │ │ ├── float.json │ │ │ ├── float_tempt.json │ │ │ ├── float_wander.json │ │ │ ├── follow_caravan.json │ │ │ ├── follow_mob.json │ │ │ ├── follow_owner.json │ │ │ ├── follow_parent.json │ │ │ ├── follow_target_captain.json │ │ │ ├── go_and_give_items_to_noteblock.json │ │ │ ├── go_and_give_items_to_owner.json │ │ │ ├── go_home.json │ │ │ ├── guardian_attack.json │ │ │ ├── harvest_farm_block.json │ │ │ ├── hide.json │ │ │ ├── hold_ground.json │ │ │ ├── hurt_by_target.json │ │ │ ├── inspect_bookshelf.json │ │ │ ├── investigate_suspicious_location.json │ │ │ ├── jump_around_target.json │ │ │ ├── jump_to_block.json │ │ │ ├── knockback_roar.json │ │ │ ├── lay_down.json │ │ │ ├── lay_egg.json │ │ │ ├── leap_at_target.json │ │ │ ├── look_at_entity.json │ │ │ ├── look_at_player.json │ │ │ ├── look_at_target.json │ │ │ ├── look_at_trading_player.json │ │ │ ├── make_love.json │ │ │ ├── melee_attack.json │ │ │ ├── melee_box_attack.json │ │ │ ├── mingle.json │ │ │ ├── mount_pathing.json │ │ │ ├── move_around_target.json │ │ │ ├── move_indoors.json │ │ │ ├── move_outdoors.json │ │ │ ├── move_through_village.json │ │ │ ├── move_to_block.json │ │ │ ├── move_to_land.json │ │ │ ├── move_to_lava.json │ │ │ ├── move_to_liquid.json │ │ │ ├── move_to_poi.json │ │ │ ├── move_to_random_block.json │ │ │ ├── move_to_village.json │ │ │ ├── move_to_water.json │ │ │ ├── move_towards_dwelling_restriction.json │ │ │ ├── move_towards_home_restriction.json │ │ │ ├── move_towards_restriction.json │ │ │ ├── move_towards_target.json │ │ │ ├── nap.json │ │ │ ├── nearest_attackable_target.json │ │ │ ├── nearest_prioritized_attackable_target.json │ │ │ ├── ocelot_sit_on_block.json │ │ │ ├── ocelotattack.json │ │ │ ├── offer_flower.json │ │ │ ├── open_door.json │ │ │ ├── owner_hurt_by_target.json │ │ │ ├── owner_hurt_target.json │ │ │ ├── panic.json │ │ │ ├── pet_sleep_with_owner.json │ │ │ ├── pickup_items.json │ │ │ ├── place_block.json │ │ │ ├── play.json │ │ │ ├── play_dead.json │ │ │ ├── player_ride_tamed.json │ │ │ ├── raid_garden.json │ │ │ ├── ram_attack.json │ │ │ ├── random_breach.json │ │ │ ├── random_fly.json │ │ │ ├── random_hover.json │ │ │ ├── random_look_around.json │ │ │ ├── random_look_around_and_sit.json │ │ │ ├── random_search_and_dig.json │ │ │ ├── random_sitting.json │ │ │ ├── random_stroll.json │ │ │ ├── random_swim.json │ │ │ ├── ranged_attack.json │ │ │ ├── receive_love.json │ │ │ ├── restrict_open_door.json │ │ │ ├── restrict_sun.json │ │ │ ├── rise_to_liquid_level.json │ │ │ ├── roar.json │ │ │ ├── roll.json │ │ │ ├── run_around_like_crazy.json │ │ │ ├── scared.json │ │ │ ├── send_event.json │ │ │ ├── share_items.json │ │ │ ├── silverfish_merge_with_stone.json │ │ │ ├── silverfish_wake_up_friends.json │ │ │ ├── skeleton_horse_trap.json │ │ │ ├── sleep.json │ │ │ ├── slime_attack.json │ │ │ ├── slime_float.json │ │ │ ├── slime_keep_on_jumping.json │ │ │ ├── slime_random_direction.json │ │ │ ├── snacking.json │ │ │ ├── sneeze.json │ │ │ ├── sniff.json │ │ │ ├── sonic_boom.json │ │ │ ├── squid_dive.json │ │ │ ├── squid_flee.json │ │ │ ├── squid_idle.json │ │ │ ├── squid_move_away_from_ground.json │ │ │ ├── squid_out_of_water.json │ │ │ ├── stalk_and_pounce_on_target.json │ │ │ ├── stay_near_noteblock.json │ │ │ ├── stay_while_sitting.json │ │ │ ├── stomp_attack.json │ │ │ ├── stomp_turtle_egg.json │ │ │ ├── stroll_towards_village.json │ │ │ ├── summon_entity.json │ │ │ ├── swell.json │ │ │ ├── swim_idle.json │ │ │ ├── swim_up_for_breath.json │ │ │ ├── swim_wander.json │ │ │ ├── swim_with_entity.json │ │ │ ├── swoop_attack.json │ │ │ ├── take_block.json │ │ │ ├── take_flower.json │ │ │ ├── target_when_pushed.json │ │ │ ├── teleport_to_owner.json │ │ │ ├── tempt.json │ │ │ ├── timer_flag.json │ │ │ ├── trade_interest.json │ │ │ ├── trade_with_player.json │ │ │ ├── transport_items.json │ │ │ ├── types │ │ │ │ ├── control_flags.json │ │ │ │ ├── priority.json │ │ │ │ └── speed_multiplier.json │ │ │ ├── vex_copy_owner_target.json │ │ │ ├── vex_random_move.json │ │ │ ├── wither_random_attack_pos_goal.json │ │ │ ├── wither_target_highest_damage.json │ │ │ ├── work.json │ │ │ └── work_composter.json │ │ │ ├── components.json │ │ │ ├── components │ │ │ ├── addrider.json │ │ │ ├── admire_item.json │ │ │ ├── ageable.json │ │ │ ├── ambient_sound_interval.json │ │ │ ├── anger_level.json │ │ │ ├── angry.json │ │ │ ├── annotation.break_door.json │ │ │ ├── annotation.floats_in_liquid.json │ │ │ ├── annotation.open_door.json │ │ │ ├── area_attack.json │ │ │ ├── attack.json │ │ │ ├── attack_cooldown.json │ │ │ ├── attribute.json │ │ │ ├── balloonable.json │ │ │ ├── barter.json │ │ │ ├── block_climber.json │ │ │ ├── block_sensor.json │ │ │ ├── body_rotation_always_follows_head.json │ │ │ ├── body_rotation_blocked.json │ │ │ ├── boostable.json │ │ │ ├── boss.json │ │ │ ├── break_blocks.json │ │ │ ├── breathable.json │ │ │ ├── breedable.json │ │ │ ├── bribeable.json │ │ │ ├── buoyant.json │ │ │ ├── burns_in_daylight.json │ │ │ ├── can_climb.json │ │ │ ├── can_fly.json │ │ │ ├── can_join_raid.json │ │ │ ├── can_power_jump.json │ │ │ ├── cannot_be_attacked.json │ │ │ ├── celebrate_hunt.json │ │ │ ├── collision_box.json │ │ │ ├── color.json │ │ │ ├── color2.json │ │ │ ├── combat_regeneration.json │ │ │ ├── conditional_bandwidth_optimization.json │ │ │ ├── custom_hit_test.json │ │ │ ├── damage_over_time.json │ │ │ ├── damage_sensor.json │ │ │ ├── dash_action.json │ │ │ ├── default_look_angle.json │ │ │ ├── despawn.json │ │ │ ├── dimension_bound.json │ │ │ ├── drying_out_timer.json │ │ │ ├── dweller.json │ │ │ ├── economy_trade_table.json │ │ │ ├── entity_sensor.json │ │ │ ├── environment_sensor.json │ │ │ ├── equip_item.json │ │ │ ├── equipment.json │ │ │ ├── equippable.json │ │ │ ├── exhaustion_values.json │ │ │ ├── experience_reward.json │ │ │ ├── explode.json │ │ │ ├── fall_damage.json │ │ │ ├── fire_immune.json │ │ │ ├── floats_in_liquid.json │ │ │ ├── flocking.json │ │ │ ├── flying_speed.json │ │ │ ├── free_camera_controlled.json │ │ │ ├── friction_modifier.json │ │ │ ├── game_event_movement_tracking.json │ │ │ ├── genetics.json │ │ │ ├── giveable.json │ │ │ ├── ground_offset.json │ │ │ ├── group_size.json │ │ │ ├── grows_crop.json │ │ │ ├── healable.json │ │ │ ├── heartbeat.json │ │ │ ├── hide.json │ │ │ ├── home.json │ │ │ ├── horse.jump_strength.json │ │ │ ├── hurt_on_condition.json │ │ │ ├── hurt_when_wet.json │ │ │ ├── ignore_cannot_be_attacked.json │ │ │ ├── input_ground_controlled.json │ │ │ ├── inside_block_notifier.json │ │ │ ├── insomnia.json │ │ │ ├── instant_despawn.json │ │ │ ├── interact.json │ │ │ ├── inventory.json │ │ │ ├── is_baby.json │ │ │ ├── is_charged.json │ │ │ ├── is_chested.json │ │ │ ├── is_collidable.json │ │ │ ├── is_dyeable.json │ │ │ ├── is_hidden_when_invisible.json │ │ │ ├── is_ignited.json │ │ │ ├── is_illager_captain.json │ │ │ ├── is_pregnant.json │ │ │ ├── is_saddled.json │ │ │ ├── is_shaking.json │ │ │ ├── is_sheared.json │ │ │ ├── is_stackable.json │ │ │ ├── is_stunned.json │ │ │ ├── is_tamed.json │ │ │ ├── item_controllable.json │ │ │ ├── item_hopper.json │ │ │ ├── jump.dynamic.json │ │ │ ├── jump.static.json │ │ │ ├── leashable.json │ │ │ ├── leashable_to.json │ │ │ ├── looked_at.json │ │ │ ├── loot.json │ │ │ ├── managed_wandering_trader.json │ │ │ ├── mark_variant.json │ │ │ ├── mob_effect.json │ │ │ ├── mob_effect_immunity.json │ │ │ ├── movement.amphibious.json │ │ │ ├── movement.basic.json │ │ │ ├── movement.fly.json │ │ │ ├── movement.generic.json │ │ │ ├── movement.glide.json │ │ │ ├── movement.hover.json │ │ │ ├── movement.jump.json │ │ │ ├── movement.skip.json │ │ │ ├── movement.sway.json │ │ │ ├── movement_sound_distance_offset.json │ │ │ ├── nameable.json │ │ │ ├── navigation.climb.json │ │ │ ├── navigation.float.json │ │ │ ├── navigation.fly.json │ │ │ ├── navigation.generic.json │ │ │ ├── navigation.hover.json │ │ │ ├── navigation.swim.json │ │ │ ├── navigation.walk.json │ │ │ ├── npc.json │ │ │ ├── on_death.json │ │ │ ├── on_friendly_anger.json │ │ │ ├── on_hurt.json │ │ │ ├── on_hurt_by_player.json │ │ │ ├── on_ignite.json │ │ │ ├── on_start_landing.json │ │ │ ├── on_start_takeoff.json │ │ │ ├── on_target_acquired.json │ │ │ ├── on_target_escape.json │ │ │ ├── on_wake_with_owner.json │ │ │ ├── out_of_control.json │ │ │ ├── peek.json │ │ │ ├── persistent.json │ │ │ ├── physics.json │ │ │ ├── player.exhaustion.json │ │ │ ├── player.experience.json │ │ │ ├── player.level.json │ │ │ ├── player.saturation.json │ │ │ ├── preferred_path.json │ │ │ ├── projectile.json │ │ │ ├── push_through.json │ │ │ ├── pushable.json │ │ │ ├── raid_trigger.json │ │ │ ├── rail_movement.json │ │ │ ├── rail_sensor.json │ │ │ ├── ravager_blocked.json │ │ │ ├── reflect_projectiles.json │ │ │ ├── remove_in_peaceful.json │ │ │ ├── renders_when_invisible.json │ │ │ ├── rideable.json │ │ │ ├── rotation_axis_aligned.json │ │ │ ├── scaffolding_climber.json │ │ │ ├── scale.json │ │ │ ├── scale_by_age.json │ │ │ ├── scheduler.json │ │ │ ├── shareables.json │ │ │ ├── shooter.json │ │ │ ├── sittable.json │ │ │ ├── skin_id.json │ │ │ ├── sound_volume.json │ │ │ ├── spawn_entity.json │ │ │ ├── spell_effects.json │ │ │ ├── strength.json │ │ │ ├── suspect_tracking.json │ │ │ ├── tameable.json │ │ │ ├── tamemount.json │ │ │ ├── target_nearby_sensor.json │ │ │ ├── teleport.json │ │ │ ├── tick_world.json │ │ │ ├── timer.json │ │ │ ├── trade_resupply.json │ │ │ ├── trade_table.json │ │ │ ├── trail.json │ │ │ ├── transformation.json │ │ │ ├── transient.json │ │ │ ├── trust.json │ │ │ ├── trusting.json │ │ │ ├── type_family.json │ │ │ ├── variable_max_auto_step.json │ │ │ ├── variant.json │ │ │ ├── vertical_movement_action.json │ │ │ ├── vibration_damper.json │ │ │ ├── vibration_listener.json │ │ │ ├── walk_animation_speed.json │ │ │ ├── wants_jockey.json │ │ │ └── water_movement.json │ │ │ ├── events.json │ │ │ ├── minecraft.entity.json │ │ │ └── types │ │ │ ├── entity_types.json │ │ │ ├── event.json │ │ │ ├── event_object.json │ │ │ ├── range_number_type.json │ │ │ └── trigger.json │ ├── feature_rules │ │ ├── feature_rules.json │ │ └── format │ │ │ └── minecraft.feature_rules.json │ ├── features │ │ ├── features.json │ │ ├── features │ │ │ ├── minecraft.aggregate_feature.json │ │ │ ├── minecraft.cave_carver_feature.json │ │ │ ├── minecraft.fossil_feature.json │ │ │ ├── minecraft.geode_feature.json │ │ │ ├── minecraft.growing_plant_feature.json │ │ │ ├── minecraft.multiface_feature.json │ │ │ ├── minecraft.nether_cave_carver_feature.json │ │ │ ├── minecraft.ore_feature.json │ │ │ ├── minecraft.partially_exposed_blob_feature.json │ │ │ ├── minecraft.scatter_feature.json │ │ │ ├── minecraft.search_feature.json │ │ │ ├── minecraft.sequence_feature.json │ │ │ ├── minecraft.single_block_feature.json │ │ │ ├── minecraft.snap_to_surface_feature.json │ │ │ ├── minecraft.structure_template_feature.json │ │ │ ├── minecraft.surface_relative_threshold_feature.json │ │ │ ├── minecraft.tree_feature.json │ │ │ ├── minecraft.underwater_cave_carver_feature.json │ │ │ ├── minecraft.vegetation_patch_feature.json │ │ │ └── minecraft.weighted_random_feature.json │ │ └── types │ │ │ ├── chance_information.json │ │ │ └── description.json │ ├── functions │ │ └── tick.json │ ├── item_catalog │ │ ├── crafting_item_catalog.json │ │ └── format │ │ │ └── crafting_items_catalog.json │ ├── items │ │ ├── format │ │ │ ├── components │ │ │ │ ├── allow_off_hand.json │ │ │ │ ├── block_placer.json │ │ │ │ ├── bundle_interaction.json │ │ │ │ ├── can_destroy_in_creative.json │ │ │ │ ├── compostable.json │ │ │ │ ├── cooldown.json │ │ │ │ ├── custom_components.json │ │ │ │ ├── damage.json │ │ │ │ ├── damage_absorption.json │ │ │ │ ├── digger.json │ │ │ │ ├── display_name.json │ │ │ │ ├── durability.json │ │ │ │ ├── durability_sensor.json │ │ │ │ ├── dyeable.json │ │ │ │ ├── enchantable.json │ │ │ │ ├── entity_placer.json │ │ │ │ ├── fire_resistant.json │ │ │ │ ├── food.json │ │ │ │ ├── fuel.json │ │ │ │ ├── glint.json │ │ │ │ ├── hand_equipped.json │ │ │ │ ├── hover_text_color.json │ │ │ │ ├── icon.json │ │ │ │ ├── interact_button.json │ │ │ │ ├── liquid_clipped.json │ │ │ │ ├── max_stack_size.json │ │ │ │ ├── projectile.json │ │ │ │ ├── rarity.json │ │ │ │ ├── record.json │ │ │ │ ├── repairable.json │ │ │ │ ├── shooter.json │ │ │ │ ├── should_despawn.json │ │ │ │ ├── stacked_by_data.json │ │ │ │ ├── storage_item.json │ │ │ │ ├── storage_weight_limit.json │ │ │ │ ├── storage_weight_modifier.json │ │ │ │ ├── swing_duration.json │ │ │ │ ├── tags.json │ │ │ │ ├── throwable.json │ │ │ │ ├── use_animation.json │ │ │ │ ├── use_modifiers.json │ │ │ │ └── wearable.json │ │ │ └── minecraft.item.json │ │ └── items.json │ ├── loot_tables │ │ ├── conditions.json │ │ ├── conditions │ │ │ ├── bool_property.json │ │ │ ├── damaged_by_entity.json │ │ │ ├── entity_killed.json │ │ │ ├── enum_property.json │ │ │ ├── float_property.json │ │ │ ├── has_mark_variant.json │ │ │ ├── has_property.json │ │ │ ├── has_variant.json │ │ │ ├── int_property.json │ │ │ ├── is_baby.json │ │ │ ├── killed_by_entity.json │ │ │ ├── killed_by_player.json │ │ │ ├── killed_by_player_or_pets.json │ │ │ ├── match_tool.json │ │ │ ├── passenger_of_entity.json │ │ │ ├── random_chance.json │ │ │ ├── random_chance_with_looting.json │ │ │ ├── random_difficulty_chance.json │ │ │ └── random_regional_difficulty_chance.json │ │ ├── functions.json │ │ ├── functions │ │ │ ├── enchant_book_for_trading.json │ │ │ ├── enchant_random_gear.json │ │ │ ├── enchant_randomly.json │ │ │ ├── enchant_with_levels.json │ │ │ ├── exploration_map.json │ │ │ ├── fill_container.json │ │ │ ├── furnace_smelt.json │ │ │ ├── looting_enchant.json │ │ │ ├── random_aux_value.json │ │ │ ├── random_block_state.json │ │ │ ├── random_dye.json │ │ │ ├── set_actor_id.json │ │ │ ├── set_armor_trim.json │ │ │ ├── set_banner_details.json │ │ │ ├── set_book_contents.json │ │ │ ├── set_count.json │ │ │ ├── set_damage.json │ │ │ ├── set_data.json │ │ │ ├── set_data_from_color_index.json │ │ │ ├── set_lore.json │ │ │ ├── set_name.json │ │ │ ├── set_ominous_bottle_amplifier.json │ │ │ ├── set_potion.json │ │ │ ├── set_stew_effect.json │ │ │ ├── specific_enchants.json │ │ │ └── trader_material_type.json │ │ └── loot_tables.json │ ├── recipes │ │ ├── recipes.json │ │ └── types │ │ │ ├── base types │ │ │ ├── definition.json │ │ │ ├── item.json │ │ │ ├── tags.json │ │ │ └── unlock.json │ │ │ ├── furnace.json │ │ │ ├── recipe_brewing_container.json │ │ │ ├── recipe_brewing_mix.json │ │ │ ├── recipe_shaped.json │ │ │ ├── recipe_shapeless.json │ │ │ └── recipe_smithing_transform.json │ ├── spawn_rules │ │ ├── components │ │ │ ├── biome_filter.json │ │ │ ├── brightness_filter.json │ │ │ ├── delay_filter.json │ │ │ ├── density_limit.json │ │ │ ├── difficulty_filter.json │ │ │ ├── disallow_spawns_in_bubble.json │ │ │ ├── distance_filter.json │ │ │ ├── height_filter.json │ │ │ ├── herd.json │ │ │ ├── mob_event_filter.json │ │ │ ├── permute_type.json │ │ │ ├── player_in_village_filter.json │ │ │ ├── spawn_event.json │ │ │ ├── spawns_above_block_filter.json │ │ │ ├── spawns_lava.json │ │ │ ├── spawns_on_block_filter.json │ │ │ ├── spawns_on_block_prevented_filter.json │ │ │ ├── spawns_on_surface.json │ │ │ ├── spawns_underground.json │ │ │ ├── spawns_underwater.json │ │ │ ├── weight.json │ │ │ └── world_age_filter.json │ │ └── spawn_rules.json │ ├── trading │ │ └── trading.json │ └── worldgen │ │ ├── jigsaw_structures │ │ ├── format │ │ │ ├── height_provider.json │ │ │ ├── height_provider │ │ │ │ ├── constant.json │ │ │ │ └── uniform.json │ │ │ ├── minecraft.jigsaw.json │ │ │ ├── pool_aliases.json │ │ │ ├── pool_aliases │ │ │ │ ├── direct.json │ │ │ │ └── random.json │ │ │ └── vertical_anchor.json │ │ └── jigsaw.json │ │ ├── processors │ │ ├── format │ │ │ ├── minecraft.processor_list.json │ │ │ ├── processors.json │ │ │ └── processors │ │ │ │ ├── minecraft.block_ignore.json │ │ │ │ ├── minecraft.capped.json │ │ │ │ ├── minecraft.protected_blocks.json │ │ │ │ └── minecraft.rule.json │ │ └── processor_list.json │ │ ├── structure_sets │ │ ├── format │ │ │ └── minecraft.structure_set.json │ │ └── structure_set.json │ │ └── template_pools │ │ ├── format │ │ └── minecraft.template_pool.json │ │ └── template_pool.json ├── compress_specification.json ├── general │ ├── UUIDV4.json │ ├── Version.json │ ├── block │ │ ├── identifier.json │ │ └── reference.json │ ├── block_culling │ │ └── identifier.json │ ├── block_definition.json │ ├── blocks_item.json │ ├── cameras │ │ └── identifier.json │ ├── entity │ │ ├── damage_source.json │ │ └── identifier.json │ ├── feature │ │ └── identifier.json │ ├── fog │ │ └── identifier.json │ ├── format_version.json │ ├── identifier.json │ ├── int_or_range.json │ ├── item │ │ ├── descriptor.json │ │ └── identifier.json │ ├── loot_table │ │ └── identifier.json │ ├── manifest.json │ ├── manifest │ │ ├── manifest.1.json │ │ ├── manifest.2.json │ │ └── manifest.3.json │ ├── particle │ │ └── identifier.json │ ├── rawtext │ │ └── rawtext.json │ ├── semver.json │ ├── sound_event.json │ ├── vanilla │ │ ├── creative_category.json │ │ ├── effect.json │ │ ├── material.json │ │ └── tint_methods.json │ ├── vectors │ │ ├── integer2.json │ │ ├── integer2OrValue.json │ │ ├── integer3.json │ │ ├── number2.json │ │ ├── number2OrValue.json │ │ └── number3.json │ ├── volume │ │ └── identifier.json │ └── world_x_packs.json ├── language │ ├── language_names.json │ └── languages.json ├── molang │ ├── arraynumber3.json │ ├── boolean.json │ ├── number.json │ └── string.json ├── resource │ ├── animation_controllers │ │ └── animation_controller.json │ ├── animations │ │ └── actor_animation.json │ ├── atmospherics │ │ └── atmospherics.json │ ├── attachables │ │ ├── 1.10.0 │ │ │ └── attachables.json │ │ ├── 1.8.0 │ │ │ └── attachables.json │ │ └── attachables.json │ ├── biomes │ │ ├── biomes.json │ │ └── format │ │ │ ├── components │ │ │ ├── ambient_sounds.json │ │ │ ├── atmosphere_identifier.json │ │ │ ├── biome_music.json │ │ │ ├── color_grading_identifier.json │ │ │ ├── dry_foliage_color.json │ │ │ ├── fog_appearance.json │ │ │ ├── foliage_appearance.json │ │ │ ├── grass_appearance.json │ │ │ ├── lighting_identifier.json │ │ │ ├── precipitation.json │ │ │ ├── sky_color.json │ │ │ ├── water_appearance.json │ │ │ └── water_identifier.json │ │ │ └── minecraft.client_biome.json │ ├── biomes_client.json │ ├── block_culling │ │ └── block_culling.json │ ├── blocks.json │ ├── color_grading │ │ └── color_grading.json │ ├── entity │ │ ├── 1.10.0 │ │ │ └── entity.json │ │ ├── 1.8.0 │ │ │ └── entity.json │ │ └── entity.json │ ├── fog │ │ └── fog.json │ ├── items │ │ ├── 1.10.0 │ │ │ └── items.json │ │ └── items.json │ ├── lighting │ │ ├── format │ │ │ └── color.json │ │ └── lighting.json │ ├── local_lighting │ │ └── local_lighting.json │ ├── materials │ │ └── materials.json │ ├── models │ │ └── entity │ │ │ ├── 1.16.0 │ │ │ └── model_entity.json │ │ │ ├── 1.21.0 │ │ │ └── model_entity.json │ │ │ ├── 1.8.0 │ │ │ └── model_entity.json │ │ │ └── model_entity.json │ ├── particles │ │ ├── components │ │ │ ├── emitter_initialization.json │ │ │ ├── emitter_lifetime_events.json │ │ │ ├── emitter_lifetime_expression.json │ │ │ ├── emitter_lifetime_looping.json │ │ │ ├── emitter_lifetime_once.json │ │ │ ├── emitter_local_space.json │ │ │ ├── emitter_rate_instant.json │ │ │ ├── emitter_rate_manual.json │ │ │ ├── emitter_rate_steady.json │ │ │ ├── emitter_shape_box.json │ │ │ ├── emitter_shape_custom.json │ │ │ ├── emitter_shape_disc.json │ │ │ ├── emitter_shape_entity_aabb.json │ │ │ ├── emitter_shape_point.json │ │ │ ├── emitter_shape_sphere.json │ │ │ ├── particle_appearance_billboard.json │ │ │ ├── particle_appearance_lighting.json │ │ │ ├── particle_appearance_tinting.json │ │ │ ├── particle_expire_if_in_blocks.json │ │ │ ├── particle_expire_if_not_in_blocks.json │ │ │ ├── particle_initial_speed.json │ │ │ ├── particle_initial_spin.json │ │ │ ├── particle_initialization.json │ │ │ ├── particle_kill_plane.json │ │ │ ├── particle_lifetime_events.json │ │ │ ├── particle_lifetime_expression.json │ │ │ ├── particle_motion_collision.json │ │ │ ├── particle_motion_dynamic.json │ │ │ └── particle_motion_parametric.json │ │ └── particles.json │ ├── pbr │ │ └── global.json │ ├── render_controllers │ │ └── render_controllers.json │ ├── shadows │ │ └── global.json │ ├── sounds.json │ ├── sounds │ │ ├── music_definitions.json │ │ └── sound_definitions.json │ ├── textures │ │ ├── aseprite_flipbook.json │ │ ├── flipbook_textures.json │ │ ├── item_texture.json │ │ ├── nine_slice.json │ │ ├── terrain_texture.json │ │ ├── texture_set.json │ │ ├── textures_list.json │ │ └── ui_texture_definition.json │ ├── ui │ │ ├── _global_variables.json │ │ ├── _ui_defs.json │ │ ├── elements │ │ │ └── properties │ │ │ │ ├── allow_clipping.json │ │ │ │ ├── allow_debug_missing_texture.json │ │ │ │ ├── allow_scroll_even_when_content_fits.json │ │ │ │ ├── alpha.json │ │ │ │ ├── always_handle_pointer.json │ │ │ │ ├── always_handle_scrolling.json │ │ │ │ ├── always_listen_to_input.json │ │ │ │ ├── always_rotate.json │ │ │ │ ├── anchor_from.json │ │ │ │ ├── anchor_to.json │ │ │ │ ├── anim_type.json │ │ │ │ ├── animation_reset_name.json │ │ │ │ ├── anims.json │ │ │ │ ├── background_control.json │ │ │ │ ├── background_hover_control.json │ │ │ │ ├── backup_font_type.json │ │ │ │ ├── bilinear.json │ │ │ │ ├── bindings.json │ │ │ │ ├── button_mappings.json │ │ │ │ ├── cache_screen.json │ │ │ │ ├── camera_tilt_degrees.json │ │ │ │ ├── checked_control.json │ │ │ │ ├── checked_hover_control.json │ │ │ │ ├── checked_locked_control.json │ │ │ │ ├── checked_locked_hover_control.json │ │ │ │ ├── clip_direction.json │ │ │ │ ├── clip_pixelperfect.json │ │ │ │ ├── clips_children.json │ │ │ │ ├── close_on_player_hurt.json │ │ │ │ ├── collection_index.json │ │ │ │ ├── collection_name.json │ │ │ │ ├── color.json │ │ │ │ ├── constrain_to_rect.json │ │ │ │ ├── consume_hover_events.json │ │ │ │ ├── contained.json │ │ │ │ ├── control_ids.json │ │ │ │ ├── control_name.json │ │ │ │ ├── default_control.json │ │ │ │ ├── default_focus_precedence.json │ │ │ │ ├── destroy_at_end.json │ │ │ │ ├── disable_anim_fast_forward.json │ │ │ │ ├── draggable.json │ │ │ │ ├── dropdown_area.json │ │ │ │ ├── dropdown_content_control.json │ │ │ │ ├── dropdown_name.json │ │ │ │ ├── duration.json │ │ │ │ ├── easing.json │ │ │ │ ├── enable_directional_toggling.json │ │ │ │ ├── enable_profanity_filter.json │ │ │ │ ├── enabled.json │ │ │ │ ├── enabled_newline.json │ │ │ │ ├── end_event.json │ │ │ │ ├── factory.json │ │ │ │ ├── fill.json │ │ │ │ ├── focus_change_down.json │ │ │ │ ├── focus_change_left.json │ │ │ │ ├── focus_change_right.json │ │ │ │ ├── focus_change_up.json │ │ │ │ ├── focus_container.json │ │ │ │ ├── focus_enabled.json │ │ │ │ ├── focus_identifier.json │ │ │ │ ├── focus_magnet_enabled.json │ │ │ │ ├── focus_mapping.json │ │ │ │ ├── focus_navigation_mode_down.json │ │ │ │ ├── focus_navigation_mode_left.json │ │ │ │ ├── focus_navigation_mode_right.json │ │ │ │ ├── focus_navigation_mode_up.json │ │ │ │ ├── focus_wrap_enabled.json │ │ │ │ ├── font_scale_factor.json │ │ │ │ ├── font_size.json │ │ │ │ ├── font_type.json │ │ │ │ ├── force_render_below.json │ │ │ │ ├── force_texture_reload.json │ │ │ │ ├── fps.json │ │ │ │ ├── frame_count.json │ │ │ │ ├── frame_step.json │ │ │ │ ├── from.json │ │ │ │ ├── grid_dimension_binding.json │ │ │ │ ├── grid_dimensions.json │ │ │ │ ├── grid_item_template.json │ │ │ │ ├── grid_position.json │ │ │ │ ├── grid_rescaling_type.json │ │ │ │ ├── handle_deselect.json │ │ │ │ ├── handle_select.json │ │ │ │ ├── hide_hyphen.json │ │ │ │ ├── hover_control.json │ │ │ │ ├── hover_enabled.json │ │ │ │ ├── ignored.json │ │ │ │ ├── images.json │ │ │ │ ├── indent_control.json │ │ │ │ ├── inherit_max_sibling_height.json │ │ │ │ ├── inherit_max_sibling_width.json │ │ │ │ ├── initial_uv.json │ │ │ │ ├── is_modal.json │ │ │ │ ├── is_showing_menu.json │ │ │ │ ├── jump_to_bottom_on_update.json │ │ │ │ ├── keep_ratio.json │ │ │ │ ├── layer.json │ │ │ │ ├── line_padding.json │ │ │ │ ├── localize.json │ │ │ │ ├── locked_control.json │ │ │ │ ├── low_frequency_rendering.json │ │ │ │ ├── max_length.json │ │ │ │ ├── max_size.json │ │ │ │ ├── maximum_grid_items.json │ │ │ │ ├── min_size.json │ │ │ │ ├── modal.json │ │ │ │ ├── next.json │ │ │ │ ├── offset.json │ │ │ │ ├── orientation.json │ │ │ │ ├── place_holder_control.json │ │ │ │ ├── play_event.json │ │ │ │ ├── pressed_control.json │ │ │ │ ├── prevent_touch_input.json │ │ │ │ ├── primary_color.json │ │ │ │ ├── priority.json │ │ │ │ ├── progress_control.json │ │ │ │ ├── progress_hover_control.json │ │ │ │ ├── propagate_alpha.json │ │ │ │ ├── property_bag.json │ │ │ │ ├── radio_toggle_group.json │ │ │ │ ├── render_game_behind.json │ │ │ │ ├── render_only_when_topmost.json │ │ │ │ ├── renderer.json │ │ │ │ ├── reset_event.json │ │ │ │ ├── reset_on_focus_lost.json │ │ │ │ ├── reversible.json │ │ │ │ ├── rotate_speed.json │ │ │ │ ├── scale_from_starting_alpha.json │ │ │ │ ├── screen_draws_last.json │ │ │ │ ├── screen_not_flushable.json │ │ │ │ ├── scroll_box_and_track_panel.json │ │ │ │ ├── scroll_content.json │ │ │ │ ├── scroll_speed.json │ │ │ │ ├── scroll_view_port.json │ │ │ │ ├── scrollbar_box.json │ │ │ │ ├── scrollbar_touch_button.json │ │ │ │ ├── scrollbar_track.json │ │ │ │ ├── scrollbar_track_button.json │ │ │ │ ├── send_telemetry.json │ │ │ │ ├── shadow.json │ │ │ │ ├── should_steal_mouse.json │ │ │ │ ├── size.json │ │ │ │ ├── slider_box_control.json │ │ │ │ ├── slider_collection_name.json │ │ │ │ ├── slider_deselected_button.json │ │ │ │ ├── slider_direction.json │ │ │ │ ├── slider_name.json │ │ │ │ ├── slider_select_on_hover.json │ │ │ │ ├── slider_selected_button.json │ │ │ │ ├── slider_small_decrease_button.json │ │ │ │ ├── slider_small_increase_button.json │ │ │ │ ├── slider_steps.json │ │ │ │ ├── slider_track_button.json │ │ │ │ ├── sound_name.json │ │ │ │ ├── sound_pitch.json │ │ │ │ ├── sound_volume.json │ │ │ │ ├── text.json │ │ │ │ ├── text_alignment.json │ │ │ │ ├── text_box_name.json │ │ │ │ ├── text_control.json │ │ │ │ ├── text_edit_box_grid_collection_name.json │ │ │ │ ├── text_labels.json │ │ │ │ ├── text_type.json │ │ │ │ ├── texture.json │ │ │ │ ├── texture_file_system.json │ │ │ │ ├── tiled.json │ │ │ │ ├── to.json │ │ │ │ ├── toggle_default_state.json │ │ │ │ ├── toggle_grid_collection_name.json │ │ │ │ ├── toggle_group_default_selected.json │ │ │ │ ├── toggle_group_forced_index.json │ │ │ │ ├── toggle_name.json │ │ │ │ ├── toggle_off_button.json │ │ │ │ ├── toggle_on_button.json │ │ │ │ ├── touch_mode.json │ │ │ │ ├── tts │ │ │ │ ├── control_header.json │ │ │ │ ├── control_type_order_priority.json │ │ │ │ ├── ignore_count.json │ │ │ │ ├── ignore_subsections.json │ │ │ │ ├── index_priority.json │ │ │ │ ├── inherit_siblings.json │ │ │ │ ├── name.json │ │ │ │ ├── override_control_value.json │ │ │ │ ├── section_header.json │ │ │ │ ├── toggle_off.json │ │ │ │ ├── toggle_on.json │ │ │ │ ├── value_changed.json │ │ │ │ └── value_order_priority.json │ │ │ │ ├── ttsSectionContainer.json │ │ │ │ ├── type.json │ │ │ │ ├── unchecked_control.json │ │ │ │ ├── unchecked_hover_control.json │ │ │ │ ├── unchecked_locked_control.json │ │ │ │ ├── unchecked_locked_hover_control.json │ │ │ │ ├── use_anchored_offset.json │ │ │ │ ├── use_child_anchors.json │ │ │ │ ├── use_custom_pocket_toast.json │ │ │ │ ├── use_last_focus.json │ │ │ │ ├── uv.json │ │ │ │ ├── uv_size.json │ │ │ │ ├── variables.json │ │ │ │ ├── virtual_keyboard_buffer_control.json │ │ │ │ ├── visible.json │ │ │ │ └── zip_folder.json │ │ ├── general │ │ │ ├── anchor.json │ │ │ ├── animation_reference.json │ │ │ ├── any.json │ │ │ ├── boolean.json │ │ │ ├── color.json │ │ │ ├── integer.json │ │ │ ├── item_ref.json │ │ │ ├── navigation_mode.json │ │ │ ├── number.json │ │ │ ├── size.json │ │ │ ├── string.json │ │ │ ├── texture_file_path.json │ │ │ ├── variable.json │ │ │ ├── variables.json │ │ │ ├── vec2.json │ │ │ └── vec4.json │ │ └── ui.json │ └── water │ │ └── water.json └── skinpacks │ └── skins.json ├── src └── main.ts ├── test ├── files │ ├── correct │ │ ├── data_bp │ │ │ ├── animation_controllers │ │ │ │ ├── chicken.controller.json │ │ │ │ └── sheep.walk.controller.json │ │ │ ├── animations │ │ │ │ └── sheep.run.animation.json │ │ │ ├── cameras │ │ │ │ └── presets │ │ │ │ │ └── examples.json │ │ │ ├── entities │ │ │ │ ├── behavior_tempt.json │ │ │ │ ├── dragon.entity.bp.json │ │ │ │ ├── dragon_born.entity.bp.json │ │ │ │ ├── equippable.json │ │ │ │ ├── example.chicken.json │ │ │ │ ├── sheep.entity.bp.json │ │ │ │ └── sheep.json │ │ │ ├── feature_rules │ │ │ │ ├── aggregate_feature_placement.json │ │ │ │ ├── beards_and_shavers_feature_placement.json │ │ │ │ ├── cave_carver_feature_placement.json │ │ │ │ ├── conditional_list_feature_placement.json │ │ │ │ ├── geode_feature_placement.json │ │ │ │ ├── growing_plant_feature_placement.json │ │ │ │ ├── hell_cave_carver_feature_placement.json │ │ │ │ ├── multiface_feature_placement.json │ │ │ │ ├── ore_feature_placement.json │ │ │ │ ├── rect_layout_feature_placement.json │ │ │ │ ├── scan_surface_feature_placement.json │ │ │ │ ├── scatter_feature_placement.json │ │ │ │ ├── search_feature_placement.json │ │ │ │ ├── sequence_feature_placement.json │ │ │ │ ├── tree_feature_placement.json │ │ │ │ ├── underwater_cave_carver_feature_placement.json │ │ │ │ ├── vegetation_patch_feature_placement.json │ │ │ │ └── weighted_random_feature_placement.json │ │ │ ├── features │ │ │ │ ├── aggregate_feature.json │ │ │ │ ├── aggregate_feature_obsidian.json │ │ │ │ ├── aggregate_feature_planks.json │ │ │ │ ├── beards_and_shavers_feature_obsidian.json │ │ │ │ ├── cave_carver_feature.json │ │ │ │ ├── conditional_list_feature_obsidian.json │ │ │ │ ├── geode_feature.json │ │ │ │ ├── growing_plant_feature.json │ │ │ │ ├── multiface_feature.json │ │ │ │ ├── multiface_feature_obsidian.json │ │ │ │ ├── ore_feature.json │ │ │ │ ├── rect_layout_feature_obsidian.json │ │ │ │ ├── rect_layout_feature_planks.json │ │ │ │ ├── scan_surface_feature_obsidian.json │ │ │ │ ├── scatter_feature_obsidian.json │ │ │ │ ├── search_feature.json │ │ │ │ ├── search_feature_obsidian.json │ │ │ │ ├── sequence_feature.json │ │ │ │ ├── sequence_feature_planks.json │ │ │ │ ├── structure_feature.json │ │ │ │ ├── tree_feature.json │ │ │ │ ├── underwater_cave_carver_feature.json │ │ │ │ ├── vegetation_patch_feature.json │ │ │ │ ├── vegetation_patch_feature_obsidian.json │ │ │ │ ├── weighted_random_feature.json │ │ │ │ ├── weighted_random_feature_obsidian.json │ │ │ │ └── weighted_random_feature_planks.json │ │ │ ├── functions │ │ │ │ └── tick.json │ │ │ ├── items │ │ │ │ ├── master_block.item.json │ │ │ │ ├── test.item.json │ │ │ │ ├── test1.item.json │ │ │ │ └── test2.item.json │ │ │ ├── loot_tables │ │ │ │ ├── books │ │ │ │ │ └── journal1.loot.json │ │ │ │ ├── enchant_test.json │ │ │ │ └── master_blockloot.json │ │ │ ├── manifest.json │ │ │ ├── pack_icon.png │ │ │ ├── structures │ │ │ │ └── structure_features │ │ │ │ │ └── structure.mcstructure │ │ │ ├── texts │ │ │ │ └── languages.json │ │ │ └── trading │ │ │ │ └── master_block.trades.json │ │ ├── data_rp │ │ │ ├── animation_controllers │ │ │ │ └── sheep.walk.controller.json │ │ │ ├── animations │ │ │ │ └── sheep.walk.animation.json │ │ │ ├── attachables │ │ │ │ └── master_block.hat.json │ │ │ ├── biomes_client.json │ │ │ ├── blocks.json │ │ │ ├── entities │ │ │ │ └── sheep.geo.json │ │ │ ├── entity │ │ │ │ ├── dragon_born.entity.json │ │ │ │ ├── sheep.entity.json │ │ │ │ └── sheepentity.json │ │ │ ├── manifest.json │ │ │ ├── sounds.json │ │ │ ├── sounds │ │ │ │ ├── music_definitions.json │ │ │ │ └── sound_definitions.json │ │ │ ├── texts │ │ │ │ └── languages.json │ │ │ ├── textures │ │ │ │ ├── flipbook_textures.json │ │ │ │ ├── item_texture.json │ │ │ │ └── terrain_texture.json │ │ │ └── ui │ │ │ │ ├── _global_variables.json │ │ │ │ └── _ui_defs.json │ │ ├── manifest.json │ │ ├── world_behavior_packs.json │ │ └── world_resource_packs.json │ ├── examples.code-workspace │ └── incorrect │ │ ├── data2_bp │ │ └── manifest.json │ │ ├── data_bp │ │ └── manifest.json │ │ ├── data_rp │ │ ├── animations │ │ │ └── sheep.walk.animation.json │ │ ├── attachables │ │ │ └── master_block.hat.json │ │ ├── biomes_client.json │ │ ├── blocks.json │ │ ├── entities │ │ │ └── sheep.geo.json │ │ ├── entity │ │ │ ├── dragon_born.entity.json │ │ │ ├── sheep.entity.json │ │ │ └── sheepentity.json │ │ ├── manifest.json │ │ ├── sounds.json │ │ ├── sounds │ │ │ ├── music_definitions.json │ │ │ └── sound_definitions.json │ │ ├── texts │ │ │ └── languages.json │ │ └── textures │ │ │ ├── flipbook_textures.json │ │ │ ├── item_texture.json │ │ │ └── terrain_texture.json │ │ ├── manifest.json │ │ ├── world_behavior_packs.json │ │ └── world_resource_packs.json └── src │ ├── compress-specification.test.ts │ ├── files │ ├── correct.test.ts │ └── incorrect.test.ts │ ├── github.ts │ ├── schema-tester.ts │ ├── utillity.test.ts │ ├── utillity.ts │ └── validator.test.ts ├── tools └── table to json schema.xlsm ├── tsconfig.json ├── vscode-settings.json └── worldgen ├── jigsaw_structures └── jigsaw.json ├── processors └── processor_list.json ├── structure_sets └── structure_set.json └── template_pools └── template_pool.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * Blockception/oss-maintainers 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/.github/ISSUE_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/compress-json-schemas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/.github/workflows/compress-json-schemas.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/.github/workflows/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/.github/workflows/pull-request.yml -------------------------------------------------------------------------------- /.github/workflows/release-page.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/.github/workflows/release-page.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | //registry.npmjs.org/:_authToken=${NPM_TOKEN} -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v24 -------------------------------------------------------------------------------- /.vscode/easy.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/.vscode/easy.code-snippets -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/schema-validation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/.vscode/schema-validation.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/LICENSE -------------------------------------------------------------------------------- /Minecraft bedrock json schemas.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/Minecraft bedrock json schemas.code-workspace -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/README.md -------------------------------------------------------------------------------- /behavior/NOTE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/behavior/NOTE.md -------------------------------------------------------------------------------- /behavior/animation_controllers/animation_controller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/behavior/animation_controllers/animation_controller.json -------------------------------------------------------------------------------- /behavior/animations/animations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/behavior/animations/animations.json -------------------------------------------------------------------------------- /behavior/biomes/biomes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/behavior/biomes/biomes.json -------------------------------------------------------------------------------- /behavior/blocks/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/behavior/blocks/blocks.json -------------------------------------------------------------------------------- /behavior/cameras/presets/cameras.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/behavior/cameras/presets/cameras.json -------------------------------------------------------------------------------- /behavior/dialogue/dialogue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/behavior/dialogue/dialogue.json -------------------------------------------------------------------------------- /behavior/entities/entities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/behavior/entities/entities.json -------------------------------------------------------------------------------- /behavior/feature_rules/feature_rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/behavior/feature_rules/feature_rules.json -------------------------------------------------------------------------------- /behavior/features/features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/behavior/features/features.json -------------------------------------------------------------------------------- /behavior/functions/tick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/behavior/functions/tick.json -------------------------------------------------------------------------------- /behavior/item_catalog/crafting_item_catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/behavior/item_catalog/crafting_item_catalog.json -------------------------------------------------------------------------------- /behavior/items/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/behavior/items/items.json -------------------------------------------------------------------------------- /behavior/loot_tables/loot_tables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/behavior/loot_tables/loot_tables.json -------------------------------------------------------------------------------- /behavior/recipes/recipes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/behavior/recipes/recipes.json -------------------------------------------------------------------------------- /behavior/spawn_rules/spawn_rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/behavior/spawn_rules/spawn_rules.json -------------------------------------------------------------------------------- /behavior/trading/trading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/behavior/trading/trading.json -------------------------------------------------------------------------------- /behavior/worldgen/jigsaw_structures/jigsaw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/behavior/worldgen/jigsaw_structures/jigsaw.json -------------------------------------------------------------------------------- /behavior/worldgen/processors/processor_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/behavior/worldgen/processors/processor_list.json -------------------------------------------------------------------------------- /behavior/worldgen/structure_sets/structure_set.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/behavior/worldgen/structure_sets/structure_set.json -------------------------------------------------------------------------------- /behavior/worldgen/template_pools/template_pool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/behavior/worldgen/template_pools/template_pool.json -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /general/NOTE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/general/NOTE.md -------------------------------------------------------------------------------- /general/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/general/manifest.json -------------------------------------------------------------------------------- /general/world_x_packs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/general/world_x_packs.json -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/jest.config.ts -------------------------------------------------------------------------------- /language/NOTE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/language/NOTE.md -------------------------------------------------------------------------------- /language/language_names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/language/language_names.json -------------------------------------------------------------------------------- /language/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/language/languages.json -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/makefile -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/package.json -------------------------------------------------------------------------------- /resource/NOTE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/resource/NOTE.md -------------------------------------------------------------------------------- /resource/animation_controllers/animation_controller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/resource/animation_controllers/animation_controller.json -------------------------------------------------------------------------------- /resource/animations/actor_animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/resource/animations/actor_animation.json -------------------------------------------------------------------------------- /resource/atmospherics/atmospherics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/resource/atmospherics/atmospherics.json -------------------------------------------------------------------------------- /resource/attachables/attachables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/resource/attachables/attachables.json -------------------------------------------------------------------------------- /resource/biomes/biomes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/resource/biomes/biomes.json -------------------------------------------------------------------------------- /resource/biomes_client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/resource/biomes_client.json -------------------------------------------------------------------------------- /resource/block_culling/block_culling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/resource/block_culling/block_culling.json -------------------------------------------------------------------------------- /resource/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/resource/blocks.json -------------------------------------------------------------------------------- /resource/color_grading/color_grading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/resource/color_grading/color_grading.json -------------------------------------------------------------------------------- /resource/entity/entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/resource/entity/entity.json -------------------------------------------------------------------------------- /resource/fog/fog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/resource/fog/fog.json -------------------------------------------------------------------------------- /resource/items/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/resource/items/items.json -------------------------------------------------------------------------------- /resource/lighting/lighting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/resource/lighting/lighting.json -------------------------------------------------------------------------------- /resource/materials/materials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/resource/materials/materials.json -------------------------------------------------------------------------------- /resource/models/entity/model_entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/resource/models/entity/model_entity.json -------------------------------------------------------------------------------- /resource/particles/particles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/resource/particles/particles.json -------------------------------------------------------------------------------- /resource/pbr/pbr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/resource/pbr/pbr.json -------------------------------------------------------------------------------- /resource/point_lights/point_lights.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/resource/point_lights/point_lights.json -------------------------------------------------------------------------------- /resource/render_controllers/render_controllers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/resource/render_controllers/render_controllers.json -------------------------------------------------------------------------------- /resource/shadows/shadows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/resource/shadows/shadows.json -------------------------------------------------------------------------------- /resource/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/resource/sounds.json -------------------------------------------------------------------------------- /resource/sounds/music_definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/resource/sounds/music_definitions.json -------------------------------------------------------------------------------- /resource/sounds/sound_definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/resource/sounds/sound_definitions.json -------------------------------------------------------------------------------- /resource/textures/flipbook_textures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/resource/textures/flipbook_textures.json -------------------------------------------------------------------------------- /resource/textures/item_texture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/resource/textures/item_texture.json -------------------------------------------------------------------------------- /resource/textures/terrain_texture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/resource/textures/terrain_texture.json -------------------------------------------------------------------------------- /resource/textures/texture_set.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/resource/textures/texture_set.json -------------------------------------------------------------------------------- /resource/textures/textures_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/resource/textures/textures_list.json -------------------------------------------------------------------------------- /resource/textures/ui_texture_definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/resource/textures/ui_texture_definition.json -------------------------------------------------------------------------------- /resource/ui/_global_variables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/resource/ui/_global_variables.json -------------------------------------------------------------------------------- /resource/ui/_ui_defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/resource/ui/_ui_defs.json -------------------------------------------------------------------------------- /resource/ui/ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/resource/ui/ui.json -------------------------------------------------------------------------------- /resource/water/water.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/resource/water/water.json -------------------------------------------------------------------------------- /scripts/format_documents.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/scripts/format_documents.ps1 -------------------------------------------------------------------------------- /scripts/json.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/scripts/json.prettierrc.json -------------------------------------------------------------------------------- /skinpacks/NOTE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/skinpacks/NOTE.md -------------------------------------------------------------------------------- /skinpacks/skins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/skinpacks/skins.json -------------------------------------------------------------------------------- /source/behavior/animations/animations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/animations/animations.json -------------------------------------------------------------------------------- /source/behavior/biomes/biomes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/biomes/biomes.json -------------------------------------------------------------------------------- /source/behavior/biomes/format/components/climate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/biomes/format/components/climate.json -------------------------------------------------------------------------------- /source/behavior/biomes/format/components/humidity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/biomes/format/components/humidity.json -------------------------------------------------------------------------------- /source/behavior/biomes/format/components/map_tints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/biomes/format/components/map_tints.json -------------------------------------------------------------------------------- /source/behavior/biomes/format/components/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/biomes/format/components/tags.json -------------------------------------------------------------------------------- /source/behavior/biomes/format/minecraft.biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/biomes/format/minecraft.biome.json -------------------------------------------------------------------------------- /source/behavior/blocks/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/blocks/blocks.json -------------------------------------------------------------------------------- /source/behavior/blocks/format/components/collision_box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/blocks/format/components/collision_box.json -------------------------------------------------------------------------------- /source/behavior/blocks/format/components/display_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/blocks/format/components/display_name.json -------------------------------------------------------------------------------- /source/behavior/blocks/format/components/flammable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/blocks/format/components/flammable.json -------------------------------------------------------------------------------- /source/behavior/blocks/format/components/friction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/blocks/format/components/friction.json -------------------------------------------------------------------------------- /source/behavior/blocks/format/components/geometry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/blocks/format/components/geometry.json -------------------------------------------------------------------------------- /source/behavior/blocks/format/components/item_visual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/blocks/format/components/item_visual.json -------------------------------------------------------------------------------- /source/behavior/blocks/format/components/loot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/blocks/format/components/loot.json -------------------------------------------------------------------------------- /source/behavior/blocks/format/components/map_color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/blocks/format/components/map_color.json -------------------------------------------------------------------------------- /source/behavior/blocks/format/components/movable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/blocks/format/components/movable.json -------------------------------------------------------------------------------- /source/behavior/blocks/format/components/random_offset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/blocks/format/components/random_offset.json -------------------------------------------------------------------------------- /source/behavior/blocks/format/components/replaceable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/blocks/format/components/replaceable.json -------------------------------------------------------------------------------- /source/behavior/blocks/format/components/selection_box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/blocks/format/components/selection_box.json -------------------------------------------------------------------------------- /source/behavior/blocks/format/components/tick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/blocks/format/components/tick.json -------------------------------------------------------------------------------- /source/behavior/blocks/format/minecraft.block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/blocks/format/minecraft.block.json -------------------------------------------------------------------------------- /source/behavior/blocks/format/states/enum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/blocks/format/states/enum.json -------------------------------------------------------------------------------- /source/behavior/blocks/format/states/integer_range.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/blocks/format/states/integer_range.json -------------------------------------------------------------------------------- /source/behavior/cameras/presets/cameras.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/cameras/presets/cameras.json -------------------------------------------------------------------------------- /source/behavior/dialogue/dialogue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/dialogue/dialogue.json -------------------------------------------------------------------------------- /source/behavior/entities/entities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/entities.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/actor_health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/actor_health.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/bool_property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/bool_property.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/clock_time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/clock_time.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/enum_property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/enum_property.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/has_ability.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/has_ability.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/has_biome_tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/has_biome_tag.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/has_component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/has_component.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/has_damage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/has_damage.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/has_equipment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/has_equipment.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/has_nametag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/has_nametag.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/has_property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/has_property.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/has_tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/has_tag.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/has_target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/has_target.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/home_distance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/home_distance.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/in_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/in_block.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/in_caravan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/in_caravan.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/in_clouds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/in_clouds.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/in_lava.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/in_lava.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/in_nether.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/in_nether.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/in_overworld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/in_overworld.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/in_water.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/in_water.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/int_property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/int_property.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/is_altitude.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/is_altitude.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/is_biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/is_biome.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/is_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/is_block.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/is_brightness.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/is_brightness.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/is_climbing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/is_climbing.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/is_color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/is_color.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/is_daytime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/is_daytime.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/is_difficulty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/is_difficulty.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/is_family.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/is_family.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/is_game_rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/is_game_rule.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/is_humid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/is_humid.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/is_immobile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/is_immobile.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/is_in_village.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/is_in_village.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/is_leashed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/is_leashed.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/is_leashed_to.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/is_leashed_to.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/is_moving.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/is_moving.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/is_navigating.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/is_navigating.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/is_owner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/is_owner.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/is_panicking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/is_panicking.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/is_persistent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/is_persistent.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/is_riding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/is_riding.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/is_sitting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/is_sitting.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/is_skin_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/is_skin_id.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/is_sleeping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/is_sleeping.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/is_sneak_held.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/is_sneak_held.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/is_sneaking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/is_sneaking.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/is_sprinting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/is_sprinting.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/is_target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/is_target.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/is_underwater.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/is_underwater.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/is_variant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/is_variant.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/is_visible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/is_visible.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/light_level.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/light_level.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/moon_phase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/moon_phase.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/on_ground.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/on_ground.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/on_ladder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/on_ladder.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/random_chance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/random_chance.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/rider_count.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/rider_count.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/surface_mob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/surface_mob.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/trusts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/trusts.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/types/subject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/types/subject.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/weather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/weather.json -------------------------------------------------------------------------------- /source/behavior/entities/filters/filters/y_rotation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/filters/filters/y_rotation.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/admire_item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/admire_item.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/avoid_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/avoid_block.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/barter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/barter.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/beg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/beg.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/break_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/break_door.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/breed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/breed.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/celebrate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/celebrate.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/croak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/croak.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/dig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/dig.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/dragondeath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/dragondeath.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/drink_milk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/drink_milk.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/drink_potion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/drink_potion.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/eat_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/eat_block.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/eat_mob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/eat_mob.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/emerge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/emerge.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/equip_item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/equip_item.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/find_cover.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/find_cover.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/find_mount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/find_mount.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/flee_sun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/flee_sun.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/float.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/float.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/float_tempt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/float_tempt.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/float_wander.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/float_wander.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/follow_mob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/follow_mob.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/follow_owner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/follow_owner.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/go_home.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/go_home.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/hide.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/hide.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/hold_ground.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/hold_ground.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/lay_down.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/lay_down.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/lay_egg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/lay_egg.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/make_love.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/make_love.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/melee_attack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/melee_attack.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/mingle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/mingle.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/move_indoors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/move_indoors.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/move_to_land.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/move_to_land.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/move_to_lava.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/move_to_lava.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/move_to_poi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/move_to_poi.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/nap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/nap.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/ocelotattack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/ocelotattack.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/offer_flower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/offer_flower.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/open_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/open_door.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/panic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/panic.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/pickup_items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/pickup_items.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/place_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/place_block.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/play.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/play.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/play_dead.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/play_dead.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/raid_garden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/raid_garden.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/ram_attack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/ram_attack.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/random_fly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/random_fly.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/random_hover.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/random_hover.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/random_swim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/random_swim.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/receive_love.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/receive_love.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/restrict_sun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/restrict_sun.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/roar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/roar.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/roll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/roll.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/scared.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/scared.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/send_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/send_event.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/share_items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/share_items.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/sleep.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/sleep.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/slime_attack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/slime_attack.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/slime_float.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/slime_float.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/snacking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/snacking.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/sneeze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/sneeze.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/sniff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/sniff.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/sonic_boom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/sonic_boom.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/squid_dive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/squid_dive.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/squid_flee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/squid_flee.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/squid_idle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/squid_idle.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/stomp_attack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/stomp_attack.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/swell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/swell.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/swim_idle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/swim_idle.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/swim_wander.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/swim_wander.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/swoop_attack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/swoop_attack.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/take_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/take_block.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/take_flower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/take_flower.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/tempt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/tempt.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/timer_flag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/timer_flag.json -------------------------------------------------------------------------------- /source/behavior/entities/format/behaviors/work.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/behaviors/work.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/addrider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/addrider.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/admire_item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/admire_item.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/ageable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/ageable.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/anger_level.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/anger_level.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/angry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/angry.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/area_attack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/area_attack.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/attack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/attack.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/attribute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/attribute.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/balloonable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/balloonable.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/barter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/barter.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/boostable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/boostable.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/boss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/boss.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/breathable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/breathable.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/breedable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/breedable.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/bribeable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/bribeable.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/buoyant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/buoyant.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/can_climb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/can_climb.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/can_fly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/can_fly.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/color.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/color2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/color2.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/dash_action.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/dash_action.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/despawn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/despawn.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/dweller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/dweller.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/equip_item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/equip_item.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/equipment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/equipment.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/equippable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/equippable.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/explode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/explode.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/fall_damage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/fall_damage.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/fire_immune.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/fire_immune.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/flocking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/flocking.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/genetics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/genetics.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/giveable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/giveable.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/group_size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/group_size.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/grows_crop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/grows_crop.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/healable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/healable.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/heartbeat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/heartbeat.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/hide.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/hide.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/home.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/home.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/insomnia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/insomnia.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/interact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/interact.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/inventory.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/is_baby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/is_baby.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/is_charged.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/is_charged.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/is_chested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/is_chested.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/is_dyeable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/is_dyeable.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/is_ignited.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/is_ignited.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/is_pregnant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/is_pregnant.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/is_saddled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/is_saddled.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/is_shaking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/is_shaking.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/is_sheared.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/is_sheared.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/is_stunned.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/is_stunned.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/is_tamed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/is_tamed.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/item_hopper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/item_hopper.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/jump.static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/jump.static.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/leashable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/leashable.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/looked_at.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/looked_at.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/loot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/loot.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/mob_effect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/mob_effect.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/nameable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/nameable.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/npc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/npc.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/on_death.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/on_death.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/on_hurt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/on_hurt.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/on_ignite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/on_ignite.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/peek.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/peek.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/persistent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/persistent.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/physics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/physics.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/projectile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/projectile.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/pushable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/pushable.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/rail_sensor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/rail_sensor.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/rideable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/rideable.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/scale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/scale.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/scheduler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/scheduler.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/shareables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/shareables.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/shooter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/shooter.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/sittable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/sittable.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/skin_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/skin_id.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/strength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/strength.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/tameable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/tameable.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/tamemount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/tamemount.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/teleport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/teleport.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/tick_world.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/tick_world.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/timer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/timer.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/trade_table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/trade_table.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/trail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/trail.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/transient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/transient.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/trust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/trust.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/trusting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/trusting.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/type_family.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/type_family.json -------------------------------------------------------------------------------- /source/behavior/entities/format/components/variant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/components/variant.json -------------------------------------------------------------------------------- /source/behavior/entities/format/events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/events.json -------------------------------------------------------------------------------- /source/behavior/entities/format/minecraft.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/minecraft.entity.json -------------------------------------------------------------------------------- /source/behavior/entities/format/types/entity_types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/types/entity_types.json -------------------------------------------------------------------------------- /source/behavior/entities/format/types/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/types/event.json -------------------------------------------------------------------------------- /source/behavior/entities/format/types/event_object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/types/event_object.json -------------------------------------------------------------------------------- /source/behavior/entities/format/types/trigger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/entities/format/types/trigger.json -------------------------------------------------------------------------------- /source/behavior/feature_rules/feature_rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/feature_rules/feature_rules.json -------------------------------------------------------------------------------- /source/behavior/features/features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/features/features.json -------------------------------------------------------------------------------- /source/behavior/features/types/chance_information.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/features/types/chance_information.json -------------------------------------------------------------------------------- /source/behavior/features/types/description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/features/types/description.json -------------------------------------------------------------------------------- /source/behavior/functions/tick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/functions/tick.json -------------------------------------------------------------------------------- /source/behavior/item_catalog/crafting_item_catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/item_catalog/crafting_item_catalog.json -------------------------------------------------------------------------------- /source/behavior/items/format/components/allow_off_hand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/items/format/components/allow_off_hand.json -------------------------------------------------------------------------------- /source/behavior/items/format/components/block_placer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/items/format/components/block_placer.json -------------------------------------------------------------------------------- /source/behavior/items/format/components/compostable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/items/format/components/compostable.json -------------------------------------------------------------------------------- /source/behavior/items/format/components/cooldown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/items/format/components/cooldown.json -------------------------------------------------------------------------------- /source/behavior/items/format/components/damage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/items/format/components/damage.json -------------------------------------------------------------------------------- /source/behavior/items/format/components/digger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/items/format/components/digger.json -------------------------------------------------------------------------------- /source/behavior/items/format/components/display_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/items/format/components/display_name.json -------------------------------------------------------------------------------- /source/behavior/items/format/components/durability.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/items/format/components/durability.json -------------------------------------------------------------------------------- /source/behavior/items/format/components/dyeable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/items/format/components/dyeable.json -------------------------------------------------------------------------------- /source/behavior/items/format/components/enchantable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/items/format/components/enchantable.json -------------------------------------------------------------------------------- /source/behavior/items/format/components/entity_placer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/items/format/components/entity_placer.json -------------------------------------------------------------------------------- /source/behavior/items/format/components/fire_resistant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/items/format/components/fire_resistant.json -------------------------------------------------------------------------------- /source/behavior/items/format/components/food.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/items/format/components/food.json -------------------------------------------------------------------------------- /source/behavior/items/format/components/fuel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/items/format/components/fuel.json -------------------------------------------------------------------------------- /source/behavior/items/format/components/glint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/items/format/components/glint.json -------------------------------------------------------------------------------- /source/behavior/items/format/components/hand_equipped.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/items/format/components/hand_equipped.json -------------------------------------------------------------------------------- /source/behavior/items/format/components/icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/items/format/components/icon.json -------------------------------------------------------------------------------- /source/behavior/items/format/components/liquid_clipped.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/items/format/components/liquid_clipped.json -------------------------------------------------------------------------------- /source/behavior/items/format/components/max_stack_size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/items/format/components/max_stack_size.json -------------------------------------------------------------------------------- /source/behavior/items/format/components/projectile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/items/format/components/projectile.json -------------------------------------------------------------------------------- /source/behavior/items/format/components/rarity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/items/format/components/rarity.json -------------------------------------------------------------------------------- /source/behavior/items/format/components/record.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/items/format/components/record.json -------------------------------------------------------------------------------- /source/behavior/items/format/components/repairable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/items/format/components/repairable.json -------------------------------------------------------------------------------- /source/behavior/items/format/components/shooter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/items/format/components/shooter.json -------------------------------------------------------------------------------- /source/behavior/items/format/components/should_despawn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/items/format/components/should_despawn.json -------------------------------------------------------------------------------- /source/behavior/items/format/components/storage_item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/items/format/components/storage_item.json -------------------------------------------------------------------------------- /source/behavior/items/format/components/swing_duration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/items/format/components/swing_duration.json -------------------------------------------------------------------------------- /source/behavior/items/format/components/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/items/format/components/tags.json -------------------------------------------------------------------------------- /source/behavior/items/format/components/throwable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/items/format/components/throwable.json -------------------------------------------------------------------------------- /source/behavior/items/format/components/use_animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/items/format/components/use_animation.json -------------------------------------------------------------------------------- /source/behavior/items/format/components/use_modifiers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/items/format/components/use_modifiers.json -------------------------------------------------------------------------------- /source/behavior/items/format/components/wearable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/items/format/components/wearable.json -------------------------------------------------------------------------------- /source/behavior/items/format/minecraft.item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/items/format/minecraft.item.json -------------------------------------------------------------------------------- /source/behavior/items/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/items/items.json -------------------------------------------------------------------------------- /source/behavior/loot_tables/conditions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/loot_tables/conditions.json -------------------------------------------------------------------------------- /source/behavior/loot_tables/conditions/bool_property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/loot_tables/conditions/bool_property.json -------------------------------------------------------------------------------- /source/behavior/loot_tables/conditions/entity_killed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/loot_tables/conditions/entity_killed.json -------------------------------------------------------------------------------- /source/behavior/loot_tables/conditions/enum_property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/loot_tables/conditions/enum_property.json -------------------------------------------------------------------------------- /source/behavior/loot_tables/conditions/float_property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/loot_tables/conditions/float_property.json -------------------------------------------------------------------------------- /source/behavior/loot_tables/conditions/has_property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/loot_tables/conditions/has_property.json -------------------------------------------------------------------------------- /source/behavior/loot_tables/conditions/has_variant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/loot_tables/conditions/has_variant.json -------------------------------------------------------------------------------- /source/behavior/loot_tables/conditions/int_property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/loot_tables/conditions/int_property.json -------------------------------------------------------------------------------- /source/behavior/loot_tables/conditions/is_baby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/loot_tables/conditions/is_baby.json -------------------------------------------------------------------------------- /source/behavior/loot_tables/conditions/match_tool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/loot_tables/conditions/match_tool.json -------------------------------------------------------------------------------- /source/behavior/loot_tables/conditions/random_chance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/loot_tables/conditions/random_chance.json -------------------------------------------------------------------------------- /source/behavior/loot_tables/functions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/loot_tables/functions.json -------------------------------------------------------------------------------- /source/behavior/loot_tables/functions/enchant_randomly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/loot_tables/functions/enchant_randomly.json -------------------------------------------------------------------------------- /source/behavior/loot_tables/functions/exploration_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/loot_tables/functions/exploration_map.json -------------------------------------------------------------------------------- /source/behavior/loot_tables/functions/fill_container.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/loot_tables/functions/fill_container.json -------------------------------------------------------------------------------- /source/behavior/loot_tables/functions/furnace_smelt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/loot_tables/functions/furnace_smelt.json -------------------------------------------------------------------------------- /source/behavior/loot_tables/functions/looting_enchant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/loot_tables/functions/looting_enchant.json -------------------------------------------------------------------------------- /source/behavior/loot_tables/functions/random_aux_value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/loot_tables/functions/random_aux_value.json -------------------------------------------------------------------------------- /source/behavior/loot_tables/functions/random_dye.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/loot_tables/functions/random_dye.json -------------------------------------------------------------------------------- /source/behavior/loot_tables/functions/set_actor_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/loot_tables/functions/set_actor_id.json -------------------------------------------------------------------------------- /source/behavior/loot_tables/functions/set_armor_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/loot_tables/functions/set_armor_trim.json -------------------------------------------------------------------------------- /source/behavior/loot_tables/functions/set_count.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/loot_tables/functions/set_count.json -------------------------------------------------------------------------------- /source/behavior/loot_tables/functions/set_damage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/loot_tables/functions/set_damage.json -------------------------------------------------------------------------------- /source/behavior/loot_tables/functions/set_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/loot_tables/functions/set_data.json -------------------------------------------------------------------------------- /source/behavior/loot_tables/functions/set_lore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/loot_tables/functions/set_lore.json -------------------------------------------------------------------------------- /source/behavior/loot_tables/functions/set_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/loot_tables/functions/set_name.json -------------------------------------------------------------------------------- /source/behavior/loot_tables/functions/set_potion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/loot_tables/functions/set_potion.json -------------------------------------------------------------------------------- /source/behavior/loot_tables/functions/set_stew_effect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/loot_tables/functions/set_stew_effect.json -------------------------------------------------------------------------------- /source/behavior/loot_tables/loot_tables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/loot_tables/loot_tables.json -------------------------------------------------------------------------------- /source/behavior/recipes/recipes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/recipes/recipes.json -------------------------------------------------------------------------------- /source/behavior/recipes/types/base types/definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/recipes/types/base types/definition.json -------------------------------------------------------------------------------- /source/behavior/recipes/types/base types/item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/recipes/types/base types/item.json -------------------------------------------------------------------------------- /source/behavior/recipes/types/base types/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/recipes/types/base types/tags.json -------------------------------------------------------------------------------- /source/behavior/recipes/types/base types/unlock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/recipes/types/base types/unlock.json -------------------------------------------------------------------------------- /source/behavior/recipes/types/furnace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/recipes/types/furnace.json -------------------------------------------------------------------------------- /source/behavior/recipes/types/recipe_brewing_container.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/recipes/types/recipe_brewing_container.json -------------------------------------------------------------------------------- /source/behavior/recipes/types/recipe_brewing_mix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/recipes/types/recipe_brewing_mix.json -------------------------------------------------------------------------------- /source/behavior/recipes/types/recipe_shaped.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/recipes/types/recipe_shaped.json -------------------------------------------------------------------------------- /source/behavior/recipes/types/recipe_shapeless.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/recipes/types/recipe_shapeless.json -------------------------------------------------------------------------------- /source/behavior/spawn_rules/components/biome_filter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/spawn_rules/components/biome_filter.json -------------------------------------------------------------------------------- /source/behavior/spawn_rules/components/delay_filter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/spawn_rules/components/delay_filter.json -------------------------------------------------------------------------------- /source/behavior/spawn_rules/components/density_limit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/spawn_rules/components/density_limit.json -------------------------------------------------------------------------------- /source/behavior/spawn_rules/components/distance_filter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/spawn_rules/components/distance_filter.json -------------------------------------------------------------------------------- /source/behavior/spawn_rules/components/height_filter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/spawn_rules/components/height_filter.json -------------------------------------------------------------------------------- /source/behavior/spawn_rules/components/herd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/spawn_rules/components/herd.json -------------------------------------------------------------------------------- /source/behavior/spawn_rules/components/permute_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/spawn_rules/components/permute_type.json -------------------------------------------------------------------------------- /source/behavior/spawn_rules/components/spawn_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/spawn_rules/components/spawn_event.json -------------------------------------------------------------------------------- /source/behavior/spawn_rules/components/spawns_lava.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/spawn_rules/components/spawns_lava.json -------------------------------------------------------------------------------- /source/behavior/spawn_rules/components/weight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/spawn_rules/components/weight.json -------------------------------------------------------------------------------- /source/behavior/spawn_rules/spawn_rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/spawn_rules/spawn_rules.json -------------------------------------------------------------------------------- /source/behavior/trading/trading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/trading/trading.json -------------------------------------------------------------------------------- /source/behavior/worldgen/jigsaw_structures/jigsaw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/worldgen/jigsaw_structures/jigsaw.json -------------------------------------------------------------------------------- /source/behavior/worldgen/processors/format/processors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/worldgen/processors/format/processors.json -------------------------------------------------------------------------------- /source/behavior/worldgen/processors/processor_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/worldgen/processors/processor_list.json -------------------------------------------------------------------------------- /source/behavior/worldgen/structure_sets/structure_set.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/worldgen/structure_sets/structure_set.json -------------------------------------------------------------------------------- /source/behavior/worldgen/template_pools/template_pool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/behavior/worldgen/template_pools/template_pool.json -------------------------------------------------------------------------------- /source/compress_specification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/compress_specification.json -------------------------------------------------------------------------------- /source/general/UUIDV4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/UUIDV4.json -------------------------------------------------------------------------------- /source/general/Version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/Version.json -------------------------------------------------------------------------------- /source/general/block/identifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/block/identifier.json -------------------------------------------------------------------------------- /source/general/block/reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/block/reference.json -------------------------------------------------------------------------------- /source/general/block_culling/identifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/block_culling/identifier.json -------------------------------------------------------------------------------- /source/general/block_definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/block_definition.json -------------------------------------------------------------------------------- /source/general/blocks_item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/blocks_item.json -------------------------------------------------------------------------------- /source/general/cameras/identifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/cameras/identifier.json -------------------------------------------------------------------------------- /source/general/entity/damage_source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/entity/damage_source.json -------------------------------------------------------------------------------- /source/general/entity/identifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/entity/identifier.json -------------------------------------------------------------------------------- /source/general/feature/identifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/feature/identifier.json -------------------------------------------------------------------------------- /source/general/fog/identifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/fog/identifier.json -------------------------------------------------------------------------------- /source/general/format_version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/format_version.json -------------------------------------------------------------------------------- /source/general/identifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/identifier.json -------------------------------------------------------------------------------- /source/general/int_or_range.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/int_or_range.json -------------------------------------------------------------------------------- /source/general/item/descriptor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/item/descriptor.json -------------------------------------------------------------------------------- /source/general/item/identifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/item/identifier.json -------------------------------------------------------------------------------- /source/general/loot_table/identifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/loot_table/identifier.json -------------------------------------------------------------------------------- /source/general/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/manifest.json -------------------------------------------------------------------------------- /source/general/manifest/manifest.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/manifest/manifest.1.json -------------------------------------------------------------------------------- /source/general/manifest/manifest.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/manifest/manifest.2.json -------------------------------------------------------------------------------- /source/general/manifest/manifest.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/manifest/manifest.3.json -------------------------------------------------------------------------------- /source/general/particle/identifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/particle/identifier.json -------------------------------------------------------------------------------- /source/general/rawtext/rawtext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/rawtext/rawtext.json -------------------------------------------------------------------------------- /source/general/semver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/semver.json -------------------------------------------------------------------------------- /source/general/sound_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/sound_event.json -------------------------------------------------------------------------------- /source/general/vanilla/creative_category.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/vanilla/creative_category.json -------------------------------------------------------------------------------- /source/general/vanilla/effect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/vanilla/effect.json -------------------------------------------------------------------------------- /source/general/vanilla/material.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/vanilla/material.json -------------------------------------------------------------------------------- /source/general/vanilla/tint_methods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/vanilla/tint_methods.json -------------------------------------------------------------------------------- /source/general/vectors/integer2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/vectors/integer2.json -------------------------------------------------------------------------------- /source/general/vectors/integer2OrValue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/vectors/integer2OrValue.json -------------------------------------------------------------------------------- /source/general/vectors/integer3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/vectors/integer3.json -------------------------------------------------------------------------------- /source/general/vectors/number2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/vectors/number2.json -------------------------------------------------------------------------------- /source/general/vectors/number2OrValue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/vectors/number2OrValue.json -------------------------------------------------------------------------------- /source/general/vectors/number3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/vectors/number3.json -------------------------------------------------------------------------------- /source/general/volume/identifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/volume/identifier.json -------------------------------------------------------------------------------- /source/general/world_x_packs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/general/world_x_packs.json -------------------------------------------------------------------------------- /source/language/language_names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/language/language_names.json -------------------------------------------------------------------------------- /source/language/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/language/languages.json -------------------------------------------------------------------------------- /source/molang/arraynumber3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/molang/arraynumber3.json -------------------------------------------------------------------------------- /source/molang/boolean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/molang/boolean.json -------------------------------------------------------------------------------- /source/molang/number.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/molang/number.json -------------------------------------------------------------------------------- /source/molang/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/molang/string.json -------------------------------------------------------------------------------- /source/resource/animations/actor_animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/animations/actor_animation.json -------------------------------------------------------------------------------- /source/resource/atmospherics/atmospherics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/atmospherics/atmospherics.json -------------------------------------------------------------------------------- /source/resource/attachables/1.10.0/attachables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/attachables/1.10.0/attachables.json -------------------------------------------------------------------------------- /source/resource/attachables/1.8.0/attachables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/attachables/1.8.0/attachables.json -------------------------------------------------------------------------------- /source/resource/attachables/attachables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/attachables/attachables.json -------------------------------------------------------------------------------- /source/resource/biomes/biomes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/biomes/biomes.json -------------------------------------------------------------------------------- /source/resource/biomes/format/components/biome_music.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/biomes/format/components/biome_music.json -------------------------------------------------------------------------------- /source/resource/biomes/format/components/precipitation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/biomes/format/components/precipitation.json -------------------------------------------------------------------------------- /source/resource/biomes/format/components/sky_color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/biomes/format/components/sky_color.json -------------------------------------------------------------------------------- /source/resource/biomes/format/minecraft.client_biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/biomes/format/minecraft.client_biome.json -------------------------------------------------------------------------------- /source/resource/biomes_client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/biomes_client.json -------------------------------------------------------------------------------- /source/resource/block_culling/block_culling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/block_culling/block_culling.json -------------------------------------------------------------------------------- /source/resource/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/blocks.json -------------------------------------------------------------------------------- /source/resource/color_grading/color_grading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/color_grading/color_grading.json -------------------------------------------------------------------------------- /source/resource/entity/1.10.0/entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/entity/1.10.0/entity.json -------------------------------------------------------------------------------- /source/resource/entity/1.8.0/entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/entity/1.8.0/entity.json -------------------------------------------------------------------------------- /source/resource/entity/entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/entity/entity.json -------------------------------------------------------------------------------- /source/resource/fog/fog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/fog/fog.json -------------------------------------------------------------------------------- /source/resource/items/1.10.0/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/items/1.10.0/items.json -------------------------------------------------------------------------------- /source/resource/items/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/items/items.json -------------------------------------------------------------------------------- /source/resource/lighting/format/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/lighting/format/color.json -------------------------------------------------------------------------------- /source/resource/lighting/lighting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/lighting/lighting.json -------------------------------------------------------------------------------- /source/resource/local_lighting/local_lighting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/local_lighting/local_lighting.json -------------------------------------------------------------------------------- /source/resource/materials/materials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/materials/materials.json -------------------------------------------------------------------------------- /source/resource/models/entity/1.16.0/model_entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/models/entity/1.16.0/model_entity.json -------------------------------------------------------------------------------- /source/resource/models/entity/1.21.0/model_entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/models/entity/1.21.0/model_entity.json -------------------------------------------------------------------------------- /source/resource/models/entity/1.8.0/model_entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/models/entity/1.8.0/model_entity.json -------------------------------------------------------------------------------- /source/resource/models/entity/model_entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/models/entity/model_entity.json -------------------------------------------------------------------------------- /source/resource/particles/components/emitter_shape_box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/particles/components/emitter_shape_box.json -------------------------------------------------------------------------------- /source/resource/particles/particles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/particles/particles.json -------------------------------------------------------------------------------- /source/resource/pbr/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/pbr/global.json -------------------------------------------------------------------------------- /source/resource/shadows/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/shadows/global.json -------------------------------------------------------------------------------- /source/resource/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/sounds.json -------------------------------------------------------------------------------- /source/resource/sounds/music_definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/sounds/music_definitions.json -------------------------------------------------------------------------------- /source/resource/sounds/sound_definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/sounds/sound_definitions.json -------------------------------------------------------------------------------- /source/resource/textures/aseprite_flipbook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/textures/aseprite_flipbook.json -------------------------------------------------------------------------------- /source/resource/textures/flipbook_textures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/textures/flipbook_textures.json -------------------------------------------------------------------------------- /source/resource/textures/item_texture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/textures/item_texture.json -------------------------------------------------------------------------------- /source/resource/textures/nine_slice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/textures/nine_slice.json -------------------------------------------------------------------------------- /source/resource/textures/terrain_texture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/textures/terrain_texture.json -------------------------------------------------------------------------------- /source/resource/textures/texture_set.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/textures/texture_set.json -------------------------------------------------------------------------------- /source/resource/textures/textures_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/textures/textures_list.json -------------------------------------------------------------------------------- /source/resource/textures/ui_texture_definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/textures/ui_texture_definition.json -------------------------------------------------------------------------------- /source/resource/ui/_global_variables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/_global_variables.json -------------------------------------------------------------------------------- /source/resource/ui/_ui_defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/_ui_defs.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/alpha.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/alpha.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/always_rotate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/always_rotate.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/anchor_from.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/anchor_from.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/anchor_to.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/anchor_to.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/anim_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/anim_type.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/anims.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/anims.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/bilinear.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/bilinear.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/bindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/bindings.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/cache_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/cache_screen.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/color.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/contained.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/contained.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/control_ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/control_ids.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/control_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/control_name.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/draggable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/draggable.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/dropdown_area.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/dropdown_area.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/dropdown_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/dropdown_name.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/duration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/duration.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/easing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/easing.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/enabled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/enabled.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/end_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/end_event.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/factory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/factory.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/fill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/fill.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/focus_enabled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/focus_enabled.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/focus_mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/focus_mapping.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/font_size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/font_size.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/font_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/font_type.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/fps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/fps.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/frame_count.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/frame_count.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/frame_step.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/frame_step.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/from.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/from.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/grid_position.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/grid_position.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/handle_select.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/handle_select.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/hide_hyphen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/hide_hyphen.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/hover_control.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/hover_control.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/hover_enabled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/hover_enabled.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/ignored.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/ignored.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/images.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/images.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/initial_uv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/initial_uv.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/is_modal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/is_modal.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/keep_ratio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/keep_ratio.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/layer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/layer.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/line_padding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/line_padding.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/localize.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/localize.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/max_length.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/max_length.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/max_size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/max_size.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/min_size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/min_size.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/modal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/modal.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/next.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/offset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/offset.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/orientation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/orientation.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/play_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/play_event.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/primary_color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/primary_color.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/priority.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/priority.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/property_bag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/property_bag.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/renderer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/renderer.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/reset_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/reset_event.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/reversible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/reversible.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/rotate_speed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/rotate_speed.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/scroll_speed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/scroll_speed.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/scrollbar_box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/scrollbar_box.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/shadow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/shadow.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/size.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/slider_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/slider_name.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/slider_steps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/slider_steps.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/sound_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/sound_name.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/sound_pitch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/sound_pitch.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/sound_volume.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/sound_volume.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/text.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/text_box_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/text_box_name.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/text_control.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/text_control.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/text_labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/text_labels.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/text_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/text_type.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/texture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/texture.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/tiled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/tiled.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/to.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/to.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/toggle_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/toggle_name.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/touch_mode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/touch_mode.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/tts/name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/tts/name.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/tts/toggle_on.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/tts/toggle_on.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/type.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/uv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/uv.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/uv_size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/uv_size.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/variables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/variables.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/visible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/visible.json -------------------------------------------------------------------------------- /source/resource/ui/elements/properties/zip_folder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/elements/properties/zip_folder.json -------------------------------------------------------------------------------- /source/resource/ui/general/anchor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/general/anchor.json -------------------------------------------------------------------------------- /source/resource/ui/general/animation_reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/general/animation_reference.json -------------------------------------------------------------------------------- /source/resource/ui/general/any.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/general/any.json -------------------------------------------------------------------------------- /source/resource/ui/general/boolean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/general/boolean.json -------------------------------------------------------------------------------- /source/resource/ui/general/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/general/color.json -------------------------------------------------------------------------------- /source/resource/ui/general/integer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/general/integer.json -------------------------------------------------------------------------------- /source/resource/ui/general/item_ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/general/item_ref.json -------------------------------------------------------------------------------- /source/resource/ui/general/navigation_mode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/general/navigation_mode.json -------------------------------------------------------------------------------- /source/resource/ui/general/number.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/general/number.json -------------------------------------------------------------------------------- /source/resource/ui/general/size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/general/size.json -------------------------------------------------------------------------------- /source/resource/ui/general/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/general/string.json -------------------------------------------------------------------------------- /source/resource/ui/general/texture_file_path.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/general/texture_file_path.json -------------------------------------------------------------------------------- /source/resource/ui/general/variable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/general/variable.json -------------------------------------------------------------------------------- /source/resource/ui/general/variables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/general/variables.json -------------------------------------------------------------------------------- /source/resource/ui/general/vec2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/general/vec2.json -------------------------------------------------------------------------------- /source/resource/ui/general/vec4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/general/vec4.json -------------------------------------------------------------------------------- /source/resource/ui/ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/ui/ui.json -------------------------------------------------------------------------------- /source/resource/water/water.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/resource/water/water.json -------------------------------------------------------------------------------- /source/skinpacks/skins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/source/skinpacks/skins.json -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/src/main.ts -------------------------------------------------------------------------------- /test/files/correct/data_bp/cameras/presets/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/correct/data_bp/cameras/presets/examples.json -------------------------------------------------------------------------------- /test/files/correct/data_bp/entities/behavior_tempt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/correct/data_bp/entities/behavior_tempt.json -------------------------------------------------------------------------------- /test/files/correct/data_bp/entities/dragon.entity.bp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/correct/data_bp/entities/dragon.entity.bp.json -------------------------------------------------------------------------------- /test/files/correct/data_bp/entities/equippable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/correct/data_bp/entities/equippable.json -------------------------------------------------------------------------------- /test/files/correct/data_bp/entities/example.chicken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/correct/data_bp/entities/example.chicken.json -------------------------------------------------------------------------------- /test/files/correct/data_bp/entities/sheep.entity.bp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/correct/data_bp/entities/sheep.entity.bp.json -------------------------------------------------------------------------------- /test/files/correct/data_bp/entities/sheep.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/correct/data_bp/entities/sheep.json -------------------------------------------------------------------------------- /test/files/correct/data_bp/features/geode_feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/correct/data_bp/features/geode_feature.json -------------------------------------------------------------------------------- /test/files/correct/data_bp/features/ore_feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/correct/data_bp/features/ore_feature.json -------------------------------------------------------------------------------- /test/files/correct/data_bp/features/search_feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/correct/data_bp/features/search_feature.json -------------------------------------------------------------------------------- /test/files/correct/data_bp/features/sequence_feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/correct/data_bp/features/sequence_feature.json -------------------------------------------------------------------------------- /test/files/correct/data_bp/features/tree_feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/correct/data_bp/features/tree_feature.json -------------------------------------------------------------------------------- /test/files/correct/data_bp/functions/tick.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": ["gameplay/world_tick"] 3 | } 4 | -------------------------------------------------------------------------------- /test/files/correct/data_bp/items/master_block.item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/correct/data_bp/items/master_block.item.json -------------------------------------------------------------------------------- /test/files/correct/data_bp/items/test.item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/correct/data_bp/items/test.item.json -------------------------------------------------------------------------------- /test/files/correct/data_bp/items/test1.item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/correct/data_bp/items/test1.item.json -------------------------------------------------------------------------------- /test/files/correct/data_bp/items/test2.item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/correct/data_bp/items/test2.item.json -------------------------------------------------------------------------------- /test/files/correct/data_bp/loot_tables/enchant_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/correct/data_bp/loot_tables/enchant_test.json -------------------------------------------------------------------------------- /test/files/correct/data_bp/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/correct/data_bp/manifest.json -------------------------------------------------------------------------------- /test/files/correct/data_bp/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/correct/data_bp/pack_icon.png -------------------------------------------------------------------------------- /test/files/correct/data_bp/texts/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/correct/data_bp/texts/languages.json -------------------------------------------------------------------------------- /test/files/correct/data_rp/biomes_client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/correct/data_rp/biomes_client.json -------------------------------------------------------------------------------- /test/files/correct/data_rp/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/correct/data_rp/blocks.json -------------------------------------------------------------------------------- /test/files/correct/data_rp/entities/sheep.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/correct/data_rp/entities/sheep.geo.json -------------------------------------------------------------------------------- /test/files/correct/data_rp/entity/dragon_born.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/correct/data_rp/entity/dragon_born.entity.json -------------------------------------------------------------------------------- /test/files/correct/data_rp/entity/sheep.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/correct/data_rp/entity/sheep.entity.json -------------------------------------------------------------------------------- /test/files/correct/data_rp/entity/sheepentity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/correct/data_rp/entity/sheepentity.json -------------------------------------------------------------------------------- /test/files/correct/data_rp/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/correct/data_rp/manifest.json -------------------------------------------------------------------------------- /test/files/correct/data_rp/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/correct/data_rp/sounds.json -------------------------------------------------------------------------------- /test/files/correct/data_rp/sounds/music_definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/correct/data_rp/sounds/music_definitions.json -------------------------------------------------------------------------------- /test/files/correct/data_rp/sounds/sound_definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/correct/data_rp/sounds/sound_definitions.json -------------------------------------------------------------------------------- /test/files/correct/data_rp/texts/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/correct/data_rp/texts/languages.json -------------------------------------------------------------------------------- /test/files/correct/data_rp/textures/item_texture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/correct/data_rp/textures/item_texture.json -------------------------------------------------------------------------------- /test/files/correct/data_rp/textures/terrain_texture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/correct/data_rp/textures/terrain_texture.json -------------------------------------------------------------------------------- /test/files/correct/data_rp/ui/_global_variables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/correct/data_rp/ui/_global_variables.json -------------------------------------------------------------------------------- /test/files/correct/data_rp/ui/_ui_defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/correct/data_rp/ui/_ui_defs.json -------------------------------------------------------------------------------- /test/files/correct/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/correct/manifest.json -------------------------------------------------------------------------------- /test/files/correct/world_behavior_packs.json: -------------------------------------------------------------------------------- 1 | [{"pack_id":"10a7a11c-b88f-4986-bb48-69be8085a054","version":[1,0,0]}] -------------------------------------------------------------------------------- /test/files/correct/world_resource_packs.json: -------------------------------------------------------------------------------- 1 | [{"pack_id":"54927221-28d3-4cc6-bffb-a354f3987491","version":[1,0,0]}] -------------------------------------------------------------------------------- /test/files/examples.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/examples.code-workspace -------------------------------------------------------------------------------- /test/files/incorrect/data2_bp/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/incorrect/data2_bp/manifest.json -------------------------------------------------------------------------------- /test/files/incorrect/data_bp/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/incorrect/data_bp/manifest.json -------------------------------------------------------------------------------- /test/files/incorrect/data_rp/biomes_client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/incorrect/data_rp/biomes_client.json -------------------------------------------------------------------------------- /test/files/incorrect/data_rp/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/incorrect/data_rp/blocks.json -------------------------------------------------------------------------------- /test/files/incorrect/data_rp/entities/sheep.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/incorrect/data_rp/entities/sheep.geo.json -------------------------------------------------------------------------------- /test/files/incorrect/data_rp/entity/sheep.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/incorrect/data_rp/entity/sheep.entity.json -------------------------------------------------------------------------------- /test/files/incorrect/data_rp/entity/sheepentity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/incorrect/data_rp/entity/sheepentity.json -------------------------------------------------------------------------------- /test/files/incorrect/data_rp/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/incorrect/data_rp/manifest.json -------------------------------------------------------------------------------- /test/files/incorrect/data_rp/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/incorrect/data_rp/sounds.json -------------------------------------------------------------------------------- /test/files/incorrect/data_rp/texts/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/incorrect/data_rp/texts/languages.json -------------------------------------------------------------------------------- /test/files/incorrect/data_rp/textures/item_texture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/incorrect/data_rp/textures/item_texture.json -------------------------------------------------------------------------------- /test/files/incorrect/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/files/incorrect/manifest.json -------------------------------------------------------------------------------- /test/files/incorrect/world_behavior_packs.json: -------------------------------------------------------------------------------- 1 | [{"pack_id":"10a7A11c-b88f-4986-bb48-69be8085a054","version":[1,0,0]}] -------------------------------------------------------------------------------- /test/files/incorrect/world_resource_packs.json: -------------------------------------------------------------------------------- 1 | [{"pack_id":"54927221-28d3-4cc6-bffB-a354f3987491","version":[1,0,0]}] -------------------------------------------------------------------------------- /test/src/compress-specification.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/src/compress-specification.test.ts -------------------------------------------------------------------------------- /test/src/files/correct.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/src/files/correct.test.ts -------------------------------------------------------------------------------- /test/src/files/incorrect.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/src/files/incorrect.test.ts -------------------------------------------------------------------------------- /test/src/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/src/github.ts -------------------------------------------------------------------------------- /test/src/schema-tester.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/src/schema-tester.ts -------------------------------------------------------------------------------- /test/src/utillity.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/src/utillity.test.ts -------------------------------------------------------------------------------- /test/src/utillity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/src/utillity.ts -------------------------------------------------------------------------------- /test/src/validator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/test/src/validator.test.ts -------------------------------------------------------------------------------- /tools/table to json schema.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/tools/table to json schema.xlsm -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vscode-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/vscode-settings.json -------------------------------------------------------------------------------- /worldgen/jigsaw_structures/jigsaw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/worldgen/jigsaw_structures/jigsaw.json -------------------------------------------------------------------------------- /worldgen/processors/processor_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/worldgen/processors/processor_list.json -------------------------------------------------------------------------------- /worldgen/structure_sets/structure_set.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/worldgen/structure_sets/structure_set.json -------------------------------------------------------------------------------- /worldgen/template_pools/template_pool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/HEAD/worldgen/template_pools/template_pool.json --------------------------------------------------------------------------------