├── .dockerignore ├── .github ├── FUNDING.yml └── workflows │ ├── ci.yml │ ├── deploy-docs.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── Dockerfile ├── LICENSE ├── README.md ├── crates ├── blocks_report │ ├── Cargo.toml │ ├── build │ │ ├── block_entity_loader.rs │ │ ├── blocks_report_loader.rs │ │ ├── build_report_mappings.rs │ │ ├── internal_mapping.rs │ │ └── main.rs │ └── src │ │ └── lib.rs ├── blocks_report_data │ ├── Cargo.toml │ └── src │ │ ├── block_state_builder.rs │ │ ├── internal_mapping.rs │ │ ├── lib.rs │ │ └── report_mapping.rs ├── macros │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ ├── packet_in.rs │ │ ├── packet_out.rs │ │ └── packet_reports.rs ├── minecraft_packets │ ├── Cargo.toml │ └── src │ │ ├── configuration │ │ ├── acknowledge_finish_configuration_packet.rs │ │ ├── client_bound_known_packs_packet.rs │ │ ├── configuration_client_bound_plugin_message_packet.rs │ │ ├── data │ │ │ ├── known_pack.rs │ │ │ ├── mod.rs │ │ │ └── registry_entry.rs │ │ ├── finish_configuration_packet.rs │ │ ├── mod.rs │ │ └── registry_data_packet.rs │ │ ├── handshaking │ │ ├── handshake_packet.rs │ │ └── mod.rs │ │ ├── lib.rs │ │ ├── login │ │ ├── custom_query_answer_packet.rs │ │ ├── custom_query_packet.rs │ │ ├── data │ │ │ ├── mod.rs │ │ │ └── property.rs │ │ ├── game_profile_packet.rs │ │ ├── login_acknowledged_packet.rs │ │ ├── login_disconnect_packet.rs │ │ ├── login_state_packet.rs │ │ ├── login_success_packet.rs │ │ ├── mod.rs │ │ └── set_compression_packet.rs │ │ ├── play │ │ ├── boss_bar_packet.rs │ │ ├── chat_command_packet.rs │ │ ├── chat_message_packet.rs │ │ ├── chunk_data_and_update_light_packet.rs │ │ ├── client_bound_keep_alive_packet.rs │ │ ├── commands_packet.rs │ │ ├── data │ │ │ ├── block_pos.rs │ │ │ ├── chunk_context.rs │ │ │ ├── chunk_data.rs │ │ │ ├── chunk_section.rs │ │ │ ├── death_location.rs │ │ │ ├── encode_as_bytes.rs │ │ │ ├── light_data.rs │ │ │ ├── login_packet_data │ │ │ │ ├── mod.rs │ │ │ │ ├── post_v1_16.rs │ │ │ │ ├── post_v1_20_2.rs │ │ │ │ └── pre_v1_16.rs │ │ │ ├── mod.rs │ │ │ └── palette_container.rs │ │ ├── disconnect_packet.rs │ │ ├── game_event_packet.rs │ │ ├── legacy_chat_message_packet.rs │ │ ├── legacy_set_title_packet.rs │ │ ├── login_packet.rs │ │ ├── mod.rs │ │ ├── play_client_bound_plugin_message_packet.rs │ │ ├── player_info_update_packet.rs │ │ ├── player_position_packet.rs │ │ ├── set_action_bar_text_packet.rs │ │ ├── set_chunk_cache_center_packet.rs │ │ ├── set_default_spawn_position_packet.rs │ │ ├── set_entity_data_packet.rs │ │ ├── set_player_position_and_rotation_packet.rs │ │ ├── set_player_position_packet.rs │ │ ├── set_subtitle_text_packet.rs │ │ ├── set_title_text_packet.rs │ │ ├── set_titles_animation.rs │ │ ├── synchronize_player_position_packet.rs │ │ ├── system_chat_message_packet.rs │ │ ├── tab_list_packet.rs │ │ └── update_time_packet.rs │ │ └── status │ │ ├── data │ │ ├── mod.rs │ │ └── status_response.rs │ │ ├── mod.rs │ │ ├── ping_request_packet.rs │ │ ├── ping_response_packet.rs │ │ ├── status_request_packet.rs │ │ └── status_response_packet.rs ├── minecraft_protocol │ ├── Cargo.toml │ └── src │ │ ├── data │ │ ├── coordinates.rs │ │ ├── dimension.rs │ │ └── mod.rs │ │ ├── data_types │ │ ├── bit_set.rs │ │ ├── boolean.rs │ │ ├── identifier.rs │ │ ├── mod.rs │ │ ├── nbt.rs │ │ ├── number.rs │ │ ├── optional.rs │ │ ├── position.rs │ │ ├── prefixed.rs │ │ ├── slices.rs │ │ ├── string.rs │ │ ├── uuid.rs │ │ ├── var_int.rs │ │ └── vec_no_length.rs │ │ ├── lib.rs │ │ ├── packet_serializer │ │ ├── decode_packet.rs │ │ ├── encode_packet.rs │ │ ├── mod.rs │ │ └── packet_id.rs │ │ └── state.rs ├── net │ ├── Cargo.toml │ └── src │ │ ├── get_packet_length.rs │ │ ├── lib.rs │ │ ├── packet_stream.rs │ │ └── raw_packet.rs ├── pico_binutils │ ├── Cargo.toml │ └── src │ │ ├── binary_reader.rs │ │ ├── binary_writer.rs │ │ ├── length_prefixed │ │ ├── mod.rs │ │ ├── prefixed.rs │ │ ├── reader.rs │ │ ├── var_int.rs │ │ └── writer.rs │ │ ├── lib.rs │ │ ├── uuid.rs │ │ └── var_int.rs ├── pico_nbt │ ├── Cargo.toml │ ├── benches │ │ └── bench_nbt_to_bytes.rs │ ├── src │ │ ├── lib.rs │ │ ├── nbt.rs │ │ ├── nbt_context.rs │ │ ├── nbt_from_bytes.rs │ │ ├── nbt_from_json.rs │ │ └── nbt_version.rs │ └── tests │ │ └── nbt_from_json.rs ├── pico_structures │ ├── Cargo.toml │ └── src │ │ ├── block_entities │ │ ├── generic.rs │ │ ├── mod.rs │ │ └── sign.rs │ │ ├── chunk_processor.rs │ │ ├── decompress.rs │ │ ├── internal_block_entity.rs │ │ ├── lib.rs │ │ ├── pack_direct.rs │ │ ├── palette.rs │ │ ├── schematic.rs │ │ └── world.rs ├── pico_text_component │ ├── Cargo.toml │ └── src │ │ ├── component.rs │ │ ├── lib.rs │ │ └── mini_message.rs ├── protocol_version │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ └── protocol_version.rs ├── protocol_version_macro │ ├── Cargo.toml │ ├── src │ │ ├── expand.rs │ │ ├── find_min_max_variants.rs │ │ ├── lib.rs │ │ ├── parsed_variant.rs │ │ └── pvn_attribute.rs │ └── tests │ │ └── protocol_version_test.rs ├── registries │ ├── Cargo.toml │ ├── build │ │ ├── get_all_registries.rs │ │ ├── main.rs │ │ └── registries_indexes.rs │ └── src │ │ └── lib.rs └── registries_data │ ├── Cargo.toml │ └── src │ ├── grouped_registries.rs │ ├── lib.rs │ └── registry_format.rs ├── data ├── biome.json ├── generated │ ├── Any │ │ └── reports │ │ │ └── packets.json │ ├── V1_10 │ │ └── reports │ │ │ └── packets.json │ ├── V1_11 │ │ └── reports │ │ │ └── packets.json │ ├── V1_12 │ │ └── reports │ │ │ └── packets.json │ ├── V1_12_1 │ │ └── reports │ │ │ └── packets.json │ ├── V1_13 │ │ └── reports │ │ │ └── packets.json │ ├── V1_14 │ │ └── reports │ │ │ └── packets.json │ ├── V1_15 │ │ └── reports │ │ │ └── packets.json │ ├── V1_16 │ │ ├── data │ │ │ └── minecraft │ │ │ │ └── dimension.json │ │ └── reports │ │ │ ├── blocks.json │ │ │ ├── packets.json │ │ │ └── registries.json │ ├── V1_16_1 │ │ └── reports │ │ │ └── blocks.json │ ├── V1_16_2 │ │ ├── data │ │ │ └── minecraft │ │ │ │ ├── dimension_type │ │ │ │ ├── overworld.json │ │ │ │ ├── the_end.json │ │ │ │ └── the_nether.json │ │ │ │ └── worldgen │ │ │ │ └── biome │ │ │ │ └── plains.json │ │ └── reports │ │ │ ├── blocks.json │ │ │ └── packets.json │ ├── V1_16_3 │ │ └── reports │ │ │ └── blocks.json │ ├── V1_16_4 │ │ └── reports │ │ │ └── blocks.json │ ├── V1_17 │ │ ├── data │ │ │ └── minecraft │ │ │ │ ├── dimension_type │ │ │ │ ├── overworld.json │ │ │ │ ├── the_end.json │ │ │ │ └── the_nether.json │ │ │ │ └── worldgen │ │ │ │ └── biome │ │ │ │ └── plains.json │ │ └── reports │ │ │ ├── blocks.json │ │ │ ├── packets.json │ │ │ └── registries.json │ ├── V1_17_1 │ │ └── reports │ │ │ └── blocks.json │ ├── V1_18 │ │ ├── data │ │ │ └── minecraft │ │ │ │ ├── dimension_type │ │ │ │ ├── overworld.json │ │ │ │ ├── the_end.json │ │ │ │ └── the_nether.json │ │ │ │ └── worldgen │ │ │ │ └── biome │ │ │ │ └── plains.json │ │ └── reports │ │ │ ├── blocks.json │ │ │ ├── packets.json │ │ │ └── registries.json │ ├── V1_18_2 │ │ ├── data │ │ │ └── minecraft │ │ │ │ ├── dimension_type │ │ │ │ ├── overworld.json │ │ │ │ ├── the_end.json │ │ │ │ └── the_nether.json │ │ │ │ └── worldgen │ │ │ │ └── biome │ │ │ │ └── plains.json │ │ └── reports │ │ │ ├── blocks.json │ │ │ └── packets.json │ ├── V1_19 │ │ ├── data │ │ │ └── minecraft │ │ │ │ ├── chat_type │ │ │ │ └── chat.json │ │ │ │ ├── dimension_type │ │ │ │ ├── overworld.json │ │ │ │ ├── the_end.json │ │ │ │ └── the_nether.json │ │ │ │ └── worldgen │ │ │ │ └── biome │ │ │ │ └── plains.json │ │ └── reports │ │ │ ├── blocks.json │ │ │ ├── packets.json │ │ │ └── registries.json │ ├── V1_19_1 │ │ └── reports │ │ │ ├── blocks.json │ │ │ └── packets.json │ ├── V1_19_3 │ │ └── reports │ │ │ ├── blocks.json │ │ │ └── packets.json │ ├── V1_19_4 │ │ ├── data │ │ │ └── minecraft │ │ │ │ ├── damage_type │ │ │ │ ├── arrow.json │ │ │ │ ├── bad_respawn_point.json │ │ │ │ ├── cactus.json │ │ │ │ ├── cramming.json │ │ │ │ ├── dragon_breath.json │ │ │ │ ├── drown.json │ │ │ │ ├── dry_out.json │ │ │ │ ├── explosion.json │ │ │ │ ├── fall.json │ │ │ │ ├── falling_anvil.json │ │ │ │ ├── falling_block.json │ │ │ │ ├── falling_stalactite.json │ │ │ │ ├── fireball.json │ │ │ │ ├── fireworks.json │ │ │ │ ├── fly_into_wall.json │ │ │ │ ├── freeze.json │ │ │ │ ├── generic.json │ │ │ │ ├── hot_floor.json │ │ │ │ ├── in_fire.json │ │ │ │ ├── in_wall.json │ │ │ │ ├── indirect_magic.json │ │ │ │ ├── lava.json │ │ │ │ ├── lightning_bolt.json │ │ │ │ ├── magic.json │ │ │ │ ├── mob_attack.json │ │ │ │ ├── mob_attack_no_aggro.json │ │ │ │ ├── mob_projectile.json │ │ │ │ ├── on_fire.json │ │ │ │ ├── out_of_world.json │ │ │ │ ├── player_attack.json │ │ │ │ ├── player_explosion.json │ │ │ │ ├── sonic_boom.json │ │ │ │ ├── stalagmite.json │ │ │ │ ├── starve.json │ │ │ │ ├── sting.json │ │ │ │ ├── sweet_berry_bush.json │ │ │ │ ├── thorns.json │ │ │ │ ├── thrown.json │ │ │ │ ├── trident.json │ │ │ │ ├── unattributed_fireball.json │ │ │ │ ├── wither.json │ │ │ │ └── wither_skull.json │ │ │ │ ├── dimension_type │ │ │ │ ├── overworld.json │ │ │ │ ├── the_end.json │ │ │ │ └── the_nether.json │ │ │ │ └── worldgen │ │ │ │ └── biome │ │ │ │ └── plains.json │ │ └── reports │ │ │ ├── blocks.json │ │ │ └── packets.json │ ├── V1_20 │ │ ├── data │ │ │ └── minecraft │ │ │ │ ├── damage_type │ │ │ │ ├── arrow.json │ │ │ │ ├── bad_respawn_point.json │ │ │ │ ├── cactus.json │ │ │ │ ├── cramming.json │ │ │ │ ├── dragon_breath.json │ │ │ │ ├── drown.json │ │ │ │ ├── dry_out.json │ │ │ │ ├── explosion.json │ │ │ │ ├── fall.json │ │ │ │ ├── falling_anvil.json │ │ │ │ ├── falling_block.json │ │ │ │ ├── falling_stalactite.json │ │ │ │ ├── fireball.json │ │ │ │ ├── fireworks.json │ │ │ │ ├── fly_into_wall.json │ │ │ │ ├── freeze.json │ │ │ │ ├── generic.json │ │ │ │ ├── generic_kill.json │ │ │ │ ├── hot_floor.json │ │ │ │ ├── in_fire.json │ │ │ │ ├── in_wall.json │ │ │ │ ├── indirect_magic.json │ │ │ │ ├── lava.json │ │ │ │ ├── lightning_bolt.json │ │ │ │ ├── magic.json │ │ │ │ ├── mob_attack.json │ │ │ │ ├── mob_attack_no_aggro.json │ │ │ │ ├── mob_projectile.json │ │ │ │ ├── on_fire.json │ │ │ │ ├── out_of_world.json │ │ │ │ ├── outside_border.json │ │ │ │ ├── player_attack.json │ │ │ │ ├── player_explosion.json │ │ │ │ ├── sonic_boom.json │ │ │ │ ├── stalagmite.json │ │ │ │ ├── starve.json │ │ │ │ ├── sting.json │ │ │ │ ├── sweet_berry_bush.json │ │ │ │ ├── thorns.json │ │ │ │ ├── thrown.json │ │ │ │ ├── trident.json │ │ │ │ ├── unattributed_fireball.json │ │ │ │ ├── wither.json │ │ │ │ └── wither_skull.json │ │ │ │ ├── dimension_type │ │ │ │ ├── overworld.json │ │ │ │ ├── the_end.json │ │ │ │ └── the_nether.json │ │ │ │ └── worldgen │ │ │ │ └── biome │ │ │ │ └── plains.json │ │ └── reports │ │ │ ├── blocks.json │ │ │ ├── packets.json │ │ │ └── registries.json │ ├── V1_20_2 │ │ ├── data │ │ │ └── minecraft │ │ │ │ ├── damage_type │ │ │ │ ├── arrow.json │ │ │ │ ├── bad_respawn_point.json │ │ │ │ ├── cactus.json │ │ │ │ ├── cramming.json │ │ │ │ ├── dragon_breath.json │ │ │ │ ├── drown.json │ │ │ │ ├── dry_out.json │ │ │ │ ├── explosion.json │ │ │ │ ├── fall.json │ │ │ │ ├── falling_anvil.json │ │ │ │ ├── falling_block.json │ │ │ │ ├── falling_stalactite.json │ │ │ │ ├── fireball.json │ │ │ │ ├── fireworks.json │ │ │ │ ├── fly_into_wall.json │ │ │ │ ├── freeze.json │ │ │ │ ├── generic.json │ │ │ │ ├── generic_kill.json │ │ │ │ ├── hot_floor.json │ │ │ │ ├── in_fire.json │ │ │ │ ├── in_wall.json │ │ │ │ ├── indirect_magic.json │ │ │ │ ├── lava.json │ │ │ │ ├── lightning_bolt.json │ │ │ │ ├── magic.json │ │ │ │ ├── mob_attack.json │ │ │ │ ├── mob_attack_no_aggro.json │ │ │ │ ├── mob_projectile.json │ │ │ │ ├── on_fire.json │ │ │ │ ├── out_of_world.json │ │ │ │ ├── outside_border.json │ │ │ │ ├── player_attack.json │ │ │ │ ├── player_explosion.json │ │ │ │ ├── sonic_boom.json │ │ │ │ ├── stalagmite.json │ │ │ │ ├── starve.json │ │ │ │ ├── sting.json │ │ │ │ ├── sweet_berry_bush.json │ │ │ │ ├── thorns.json │ │ │ │ ├── thrown.json │ │ │ │ ├── trident.json │ │ │ │ ├── unattributed_fireball.json │ │ │ │ ├── wither.json │ │ │ │ └── wither_skull.json │ │ │ │ ├── dimension_type │ │ │ │ ├── overworld.json │ │ │ │ ├── the_end.json │ │ │ │ └── the_nether.json │ │ │ │ └── worldgen │ │ │ │ └── biome │ │ │ │ └── plains.json │ │ └── reports │ │ │ ├── blocks.json │ │ │ └── packets.json │ ├── V1_20_3 │ │ └── reports │ │ │ ├── blocks.json │ │ │ └── packets.json │ ├── V1_20_5 │ │ ├── data │ │ │ └── minecraft │ │ │ │ ├── damage_type │ │ │ │ ├── arrow.json │ │ │ │ ├── bad_respawn_point.json │ │ │ │ ├── cactus.json │ │ │ │ ├── cramming.json │ │ │ │ ├── dragon_breath.json │ │ │ │ ├── drown.json │ │ │ │ ├── dry_out.json │ │ │ │ ├── explosion.json │ │ │ │ ├── fall.json │ │ │ │ ├── falling_anvil.json │ │ │ │ ├── falling_block.json │ │ │ │ ├── falling_stalactite.json │ │ │ │ ├── fireball.json │ │ │ │ ├── fireworks.json │ │ │ │ ├── fly_into_wall.json │ │ │ │ ├── freeze.json │ │ │ │ ├── generic.json │ │ │ │ ├── generic_kill.json │ │ │ │ ├── hot_floor.json │ │ │ │ ├── in_fire.json │ │ │ │ ├── in_wall.json │ │ │ │ ├── indirect_magic.json │ │ │ │ ├── lava.json │ │ │ │ ├── lightning_bolt.json │ │ │ │ ├── magic.json │ │ │ │ ├── mob_attack.json │ │ │ │ ├── mob_attack_no_aggro.json │ │ │ │ ├── mob_projectile.json │ │ │ │ ├── on_fire.json │ │ │ │ ├── out_of_world.json │ │ │ │ ├── outside_border.json │ │ │ │ ├── player_attack.json │ │ │ │ ├── player_explosion.json │ │ │ │ ├── sonic_boom.json │ │ │ │ ├── spit.json │ │ │ │ ├── stalagmite.json │ │ │ │ ├── starve.json │ │ │ │ ├── sting.json │ │ │ │ ├── sweet_berry_bush.json │ │ │ │ ├── thorns.json │ │ │ │ ├── thrown.json │ │ │ │ ├── trident.json │ │ │ │ ├── unattributed_fireball.json │ │ │ │ ├── wither.json │ │ │ │ └── wither_skull.json │ │ │ │ ├── dimension_type │ │ │ │ ├── overworld.json │ │ │ │ ├── the_end.json │ │ │ │ └── the_nether.json │ │ │ │ ├── wolf_variant │ │ │ │ └── pale.json │ │ │ │ └── worldgen │ │ │ │ └── biome │ │ │ │ └── plains.json │ │ └── reports │ │ │ ├── blocks.json │ │ │ └── packets.json │ ├── V1_21 │ │ ├── data │ │ │ └── minecraft │ │ │ │ ├── damage_type │ │ │ │ ├── arrow.json │ │ │ │ ├── bad_respawn_point.json │ │ │ │ ├── cactus.json │ │ │ │ ├── campfire.json │ │ │ │ ├── cramming.json │ │ │ │ ├── dragon_breath.json │ │ │ │ ├── drown.json │ │ │ │ ├── dry_out.json │ │ │ │ ├── explosion.json │ │ │ │ ├── fall.json │ │ │ │ ├── falling_anvil.json │ │ │ │ ├── falling_block.json │ │ │ │ ├── falling_stalactite.json │ │ │ │ ├── fireball.json │ │ │ │ ├── fireworks.json │ │ │ │ ├── fly_into_wall.json │ │ │ │ ├── freeze.json │ │ │ │ ├── generic.json │ │ │ │ ├── generic_kill.json │ │ │ │ ├── hot_floor.json │ │ │ │ ├── in_fire.json │ │ │ │ ├── in_wall.json │ │ │ │ ├── indirect_magic.json │ │ │ │ ├── lava.json │ │ │ │ ├── lightning_bolt.json │ │ │ │ ├── magic.json │ │ │ │ ├── mob_attack.json │ │ │ │ ├── mob_attack_no_aggro.json │ │ │ │ ├── mob_projectile.json │ │ │ │ ├── on_fire.json │ │ │ │ ├── out_of_world.json │ │ │ │ ├── outside_border.json │ │ │ │ ├── player_attack.json │ │ │ │ ├── player_explosion.json │ │ │ │ ├── sonic_boom.json │ │ │ │ ├── spit.json │ │ │ │ ├── stalagmite.json │ │ │ │ ├── starve.json │ │ │ │ ├── sting.json │ │ │ │ ├── sweet_berry_bush.json │ │ │ │ ├── thorns.json │ │ │ │ ├── thrown.json │ │ │ │ ├── trident.json │ │ │ │ ├── unattributed_fireball.json │ │ │ │ ├── wind_charge.json │ │ │ │ ├── wither.json │ │ │ │ └── wither_skull.json │ │ │ │ ├── dimension_type │ │ │ │ ├── overworld.json │ │ │ │ ├── the_end.json │ │ │ │ └── the_nether.json │ │ │ │ ├── painting_variant │ │ │ │ └── fire.json │ │ │ │ ├── wolf_variant │ │ │ │ └── pale.json │ │ │ │ └── worldgen │ │ │ │ └── biome │ │ │ │ └── plains.json │ │ └── reports │ │ │ ├── blocks.json │ │ │ ├── packets.json │ │ │ └── registries.json │ ├── V1_21_2 │ │ ├── data │ │ │ └── minecraft │ │ │ │ ├── damage_type │ │ │ │ ├── arrow.json │ │ │ │ ├── bad_respawn_point.json │ │ │ │ ├── cactus.json │ │ │ │ ├── campfire.json │ │ │ │ ├── cramming.json │ │ │ │ ├── dragon_breath.json │ │ │ │ ├── drown.json │ │ │ │ ├── dry_out.json │ │ │ │ ├── ender_pearl.json │ │ │ │ ├── explosion.json │ │ │ │ ├── fall.json │ │ │ │ ├── falling_anvil.json │ │ │ │ ├── falling_block.json │ │ │ │ ├── falling_stalactite.json │ │ │ │ ├── fireball.json │ │ │ │ ├── fireworks.json │ │ │ │ ├── fly_into_wall.json │ │ │ │ ├── freeze.json │ │ │ │ ├── generic.json │ │ │ │ ├── generic_kill.json │ │ │ │ ├── hot_floor.json │ │ │ │ ├── in_fire.json │ │ │ │ ├── in_wall.json │ │ │ │ ├── indirect_magic.json │ │ │ │ ├── lava.json │ │ │ │ ├── lightning_bolt.json │ │ │ │ ├── mace_smash.json │ │ │ │ ├── magic.json │ │ │ │ ├── mob_attack.json │ │ │ │ ├── mob_attack_no_aggro.json │ │ │ │ ├── mob_projectile.json │ │ │ │ ├── on_fire.json │ │ │ │ ├── out_of_world.json │ │ │ │ ├── outside_border.json │ │ │ │ ├── player_attack.json │ │ │ │ ├── player_explosion.json │ │ │ │ ├── sonic_boom.json │ │ │ │ ├── spit.json │ │ │ │ ├── stalagmite.json │ │ │ │ ├── starve.json │ │ │ │ ├── sting.json │ │ │ │ ├── sweet_berry_bush.json │ │ │ │ ├── thorns.json │ │ │ │ ├── thrown.json │ │ │ │ ├── trident.json │ │ │ │ ├── unattributed_fireball.json │ │ │ │ ├── wind_charge.json │ │ │ │ ├── wither.json │ │ │ │ └── wither_skull.json │ │ │ │ ├── dimension_type │ │ │ │ ├── overworld.json │ │ │ │ ├── the_end.json │ │ │ │ └── the_nether.json │ │ │ │ ├── painting_variant │ │ │ │ └── fire.json │ │ │ │ ├── wolf_variant │ │ │ │ └── pale.json │ │ │ │ └── worldgen │ │ │ │ └── biome │ │ │ │ └── plains.json │ │ └── reports │ │ │ ├── blocks.json │ │ │ ├── packets.json │ │ │ └── registries.json │ ├── V1_21_4 │ │ ├── data │ │ │ └── minecraft │ │ │ │ ├── damage_type │ │ │ │ ├── arrow.json │ │ │ │ ├── bad_respawn_point.json │ │ │ │ ├── cactus.json │ │ │ │ ├── campfire.json │ │ │ │ ├── cramming.json │ │ │ │ ├── dragon_breath.json │ │ │ │ ├── drown.json │ │ │ │ ├── dry_out.json │ │ │ │ ├── ender_pearl.json │ │ │ │ ├── explosion.json │ │ │ │ ├── fall.json │ │ │ │ ├── falling_anvil.json │ │ │ │ ├── falling_block.json │ │ │ │ ├── falling_stalactite.json │ │ │ │ ├── fireball.json │ │ │ │ ├── fireworks.json │ │ │ │ ├── fly_into_wall.json │ │ │ │ ├── freeze.json │ │ │ │ ├── generic.json │ │ │ │ ├── generic_kill.json │ │ │ │ ├── hot_floor.json │ │ │ │ ├── in_fire.json │ │ │ │ ├── in_wall.json │ │ │ │ ├── indirect_magic.json │ │ │ │ ├── lava.json │ │ │ │ ├── lightning_bolt.json │ │ │ │ ├── mace_smash.json │ │ │ │ ├── magic.json │ │ │ │ ├── mob_attack.json │ │ │ │ ├── mob_attack_no_aggro.json │ │ │ │ ├── mob_projectile.json │ │ │ │ ├── on_fire.json │ │ │ │ ├── out_of_world.json │ │ │ │ ├── outside_border.json │ │ │ │ ├── player_attack.json │ │ │ │ ├── player_explosion.json │ │ │ │ ├── sonic_boom.json │ │ │ │ ├── spit.json │ │ │ │ ├── stalagmite.json │ │ │ │ ├── starve.json │ │ │ │ ├── sting.json │ │ │ │ ├── sweet_berry_bush.json │ │ │ │ ├── thorns.json │ │ │ │ ├── thrown.json │ │ │ │ ├── trident.json │ │ │ │ ├── unattributed_fireball.json │ │ │ │ ├── wind_charge.json │ │ │ │ ├── wither.json │ │ │ │ └── wither_skull.json │ │ │ │ ├── dimension_type │ │ │ │ ├── overworld.json │ │ │ │ ├── the_end.json │ │ │ │ └── the_nether.json │ │ │ │ ├── painting_variant │ │ │ │ └── fire.json │ │ │ │ ├── wolf_variant │ │ │ │ └── pale.json │ │ │ │ └── worldgen │ │ │ │ └── biome │ │ │ │ └── plains.json │ │ └── reports │ │ │ ├── blocks.json │ │ │ └── packets.json │ ├── V1_21_5 │ │ ├── data │ │ │ └── minecraft │ │ │ │ ├── cat_variant │ │ │ │ └── red.json │ │ │ │ ├── chicken_variant │ │ │ │ └── temperate.json │ │ │ │ ├── cow_variant │ │ │ │ └── temperate.json │ │ │ │ ├── damage_type │ │ │ │ ├── arrow.json │ │ │ │ ├── bad_respawn_point.json │ │ │ │ ├── cactus.json │ │ │ │ ├── campfire.json │ │ │ │ ├── cramming.json │ │ │ │ ├── dragon_breath.json │ │ │ │ ├── drown.json │ │ │ │ ├── dry_out.json │ │ │ │ ├── ender_pearl.json │ │ │ │ ├── explosion.json │ │ │ │ ├── fall.json │ │ │ │ ├── falling_anvil.json │ │ │ │ ├── falling_block.json │ │ │ │ ├── falling_stalactite.json │ │ │ │ ├── fireball.json │ │ │ │ ├── fireworks.json │ │ │ │ ├── fly_into_wall.json │ │ │ │ ├── freeze.json │ │ │ │ ├── generic.json │ │ │ │ ├── generic_kill.json │ │ │ │ ├── hot_floor.json │ │ │ │ ├── in_fire.json │ │ │ │ ├── in_wall.json │ │ │ │ ├── indirect_magic.json │ │ │ │ ├── lava.json │ │ │ │ ├── lightning_bolt.json │ │ │ │ ├── mace_smash.json │ │ │ │ ├── magic.json │ │ │ │ ├── mob_attack.json │ │ │ │ ├── mob_attack_no_aggro.json │ │ │ │ ├── mob_projectile.json │ │ │ │ ├── on_fire.json │ │ │ │ ├── out_of_world.json │ │ │ │ ├── outside_border.json │ │ │ │ ├── player_attack.json │ │ │ │ ├── player_explosion.json │ │ │ │ ├── sonic_boom.json │ │ │ │ ├── spit.json │ │ │ │ ├── stalagmite.json │ │ │ │ ├── starve.json │ │ │ │ ├── sting.json │ │ │ │ ├── sweet_berry_bush.json │ │ │ │ ├── thorns.json │ │ │ │ ├── thrown.json │ │ │ │ ├── trident.json │ │ │ │ ├── unattributed_fireball.json │ │ │ │ ├── wind_charge.json │ │ │ │ ├── wither.json │ │ │ │ └── wither_skull.json │ │ │ │ ├── dimension_type │ │ │ │ ├── overworld.json │ │ │ │ ├── the_end.json │ │ │ │ └── the_nether.json │ │ │ │ ├── frog_variant │ │ │ │ └── temperate.json │ │ │ │ ├── painting_variant │ │ │ │ └── fire.json │ │ │ │ ├── pig_variant │ │ │ │ └── temperate.json │ │ │ │ ├── wolf_sound_variant │ │ │ │ └── classic.json │ │ │ │ ├── wolf_variant │ │ │ │ └── pale.json │ │ │ │ └── worldgen │ │ │ │ └── biome │ │ │ │ └── plains.json │ │ └── reports │ │ │ ├── blocks.json │ │ │ ├── packets.json │ │ │ └── registries.json │ ├── V1_21_6 │ │ ├── data │ │ │ └── minecraft │ │ │ │ ├── cat_variant │ │ │ │ └── red.json │ │ │ │ ├── chicken_variant │ │ │ │ └── temperate.json │ │ │ │ ├── cow_variant │ │ │ │ └── temperate.json │ │ │ │ ├── damage_type │ │ │ │ ├── arrow.json │ │ │ │ ├── bad_respawn_point.json │ │ │ │ ├── cactus.json │ │ │ │ ├── campfire.json │ │ │ │ ├── cramming.json │ │ │ │ ├── dragon_breath.json │ │ │ │ ├── drown.json │ │ │ │ ├── dry_out.json │ │ │ │ ├── ender_pearl.json │ │ │ │ ├── explosion.json │ │ │ │ ├── fall.json │ │ │ │ ├── falling_anvil.json │ │ │ │ ├── falling_block.json │ │ │ │ ├── falling_stalactite.json │ │ │ │ ├── fireball.json │ │ │ │ ├── fireworks.json │ │ │ │ ├── fly_into_wall.json │ │ │ │ ├── freeze.json │ │ │ │ ├── generic.json │ │ │ │ ├── generic_kill.json │ │ │ │ ├── hot_floor.json │ │ │ │ ├── in_fire.json │ │ │ │ ├── in_wall.json │ │ │ │ ├── indirect_magic.json │ │ │ │ ├── lava.json │ │ │ │ ├── lightning_bolt.json │ │ │ │ ├── mace_smash.json │ │ │ │ ├── magic.json │ │ │ │ ├── mob_attack.json │ │ │ │ ├── mob_attack_no_aggro.json │ │ │ │ ├── mob_projectile.json │ │ │ │ ├── on_fire.json │ │ │ │ ├── out_of_world.json │ │ │ │ ├── outside_border.json │ │ │ │ ├── player_attack.json │ │ │ │ ├── player_explosion.json │ │ │ │ ├── sonic_boom.json │ │ │ │ ├── spit.json │ │ │ │ ├── stalagmite.json │ │ │ │ ├── starve.json │ │ │ │ ├── sting.json │ │ │ │ ├── sweet_berry_bush.json │ │ │ │ ├── thorns.json │ │ │ │ ├── thrown.json │ │ │ │ ├── trident.json │ │ │ │ ├── unattributed_fireball.json │ │ │ │ ├── wind_charge.json │ │ │ │ ├── wither.json │ │ │ │ └── wither_skull.json │ │ │ │ ├── dimension_type │ │ │ │ ├── overworld.json │ │ │ │ ├── the_end.json │ │ │ │ └── the_nether.json │ │ │ │ ├── frog_variant │ │ │ │ └── temperate.json │ │ │ │ ├── painting_variant │ │ │ │ └── fire.json │ │ │ │ ├── pig_variant │ │ │ │ └── temperate.json │ │ │ │ ├── wolf_sound_variant │ │ │ │ └── classic.json │ │ │ │ ├── wolf_variant │ │ │ │ └── pale.json │ │ │ │ └── worldgen │ │ │ │ └── biome │ │ │ │ └── plains.json │ │ └── reports │ │ │ ├── blocks.json │ │ │ └── packets.json │ ├── V1_21_7 │ │ └── reports │ │ │ └── blocks.json │ ├── V1_21_9 │ │ └── reports │ │ │ ├── blocks.json │ │ │ ├── packets.json │ │ │ └── registries.json │ ├── V1_7_2 │ │ └── reports │ │ │ └── packets.json │ ├── V1_8 │ │ └── reports │ │ │ └── packets.json │ ├── V1_9 │ │ └── reports │ │ │ └── packets.json │ └── V1_9_3 │ │ └── reports │ │ └── packets.json ├── mise.toml ├── package-lock.json ├── package.json ├── schematics │ └── spawn.schem ├── src │ ├── clean │ │ └── cleanData.ts │ ├── fetch │ │ ├── fileExists.ts │ │ └── serverJar.ts │ ├── generate.ts │ └── launcher_profiles.ts └── tsconfig.json ├── docker-compose.yml ├── docs ├── .vitepress │ └── config.mts ├── about │ ├── benchmarks.md │ ├── cli-usage.md │ ├── comparison.md │ ├── faq.md │ ├── installation.md │ ├── introduction.md │ └── supported-versions.md ├── config │ ├── boss-bar.md │ ├── compression.md │ ├── default-configuration.md │ ├── introduction.md │ ├── proxy-integration.md │ ├── schematic-loading.md │ ├── server-list.md │ ├── server-settings.md │ ├── tab-list.md │ ├── title.md │ └── world.md ├── customization │ └── message-formatting.md ├── index.md ├── public │ ├── PicoLimbo.png │ ├── favicon.png │ ├── pico_limbo_installation.sh │ ├── tutorial-automatic-reconnect.gif │ └── world.png ├── tutorials │ ├── fallback-server.md │ └── schematic-conversion.md └── updates │ └── v1.6.0.md ├── package.json ├── pico_limbo ├── Cargo.toml └── src │ ├── cli.rs │ ├── configuration │ ├── boss_bar.rs │ ├── compression.rs │ ├── config.rs │ ├── forwarding.rs │ ├── game_mode_config.rs │ ├── mod.rs │ ├── require_boolean.rs │ ├── server_list.rs │ ├── tab_list.rs │ ├── title.rs │ └── world_config │ │ ├── boundaries.rs │ │ ├── experimental.rs │ │ ├── mod.rs │ │ ├── spawn_dimension.rs │ │ └── time.rs │ ├── forwarding │ ├── check_bungee_cord.rs │ ├── check_velocity_key_integrity.rs │ ├── forwarding_result.rs │ └── mod.rs │ ├── handlers │ ├── configuration.rs │ ├── handshake.rs │ ├── login │ │ ├── custom_query_answer.rs │ │ ├── login_acknowledged.rs │ │ ├── login_start.rs │ │ └── mod.rs │ ├── mod.rs │ ├── play │ │ ├── commands.rs │ │ ├── fetch_minecraft_profile.rs │ │ ├── mod.rs │ │ ├── send_chunks_circularly.rs │ │ ├── set_player_pos.rs │ │ └── set_player_position_and_rotation.rs │ └── status │ │ ├── mod.rs │ │ ├── ping_request.rs │ │ └── status_request.rs │ ├── kick_messages.rs │ ├── main.rs │ ├── server │ ├── batch.rs │ ├── client_data.rs │ ├── client_state.rs │ ├── controllable_interval.rs │ ├── game_mode.rs │ ├── game_profile.rs │ ├── mod.rs │ ├── network.rs │ ├── packet_handler.rs │ ├── packet_registry.rs │ ├── shutdown_signal.rs │ └── start_server.rs │ └── server_state.rs └── pterodactyl └── eggs ├── egg-pico-limbo--debian.json └── egg-pico-limbo.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/.github/workflows/deploy-docs.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/README.md -------------------------------------------------------------------------------- /crates/blocks_report/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/blocks_report/Cargo.toml -------------------------------------------------------------------------------- /crates/blocks_report/build/block_entity_loader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/blocks_report/build/block_entity_loader.rs -------------------------------------------------------------------------------- /crates/blocks_report/build/blocks_report_loader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/blocks_report/build/blocks_report_loader.rs -------------------------------------------------------------------------------- /crates/blocks_report/build/build_report_mappings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/blocks_report/build/build_report_mappings.rs -------------------------------------------------------------------------------- /crates/blocks_report/build/internal_mapping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/blocks_report/build/internal_mapping.rs -------------------------------------------------------------------------------- /crates/blocks_report/build/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/blocks_report/build/main.rs -------------------------------------------------------------------------------- /crates/blocks_report/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/blocks_report/src/lib.rs -------------------------------------------------------------------------------- /crates/blocks_report_data/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/blocks_report_data/Cargo.toml -------------------------------------------------------------------------------- /crates/blocks_report_data/src/block_state_builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/blocks_report_data/src/block_state_builder.rs -------------------------------------------------------------------------------- /crates/blocks_report_data/src/internal_mapping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/blocks_report_data/src/internal_mapping.rs -------------------------------------------------------------------------------- /crates/blocks_report_data/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/blocks_report_data/src/lib.rs -------------------------------------------------------------------------------- /crates/blocks_report_data/src/report_mapping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/blocks_report_data/src/report_mapping.rs -------------------------------------------------------------------------------- /crates/macros/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/macros/Cargo.toml -------------------------------------------------------------------------------- /crates/macros/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/macros/src/lib.rs -------------------------------------------------------------------------------- /crates/macros/src/packet_in.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/macros/src/packet_in.rs -------------------------------------------------------------------------------- /crates/macros/src/packet_out.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/macros/src/packet_out.rs -------------------------------------------------------------------------------- /crates/macros/src/packet_reports.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/macros/src/packet_reports.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/Cargo.toml -------------------------------------------------------------------------------- /crates/minecraft_packets/src/configuration/data/known_pack.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/configuration/data/known_pack.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/configuration/data/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/configuration/data/mod.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/configuration/data/registry_entry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/configuration/data/registry_entry.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/configuration/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/configuration/mod.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/configuration/registry_data_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/configuration/registry_data_packet.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/handshaking/handshake_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/handshaking/handshake_packet.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/handshaking/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod handshake_packet; 2 | -------------------------------------------------------------------------------- /crates/minecraft_packets/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/lib.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/login/custom_query_answer_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/login/custom_query_answer_packet.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/login/custom_query_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/login/custom_query_packet.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/login/data/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod property; 2 | -------------------------------------------------------------------------------- /crates/minecraft_packets/src/login/data/property.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/login/data/property.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/login/game_profile_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/login/game_profile_packet.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/login/login_acknowledged_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/login/login_acknowledged_packet.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/login/login_disconnect_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/login/login_disconnect_packet.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/login/login_state_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/login/login_state_packet.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/login/login_success_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/login/login_success_packet.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/login/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/login/mod.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/login/set_compression_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/login/set_compression_packet.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/play/boss_bar_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/play/boss_bar_packet.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/play/chat_command_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/play/chat_command_packet.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/play/chat_message_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/play/chat_message_packet.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/play/client_bound_keep_alive_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/play/client_bound_keep_alive_packet.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/play/commands_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/play/commands_packet.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/play/data/block_pos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/play/data/block_pos.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/play/data/chunk_context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/play/data/chunk_context.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/play/data/chunk_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/play/data/chunk_data.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/play/data/chunk_section.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/play/data/chunk_section.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/play/data/death_location.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/play/data/death_location.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/play/data/encode_as_bytes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/play/data/encode_as_bytes.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/play/data/light_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/play/data/light_data.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/play/data/login_packet_data/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/play/data/login_packet_data/mod.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/play/data/login_packet_data/post_v1_16.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/play/data/login_packet_data/post_v1_16.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/play/data/login_packet_data/pre_v1_16.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/play/data/login_packet_data/pre_v1_16.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/play/data/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/play/data/mod.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/play/data/palette_container.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/play/data/palette_container.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/play/disconnect_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/play/disconnect_packet.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/play/game_event_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/play/game_event_packet.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/play/legacy_chat_message_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/play/legacy_chat_message_packet.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/play/legacy_set_title_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/play/legacy_set_title_packet.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/play/login_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/play/login_packet.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/play/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/play/mod.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/play/player_info_update_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/play/player_info_update_packet.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/play/player_position_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/play/player_position_packet.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/play/set_action_bar_text_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/play/set_action_bar_text_packet.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/play/set_chunk_cache_center_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/play/set_chunk_cache_center_packet.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/play/set_entity_data_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/play/set_entity_data_packet.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/play/set_player_position_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/play/set_player_position_packet.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/play/set_subtitle_text_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/play/set_subtitle_text_packet.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/play/set_title_text_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/play/set_title_text_packet.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/play/set_titles_animation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/play/set_titles_animation.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/play/system_chat_message_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/play/system_chat_message_packet.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/play/tab_list_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/play/tab_list_packet.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/play/update_time_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/play/update_time_packet.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/status/data/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod status_response; 2 | -------------------------------------------------------------------------------- /crates/minecraft_packets/src/status/data/status_response.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/status/data/status_response.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/status/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/status/mod.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/status/ping_request_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/status/ping_request_packet.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/status/ping_response_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/status/ping_response_packet.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/status/status_request_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/status/status_request_packet.rs -------------------------------------------------------------------------------- /crates/minecraft_packets/src/status/status_response_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_packets/src/status/status_response_packet.rs -------------------------------------------------------------------------------- /crates/minecraft_protocol/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_protocol/Cargo.toml -------------------------------------------------------------------------------- /crates/minecraft_protocol/src/data/coordinates.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_protocol/src/data/coordinates.rs -------------------------------------------------------------------------------- /crates/minecraft_protocol/src/data/dimension.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_protocol/src/data/dimension.rs -------------------------------------------------------------------------------- /crates/minecraft_protocol/src/data/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_protocol/src/data/mod.rs -------------------------------------------------------------------------------- /crates/minecraft_protocol/src/data_types/bit_set.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_protocol/src/data_types/bit_set.rs -------------------------------------------------------------------------------- /crates/minecraft_protocol/src/data_types/boolean.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_protocol/src/data_types/boolean.rs -------------------------------------------------------------------------------- /crates/minecraft_protocol/src/data_types/identifier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_protocol/src/data_types/identifier.rs -------------------------------------------------------------------------------- /crates/minecraft_protocol/src/data_types/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_protocol/src/data_types/mod.rs -------------------------------------------------------------------------------- /crates/minecraft_protocol/src/data_types/nbt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_protocol/src/data_types/nbt.rs -------------------------------------------------------------------------------- /crates/minecraft_protocol/src/data_types/number.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_protocol/src/data_types/number.rs -------------------------------------------------------------------------------- /crates/minecraft_protocol/src/data_types/optional.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_protocol/src/data_types/optional.rs -------------------------------------------------------------------------------- /crates/minecraft_protocol/src/data_types/position.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_protocol/src/data_types/position.rs -------------------------------------------------------------------------------- /crates/minecraft_protocol/src/data_types/prefixed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_protocol/src/data_types/prefixed.rs -------------------------------------------------------------------------------- /crates/minecraft_protocol/src/data_types/slices.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_protocol/src/data_types/slices.rs -------------------------------------------------------------------------------- /crates/minecraft_protocol/src/data_types/string.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_protocol/src/data_types/string.rs -------------------------------------------------------------------------------- /crates/minecraft_protocol/src/data_types/uuid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_protocol/src/data_types/uuid.rs -------------------------------------------------------------------------------- /crates/minecraft_protocol/src/data_types/var_int.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_protocol/src/data_types/var_int.rs -------------------------------------------------------------------------------- /crates/minecraft_protocol/src/data_types/vec_no_length.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_protocol/src/data_types/vec_no_length.rs -------------------------------------------------------------------------------- /crates/minecraft_protocol/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_protocol/src/lib.rs -------------------------------------------------------------------------------- /crates/minecraft_protocol/src/packet_serializer/decode_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_protocol/src/packet_serializer/decode_packet.rs -------------------------------------------------------------------------------- /crates/minecraft_protocol/src/packet_serializer/encode_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_protocol/src/packet_serializer/encode_packet.rs -------------------------------------------------------------------------------- /crates/minecraft_protocol/src/packet_serializer/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_protocol/src/packet_serializer/mod.rs -------------------------------------------------------------------------------- /crates/minecraft_protocol/src/packet_serializer/packet_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_protocol/src/packet_serializer/packet_id.rs -------------------------------------------------------------------------------- /crates/minecraft_protocol/src/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/minecraft_protocol/src/state.rs -------------------------------------------------------------------------------- /crates/net/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/net/Cargo.toml -------------------------------------------------------------------------------- /crates/net/src/get_packet_length.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/net/src/get_packet_length.rs -------------------------------------------------------------------------------- /crates/net/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/net/src/lib.rs -------------------------------------------------------------------------------- /crates/net/src/packet_stream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/net/src/packet_stream.rs -------------------------------------------------------------------------------- /crates/net/src/raw_packet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/net/src/raw_packet.rs -------------------------------------------------------------------------------- /crates/pico_binutils/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/pico_binutils/Cargo.toml -------------------------------------------------------------------------------- /crates/pico_binutils/src/binary_reader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/pico_binutils/src/binary_reader.rs -------------------------------------------------------------------------------- /crates/pico_binutils/src/binary_writer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/pico_binutils/src/binary_writer.rs -------------------------------------------------------------------------------- /crates/pico_binutils/src/length_prefixed/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/pico_binutils/src/length_prefixed/mod.rs -------------------------------------------------------------------------------- /crates/pico_binutils/src/length_prefixed/prefixed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/pico_binutils/src/length_prefixed/prefixed.rs -------------------------------------------------------------------------------- /crates/pico_binutils/src/length_prefixed/reader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/pico_binutils/src/length_prefixed/reader.rs -------------------------------------------------------------------------------- /crates/pico_binutils/src/length_prefixed/var_int.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/pico_binutils/src/length_prefixed/var_int.rs -------------------------------------------------------------------------------- /crates/pico_binutils/src/length_prefixed/writer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/pico_binutils/src/length_prefixed/writer.rs -------------------------------------------------------------------------------- /crates/pico_binutils/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/pico_binutils/src/lib.rs -------------------------------------------------------------------------------- /crates/pico_binutils/src/uuid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/pico_binutils/src/uuid.rs -------------------------------------------------------------------------------- /crates/pico_binutils/src/var_int.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/pico_binutils/src/var_int.rs -------------------------------------------------------------------------------- /crates/pico_nbt/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/pico_nbt/Cargo.toml -------------------------------------------------------------------------------- /crates/pico_nbt/benches/bench_nbt_to_bytes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/pico_nbt/benches/bench_nbt_to_bytes.rs -------------------------------------------------------------------------------- /crates/pico_nbt/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/pico_nbt/src/lib.rs -------------------------------------------------------------------------------- /crates/pico_nbt/src/nbt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/pico_nbt/src/nbt.rs -------------------------------------------------------------------------------- /crates/pico_nbt/src/nbt_context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/pico_nbt/src/nbt_context.rs -------------------------------------------------------------------------------- /crates/pico_nbt/src/nbt_from_bytes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/pico_nbt/src/nbt_from_bytes.rs -------------------------------------------------------------------------------- /crates/pico_nbt/src/nbt_from_json.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/pico_nbt/src/nbt_from_json.rs -------------------------------------------------------------------------------- /crates/pico_nbt/src/nbt_version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/pico_nbt/src/nbt_version.rs -------------------------------------------------------------------------------- /crates/pico_nbt/tests/nbt_from_json.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/pico_nbt/tests/nbt_from_json.rs -------------------------------------------------------------------------------- /crates/pico_structures/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/pico_structures/Cargo.toml -------------------------------------------------------------------------------- /crates/pico_structures/src/block_entities/generic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/pico_structures/src/block_entities/generic.rs -------------------------------------------------------------------------------- /crates/pico_structures/src/block_entities/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/pico_structures/src/block_entities/mod.rs -------------------------------------------------------------------------------- /crates/pico_structures/src/block_entities/sign.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/pico_structures/src/block_entities/sign.rs -------------------------------------------------------------------------------- /crates/pico_structures/src/chunk_processor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/pico_structures/src/chunk_processor.rs -------------------------------------------------------------------------------- /crates/pico_structures/src/decompress.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/pico_structures/src/decompress.rs -------------------------------------------------------------------------------- /crates/pico_structures/src/internal_block_entity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/pico_structures/src/internal_block_entity.rs -------------------------------------------------------------------------------- /crates/pico_structures/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/pico_structures/src/lib.rs -------------------------------------------------------------------------------- /crates/pico_structures/src/pack_direct.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/pico_structures/src/pack_direct.rs -------------------------------------------------------------------------------- /crates/pico_structures/src/palette.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/pico_structures/src/palette.rs -------------------------------------------------------------------------------- /crates/pico_structures/src/schematic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/pico_structures/src/schematic.rs -------------------------------------------------------------------------------- /crates/pico_structures/src/world.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/pico_structures/src/world.rs -------------------------------------------------------------------------------- /crates/pico_text_component/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/pico_text_component/Cargo.toml -------------------------------------------------------------------------------- /crates/pico_text_component/src/component.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/pico_text_component/src/component.rs -------------------------------------------------------------------------------- /crates/pico_text_component/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/pico_text_component/src/lib.rs -------------------------------------------------------------------------------- /crates/pico_text_component/src/mini_message.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/pico_text_component/src/mini_message.rs -------------------------------------------------------------------------------- /crates/protocol_version/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/protocol_version/Cargo.toml -------------------------------------------------------------------------------- /crates/protocol_version/src/lib.rs: -------------------------------------------------------------------------------- 1 | pub mod protocol_version; 2 | -------------------------------------------------------------------------------- /crates/protocol_version/src/protocol_version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/protocol_version/src/protocol_version.rs -------------------------------------------------------------------------------- /crates/protocol_version_macro/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/protocol_version_macro/Cargo.toml -------------------------------------------------------------------------------- /crates/protocol_version_macro/src/expand.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/protocol_version_macro/src/expand.rs -------------------------------------------------------------------------------- /crates/protocol_version_macro/src/find_min_max_variants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/protocol_version_macro/src/find_min_max_variants.rs -------------------------------------------------------------------------------- /crates/protocol_version_macro/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/protocol_version_macro/src/lib.rs -------------------------------------------------------------------------------- /crates/protocol_version_macro/src/parsed_variant.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/protocol_version_macro/src/parsed_variant.rs -------------------------------------------------------------------------------- /crates/protocol_version_macro/src/pvn_attribute.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/protocol_version_macro/src/pvn_attribute.rs -------------------------------------------------------------------------------- /crates/protocol_version_macro/tests/protocol_version_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/protocol_version_macro/tests/protocol_version_test.rs -------------------------------------------------------------------------------- /crates/registries/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/registries/Cargo.toml -------------------------------------------------------------------------------- /crates/registries/build/get_all_registries.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/registries/build/get_all_registries.rs -------------------------------------------------------------------------------- /crates/registries/build/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/registries/build/main.rs -------------------------------------------------------------------------------- /crates/registries/build/registries_indexes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/registries/build/registries_indexes.rs -------------------------------------------------------------------------------- /crates/registries/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/registries/src/lib.rs -------------------------------------------------------------------------------- /crates/registries_data/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/registries_data/Cargo.toml -------------------------------------------------------------------------------- /crates/registries_data/src/grouped_registries.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/registries_data/src/grouped_registries.rs -------------------------------------------------------------------------------- /crates/registries_data/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/registries_data/src/lib.rs -------------------------------------------------------------------------------- /crates/registries_data/src/registry_format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/crates/registries_data/src/registry_format.rs -------------------------------------------------------------------------------- /data/biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/biome.json -------------------------------------------------------------------------------- /data/generated/Any/reports/packets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/Any/reports/packets.json -------------------------------------------------------------------------------- /data/generated/V1_10/reports/packets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_10/reports/packets.json -------------------------------------------------------------------------------- /data/generated/V1_11/reports/packets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_11/reports/packets.json -------------------------------------------------------------------------------- /data/generated/V1_12/reports/packets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_12/reports/packets.json -------------------------------------------------------------------------------- /data/generated/V1_12_1/reports/packets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_12_1/reports/packets.json -------------------------------------------------------------------------------- /data/generated/V1_13/reports/packets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_13/reports/packets.json -------------------------------------------------------------------------------- /data/generated/V1_14/reports/packets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_14/reports/packets.json -------------------------------------------------------------------------------- /data/generated/V1_15/reports/packets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_15/reports/packets.json -------------------------------------------------------------------------------- /data/generated/V1_16/data/minecraft/dimension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_16/data/minecraft/dimension.json -------------------------------------------------------------------------------- /data/generated/V1_16/reports/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_16/reports/blocks.json -------------------------------------------------------------------------------- /data/generated/V1_16/reports/packets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_16/reports/packets.json -------------------------------------------------------------------------------- /data/generated/V1_16/reports/registries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_16/reports/registries.json -------------------------------------------------------------------------------- /data/generated/V1_16_1/reports/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_16_1/reports/blocks.json -------------------------------------------------------------------------------- /data/generated/V1_16_2/data/minecraft/dimension_type/overworld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_16_2/data/minecraft/dimension_type/overworld.json -------------------------------------------------------------------------------- /data/generated/V1_16_2/data/minecraft/dimension_type/the_end.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_16_2/data/minecraft/dimension_type/the_end.json -------------------------------------------------------------------------------- /data/generated/V1_16_2/data/minecraft/dimension_type/the_nether.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_16_2/data/minecraft/dimension_type/the_nether.json -------------------------------------------------------------------------------- /data/generated/V1_16_2/data/minecraft/worldgen/biome/plains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_16_2/data/minecraft/worldgen/biome/plains.json -------------------------------------------------------------------------------- /data/generated/V1_16_2/reports/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_16_2/reports/blocks.json -------------------------------------------------------------------------------- /data/generated/V1_16_2/reports/packets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_16_2/reports/packets.json -------------------------------------------------------------------------------- /data/generated/V1_16_3/reports/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_16_3/reports/blocks.json -------------------------------------------------------------------------------- /data/generated/V1_16_4/reports/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_16_4/reports/blocks.json -------------------------------------------------------------------------------- /data/generated/V1_17/data/minecraft/dimension_type/overworld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_17/data/minecraft/dimension_type/overworld.json -------------------------------------------------------------------------------- /data/generated/V1_17/data/minecraft/dimension_type/the_end.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_17/data/minecraft/dimension_type/the_end.json -------------------------------------------------------------------------------- /data/generated/V1_17/data/minecraft/dimension_type/the_nether.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_17/data/minecraft/dimension_type/the_nether.json -------------------------------------------------------------------------------- /data/generated/V1_17/data/minecraft/worldgen/biome/plains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_17/data/minecraft/worldgen/biome/plains.json -------------------------------------------------------------------------------- /data/generated/V1_17/reports/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_17/reports/blocks.json -------------------------------------------------------------------------------- /data/generated/V1_17/reports/packets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_17/reports/packets.json -------------------------------------------------------------------------------- /data/generated/V1_17/reports/registries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_17/reports/registries.json -------------------------------------------------------------------------------- /data/generated/V1_17_1/reports/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_17_1/reports/blocks.json -------------------------------------------------------------------------------- /data/generated/V1_18/data/minecraft/dimension_type/overworld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_18/data/minecraft/dimension_type/overworld.json -------------------------------------------------------------------------------- /data/generated/V1_18/data/minecraft/dimension_type/the_end.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_18/data/minecraft/dimension_type/the_end.json -------------------------------------------------------------------------------- /data/generated/V1_18/data/minecraft/dimension_type/the_nether.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_18/data/minecraft/dimension_type/the_nether.json -------------------------------------------------------------------------------- /data/generated/V1_18/data/minecraft/worldgen/biome/plains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_18/data/minecraft/worldgen/biome/plains.json -------------------------------------------------------------------------------- /data/generated/V1_18/reports/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_18/reports/blocks.json -------------------------------------------------------------------------------- /data/generated/V1_18/reports/packets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_18/reports/packets.json -------------------------------------------------------------------------------- /data/generated/V1_18/reports/registries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_18/reports/registries.json -------------------------------------------------------------------------------- /data/generated/V1_18_2/data/minecraft/dimension_type/overworld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_18_2/data/minecraft/dimension_type/overworld.json -------------------------------------------------------------------------------- /data/generated/V1_18_2/data/minecraft/dimension_type/the_end.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_18_2/data/minecraft/dimension_type/the_end.json -------------------------------------------------------------------------------- /data/generated/V1_18_2/data/minecraft/dimension_type/the_nether.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_18_2/data/minecraft/dimension_type/the_nether.json -------------------------------------------------------------------------------- /data/generated/V1_18_2/data/minecraft/worldgen/biome/plains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_18_2/data/minecraft/worldgen/biome/plains.json -------------------------------------------------------------------------------- /data/generated/V1_18_2/reports/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_18_2/reports/blocks.json -------------------------------------------------------------------------------- /data/generated/V1_18_2/reports/packets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_18_2/reports/packets.json -------------------------------------------------------------------------------- /data/generated/V1_19/data/minecraft/chat_type/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19/data/minecraft/chat_type/chat.json -------------------------------------------------------------------------------- /data/generated/V1_19/data/minecraft/dimension_type/overworld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19/data/minecraft/dimension_type/overworld.json -------------------------------------------------------------------------------- /data/generated/V1_19/data/minecraft/dimension_type/the_end.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19/data/minecraft/dimension_type/the_end.json -------------------------------------------------------------------------------- /data/generated/V1_19/data/minecraft/dimension_type/the_nether.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19/data/minecraft/dimension_type/the_nether.json -------------------------------------------------------------------------------- /data/generated/V1_19/data/minecraft/worldgen/biome/plains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19/data/minecraft/worldgen/biome/plains.json -------------------------------------------------------------------------------- /data/generated/V1_19/reports/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19/reports/blocks.json -------------------------------------------------------------------------------- /data/generated/V1_19/reports/packets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19/reports/packets.json -------------------------------------------------------------------------------- /data/generated/V1_19/reports/registries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19/reports/registries.json -------------------------------------------------------------------------------- /data/generated/V1_19_1/reports/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_1/reports/blocks.json -------------------------------------------------------------------------------- /data/generated/V1_19_1/reports/packets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_1/reports/packets.json -------------------------------------------------------------------------------- /data/generated/V1_19_3/reports/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_3/reports/blocks.json -------------------------------------------------------------------------------- /data/generated/V1_19_3/reports/packets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_3/reports/packets.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/data/minecraft/damage_type/arrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/data/minecraft/damage_type/arrow.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/data/minecraft/damage_type/cactus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/data/minecraft/damage_type/cactus.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/data/minecraft/damage_type/cramming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/data/minecraft/damage_type/cramming.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/data/minecraft/damage_type/dragon_breath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/data/minecraft/damage_type/dragon_breath.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/data/minecraft/damage_type/drown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/data/minecraft/damage_type/drown.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/data/minecraft/damage_type/dry_out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/data/minecraft/damage_type/dry_out.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/data/minecraft/damage_type/explosion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/data/minecraft/damage_type/explosion.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/data/minecraft/damage_type/fall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/data/minecraft/damage_type/fall.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/data/minecraft/damage_type/falling_anvil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/data/minecraft/damage_type/falling_anvil.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/data/minecraft/damage_type/falling_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/data/minecraft/damage_type/falling_block.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/data/minecraft/damage_type/fireball.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/data/minecraft/damage_type/fireball.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/data/minecraft/damage_type/fireworks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/data/minecraft/damage_type/fireworks.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/data/minecraft/damage_type/fly_into_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/data/minecraft/damage_type/fly_into_wall.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/data/minecraft/damage_type/freeze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/data/minecraft/damage_type/freeze.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/data/minecraft/damage_type/generic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/data/minecraft/damage_type/generic.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/data/minecraft/damage_type/hot_floor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/data/minecraft/damage_type/hot_floor.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/data/minecraft/damage_type/in_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/data/minecraft/damage_type/in_fire.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/data/minecraft/damage_type/in_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/data/minecraft/damage_type/in_wall.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/data/minecraft/damage_type/lava.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/data/minecraft/damage_type/lava.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/data/minecraft/damage_type/magic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/data/minecraft/damage_type/magic.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/data/minecraft/damage_type/mob_attack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/data/minecraft/damage_type/mob_attack.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/data/minecraft/damage_type/on_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/data/minecraft/damage_type/on_fire.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/data/minecraft/damage_type/out_of_world.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/data/minecraft/damage_type/out_of_world.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/data/minecraft/damage_type/player_attack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/data/minecraft/damage_type/player_attack.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/data/minecraft/damage_type/sonic_boom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/data/minecraft/damage_type/sonic_boom.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/data/minecraft/damage_type/stalagmite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/data/minecraft/damage_type/stalagmite.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/data/minecraft/damage_type/starve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/data/minecraft/damage_type/starve.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/data/minecraft/damage_type/sting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/data/minecraft/damage_type/sting.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/data/minecraft/damage_type/thorns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/data/minecraft/damage_type/thorns.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/data/minecraft/damage_type/thrown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/data/minecraft/damage_type/thrown.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/data/minecraft/damage_type/trident.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/data/minecraft/damage_type/trident.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/data/minecraft/damage_type/wither.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/data/minecraft/damage_type/wither.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/data/minecraft/damage_type/wither_skull.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/data/minecraft/damage_type/wither_skull.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/data/minecraft/dimension_type/overworld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/data/minecraft/dimension_type/overworld.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/data/minecraft/dimension_type/the_end.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/data/minecraft/dimension_type/the_end.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/data/minecraft/dimension_type/the_nether.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/data/minecraft/dimension_type/the_nether.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/data/minecraft/worldgen/biome/plains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/data/minecraft/worldgen/biome/plains.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/reports/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/reports/blocks.json -------------------------------------------------------------------------------- /data/generated/V1_19_4/reports/packets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_19_4/reports/packets.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/arrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/arrow.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/cactus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/cactus.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/cramming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/cramming.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/dragon_breath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/dragon_breath.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/drown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/drown.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/dry_out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/dry_out.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/explosion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/explosion.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/fall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/fall.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/falling_anvil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/falling_anvil.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/falling_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/falling_block.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/fireball.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/fireball.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/fireworks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/fireworks.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/fly_into_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/fly_into_wall.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/freeze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/freeze.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/generic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/generic.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/generic_kill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/generic_kill.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/hot_floor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/hot_floor.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/in_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/in_fire.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/in_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/in_wall.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/indirect_magic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/indirect_magic.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/lava.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/lava.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/lightning_bolt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/lightning_bolt.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/magic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/magic.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/mob_attack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/mob_attack.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/mob_projectile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/mob_projectile.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/on_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/on_fire.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/out_of_world.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/out_of_world.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/outside_border.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/outside_border.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/player_attack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/player_attack.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/sonic_boom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/sonic_boom.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/stalagmite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/stalagmite.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/starve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/starve.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/sting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/sting.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/thorns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/thorns.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/thrown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/thrown.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/trident.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/trident.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/wither.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/wither.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/damage_type/wither_skull.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/damage_type/wither_skull.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/dimension_type/overworld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/dimension_type/overworld.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/dimension_type/the_end.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/dimension_type/the_end.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/dimension_type/the_nether.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/dimension_type/the_nether.json -------------------------------------------------------------------------------- /data/generated/V1_20/data/minecraft/worldgen/biome/plains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/data/minecraft/worldgen/biome/plains.json -------------------------------------------------------------------------------- /data/generated/V1_20/reports/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/reports/blocks.json -------------------------------------------------------------------------------- /data/generated/V1_20/reports/packets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/reports/packets.json -------------------------------------------------------------------------------- /data/generated/V1_20/reports/registries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20/reports/registries.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/damage_type/arrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/damage_type/arrow.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/damage_type/cactus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/damage_type/cactus.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/damage_type/cramming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/damage_type/cramming.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/damage_type/dragon_breath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/damage_type/dragon_breath.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/damage_type/drown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/damage_type/drown.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/damage_type/dry_out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/damage_type/dry_out.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/damage_type/explosion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/damage_type/explosion.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/damage_type/fall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/damage_type/fall.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/damage_type/falling_anvil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/damage_type/falling_anvil.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/damage_type/falling_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/damage_type/falling_block.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/damage_type/fireball.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/damage_type/fireball.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/damage_type/fireworks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/damage_type/fireworks.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/damage_type/fly_into_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/damage_type/fly_into_wall.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/damage_type/freeze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/damage_type/freeze.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/damage_type/generic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/damage_type/generic.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/damage_type/generic_kill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/damage_type/generic_kill.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/damage_type/hot_floor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/damage_type/hot_floor.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/damage_type/in_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/damage_type/in_fire.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/damage_type/in_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/damage_type/in_wall.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/damage_type/lava.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/damage_type/lava.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/damage_type/magic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/damage_type/magic.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/damage_type/mob_attack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/damage_type/mob_attack.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/damage_type/on_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/damage_type/on_fire.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/damage_type/out_of_world.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/damage_type/out_of_world.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/damage_type/player_attack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/damage_type/player_attack.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/damage_type/sonic_boom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/damage_type/sonic_boom.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/damage_type/stalagmite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/damage_type/stalagmite.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/damage_type/starve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/damage_type/starve.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/damage_type/sting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/damage_type/sting.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/damage_type/thorns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/damage_type/thorns.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/damage_type/thrown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/damage_type/thrown.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/damage_type/trident.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/damage_type/trident.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/damage_type/wither.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/damage_type/wither.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/damage_type/wither_skull.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/damage_type/wither_skull.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/dimension_type/overworld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/dimension_type/overworld.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/dimension_type/the_end.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/dimension_type/the_end.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/dimension_type/the_nether.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/dimension_type/the_nether.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/data/minecraft/worldgen/biome/plains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/data/minecraft/worldgen/biome/plains.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/reports/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/reports/blocks.json -------------------------------------------------------------------------------- /data/generated/V1_20_2/reports/packets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_2/reports/packets.json -------------------------------------------------------------------------------- /data/generated/V1_20_3/reports/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_3/reports/blocks.json -------------------------------------------------------------------------------- /data/generated/V1_20_3/reports/packets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_3/reports/packets.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/damage_type/arrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/damage_type/arrow.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/damage_type/cactus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/damage_type/cactus.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/damage_type/cramming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/damage_type/cramming.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/damage_type/dragon_breath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/damage_type/dragon_breath.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/damage_type/drown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/damage_type/drown.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/damage_type/dry_out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/damage_type/dry_out.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/damage_type/explosion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/damage_type/explosion.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/damage_type/fall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/damage_type/fall.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/damage_type/falling_anvil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/damage_type/falling_anvil.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/damage_type/falling_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/damage_type/falling_block.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/damage_type/fireball.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/damage_type/fireball.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/damage_type/fireworks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/damage_type/fireworks.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/damage_type/fly_into_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/damage_type/fly_into_wall.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/damage_type/freeze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/damage_type/freeze.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/damage_type/generic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/damage_type/generic.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/damage_type/generic_kill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/damage_type/generic_kill.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/damage_type/hot_floor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/damage_type/hot_floor.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/damage_type/in_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/damage_type/in_fire.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/damage_type/in_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/damage_type/in_wall.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/damage_type/lava.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/damage_type/lava.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/damage_type/magic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/damage_type/magic.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/damage_type/mob_attack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/damage_type/mob_attack.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/damage_type/on_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/damage_type/on_fire.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/damage_type/out_of_world.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/damage_type/out_of_world.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/damage_type/player_attack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/damage_type/player_attack.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/damage_type/sonic_boom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/damage_type/sonic_boom.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/damage_type/spit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/damage_type/spit.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/damage_type/stalagmite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/damage_type/stalagmite.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/damage_type/starve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/damage_type/starve.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/damage_type/sting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/damage_type/sting.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/damage_type/thorns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/damage_type/thorns.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/damage_type/thrown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/damage_type/thrown.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/damage_type/trident.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/damage_type/trident.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/damage_type/wither.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/damage_type/wither.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/damage_type/wither_skull.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/damage_type/wither_skull.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/dimension_type/overworld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/dimension_type/overworld.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/dimension_type/the_end.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/dimension_type/the_end.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/dimension_type/the_nether.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/dimension_type/the_nether.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/wolf_variant/pale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/wolf_variant/pale.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/data/minecraft/worldgen/biome/plains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/data/minecraft/worldgen/biome/plains.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/reports/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/reports/blocks.json -------------------------------------------------------------------------------- /data/generated/V1_20_5/reports/packets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_20_5/reports/packets.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/arrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/arrow.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/cactus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/cactus.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/campfire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/campfire.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/cramming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/cramming.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/dragon_breath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/dragon_breath.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/drown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/drown.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/dry_out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/dry_out.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/explosion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/explosion.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/fall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/fall.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/falling_anvil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/falling_anvil.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/falling_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/falling_block.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/fireball.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/fireball.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/fireworks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/fireworks.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/fly_into_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/fly_into_wall.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/freeze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/freeze.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/generic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/generic.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/generic_kill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/generic_kill.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/hot_floor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/hot_floor.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/in_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/in_fire.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/in_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/in_wall.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/indirect_magic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/indirect_magic.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/lava.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/lava.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/lightning_bolt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/lightning_bolt.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/magic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/magic.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/mob_attack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/mob_attack.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/mob_projectile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/mob_projectile.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/on_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/on_fire.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/out_of_world.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/out_of_world.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/outside_border.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/outside_border.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/player_attack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/player_attack.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/sonic_boom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/sonic_boom.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/spit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/spit.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/stalagmite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/stalagmite.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/starve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/starve.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/sting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/sting.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/thorns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/thorns.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/thrown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/thrown.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/trident.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/trident.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/wind_charge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/wind_charge.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/wither.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/wither.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/damage_type/wither_skull.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/damage_type/wither_skull.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/dimension_type/overworld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/dimension_type/overworld.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/dimension_type/the_end.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/dimension_type/the_end.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/dimension_type/the_nether.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/dimension_type/the_nether.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/painting_variant/fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/painting_variant/fire.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/wolf_variant/pale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/wolf_variant/pale.json -------------------------------------------------------------------------------- /data/generated/V1_21/data/minecraft/worldgen/biome/plains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/data/minecraft/worldgen/biome/plains.json -------------------------------------------------------------------------------- /data/generated/V1_21/reports/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/reports/blocks.json -------------------------------------------------------------------------------- /data/generated/V1_21/reports/packets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/reports/packets.json -------------------------------------------------------------------------------- /data/generated/V1_21/reports/registries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21/reports/registries.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/arrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/arrow.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/cactus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/cactus.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/campfire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/campfire.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/cramming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/cramming.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/dragon_breath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/dragon_breath.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/drown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/drown.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/dry_out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/dry_out.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/ender_pearl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/ender_pearl.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/explosion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/explosion.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/fall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/fall.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/falling_anvil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/falling_anvil.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/falling_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/falling_block.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/fireball.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/fireball.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/fireworks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/fireworks.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/fly_into_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/fly_into_wall.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/freeze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/freeze.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/generic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/generic.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/generic_kill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/generic_kill.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/hot_floor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/hot_floor.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/in_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/in_fire.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/in_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/in_wall.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/lava.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/lava.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/mace_smash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/mace_smash.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/magic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/magic.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/mob_attack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/mob_attack.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/on_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/on_fire.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/out_of_world.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/out_of_world.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/player_attack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/player_attack.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/sonic_boom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/sonic_boom.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/spit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/spit.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/stalagmite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/stalagmite.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/starve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/starve.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/sting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/sting.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/thorns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/thorns.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/thrown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/thrown.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/trident.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/trident.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/wind_charge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/wind_charge.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/wither.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/wither.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/damage_type/wither_skull.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/damage_type/wither_skull.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/dimension_type/overworld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/dimension_type/overworld.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/dimension_type/the_end.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/dimension_type/the_end.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/dimension_type/the_nether.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/dimension_type/the_nether.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/painting_variant/fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/painting_variant/fire.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/wolf_variant/pale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/wolf_variant/pale.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/data/minecraft/worldgen/biome/plains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/data/minecraft/worldgen/biome/plains.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/reports/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/reports/blocks.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/reports/packets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/reports/packets.json -------------------------------------------------------------------------------- /data/generated/V1_21_2/reports/registries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_2/reports/registries.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/arrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/arrow.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/cactus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/cactus.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/campfire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/campfire.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/cramming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/cramming.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/dragon_breath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/dragon_breath.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/drown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/drown.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/dry_out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/dry_out.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/ender_pearl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/ender_pearl.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/explosion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/explosion.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/fall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/fall.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/falling_anvil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/falling_anvil.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/falling_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/falling_block.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/fireball.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/fireball.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/fireworks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/fireworks.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/fly_into_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/fly_into_wall.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/freeze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/freeze.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/generic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/generic.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/generic_kill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/generic_kill.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/hot_floor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/hot_floor.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/in_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/in_fire.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/in_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/in_wall.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/lava.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/lava.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/mace_smash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/mace_smash.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/magic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/magic.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/mob_attack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/mob_attack.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/on_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/on_fire.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/out_of_world.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/out_of_world.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/player_attack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/player_attack.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/sonic_boom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/sonic_boom.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/spit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/spit.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/stalagmite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/stalagmite.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/starve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/starve.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/sting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/sting.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/thorns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/thorns.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/thrown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/thrown.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/trident.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/trident.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/wind_charge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/wind_charge.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/wither.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/wither.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/damage_type/wither_skull.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/damage_type/wither_skull.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/dimension_type/overworld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/dimension_type/overworld.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/dimension_type/the_end.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/dimension_type/the_end.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/dimension_type/the_nether.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/dimension_type/the_nether.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/painting_variant/fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/painting_variant/fire.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/wolf_variant/pale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/wolf_variant/pale.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/data/minecraft/worldgen/biome/plains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/data/minecraft/worldgen/biome/plains.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/reports/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/reports/blocks.json -------------------------------------------------------------------------------- /data/generated/V1_21_4/reports/packets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_4/reports/packets.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/cat_variant/red.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/cat_variant/red.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/chicken_variant/temperate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/chicken_variant/temperate.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/cow_variant/temperate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/cow_variant/temperate.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/arrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/arrow.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/cactus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/cactus.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/campfire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/campfire.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/cramming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/cramming.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/dragon_breath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/dragon_breath.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/drown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/drown.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/dry_out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/dry_out.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/ender_pearl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/ender_pearl.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/explosion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/explosion.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/fall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/fall.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/falling_anvil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/falling_anvil.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/falling_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/falling_block.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/fireball.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/fireball.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/fireworks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/fireworks.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/fly_into_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/fly_into_wall.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/freeze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/freeze.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/generic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/generic.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/generic_kill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/generic_kill.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/hot_floor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/hot_floor.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/in_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/in_fire.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/in_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/in_wall.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/lava.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/lava.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/mace_smash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/mace_smash.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/magic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/magic.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/mob_attack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/mob_attack.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/on_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/on_fire.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/out_of_world.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/out_of_world.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/player_attack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/player_attack.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/sonic_boom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/sonic_boom.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/spit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/spit.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/stalagmite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/stalagmite.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/starve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/starve.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/sting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/sting.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/thorns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/thorns.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/thrown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/thrown.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/trident.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/trident.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/wind_charge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/wind_charge.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/wither.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/wither.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/damage_type/wither_skull.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/damage_type/wither_skull.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/dimension_type/overworld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/dimension_type/overworld.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/dimension_type/the_end.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/dimension_type/the_end.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/dimension_type/the_nether.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/dimension_type/the_nether.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/frog_variant/temperate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/frog_variant/temperate.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/painting_variant/fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/painting_variant/fire.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/pig_variant/temperate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/pig_variant/temperate.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/wolf_variant/pale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/wolf_variant/pale.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/data/minecraft/worldgen/biome/plains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/data/minecraft/worldgen/biome/plains.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/reports/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/reports/blocks.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/reports/packets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/reports/packets.json -------------------------------------------------------------------------------- /data/generated/V1_21_5/reports/registries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_5/reports/registries.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/cat_variant/red.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/cat_variant/red.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/chicken_variant/temperate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/chicken_variant/temperate.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/cow_variant/temperate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/cow_variant/temperate.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/arrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/arrow.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/cactus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/cactus.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/campfire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/campfire.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/cramming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/cramming.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/dragon_breath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/dragon_breath.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/drown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/drown.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/dry_out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/dry_out.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/ender_pearl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/ender_pearl.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/explosion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/explosion.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/fall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/fall.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/falling_anvil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/falling_anvil.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/falling_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/falling_block.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/fireball.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/fireball.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/fireworks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/fireworks.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/fly_into_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/fly_into_wall.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/freeze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/freeze.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/generic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/generic.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/generic_kill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/generic_kill.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/hot_floor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/hot_floor.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/in_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/in_fire.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/in_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/in_wall.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/lava.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/lava.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/mace_smash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/mace_smash.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/magic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/magic.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/mob_attack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/mob_attack.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/on_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/on_fire.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/out_of_world.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/out_of_world.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/player_attack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/player_attack.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/sonic_boom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/sonic_boom.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/spit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/spit.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/stalagmite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/stalagmite.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/starve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/starve.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/sting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/sting.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/thorns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/thorns.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/thrown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/thrown.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/trident.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/trident.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/wind_charge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/wind_charge.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/wither.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/wither.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/damage_type/wither_skull.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/damage_type/wither_skull.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/dimension_type/overworld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/dimension_type/overworld.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/dimension_type/the_end.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/dimension_type/the_end.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/dimension_type/the_nether.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/dimension_type/the_nether.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/frog_variant/temperate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/frog_variant/temperate.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/painting_variant/fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/painting_variant/fire.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/pig_variant/temperate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/pig_variant/temperate.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/wolf_variant/pale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/wolf_variant/pale.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/data/minecraft/worldgen/biome/plains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/data/minecraft/worldgen/biome/plains.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/reports/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/reports/blocks.json -------------------------------------------------------------------------------- /data/generated/V1_21_6/reports/packets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_6/reports/packets.json -------------------------------------------------------------------------------- /data/generated/V1_21_7/reports/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_7/reports/blocks.json -------------------------------------------------------------------------------- /data/generated/V1_21_9/reports/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_9/reports/blocks.json -------------------------------------------------------------------------------- /data/generated/V1_21_9/reports/packets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_9/reports/packets.json -------------------------------------------------------------------------------- /data/generated/V1_21_9/reports/registries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_21_9/reports/registries.json -------------------------------------------------------------------------------- /data/generated/V1_7_2/reports/packets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_7_2/reports/packets.json -------------------------------------------------------------------------------- /data/generated/V1_8/reports/packets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_8/reports/packets.json -------------------------------------------------------------------------------- /data/generated/V1_9/reports/packets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_9/reports/packets.json -------------------------------------------------------------------------------- /data/generated/V1_9_3/reports/packets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/generated/V1_9_3/reports/packets.json -------------------------------------------------------------------------------- /data/mise.toml: -------------------------------------------------------------------------------- 1 | [tools] 2 | node = "24" 3 | -------------------------------------------------------------------------------- /data/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/package-lock.json -------------------------------------------------------------------------------- /data/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/package.json -------------------------------------------------------------------------------- /data/schematics/spawn.schem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/schematics/spawn.schem -------------------------------------------------------------------------------- /data/src/clean/cleanData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/src/clean/cleanData.ts -------------------------------------------------------------------------------- /data/src/fetch/fileExists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/src/fetch/fileExists.ts -------------------------------------------------------------------------------- /data/src/fetch/serverJar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/src/fetch/serverJar.ts -------------------------------------------------------------------------------- /data/src/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/src/generate.ts -------------------------------------------------------------------------------- /data/src/launcher_profiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/src/launcher_profiles.ts -------------------------------------------------------------------------------- /data/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/data/tsconfig.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/.vitepress/config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/docs/.vitepress/config.mts -------------------------------------------------------------------------------- /docs/about/benchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/docs/about/benchmarks.md -------------------------------------------------------------------------------- /docs/about/cli-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/docs/about/cli-usage.md -------------------------------------------------------------------------------- /docs/about/comparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/docs/about/comparison.md -------------------------------------------------------------------------------- /docs/about/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/docs/about/faq.md -------------------------------------------------------------------------------- /docs/about/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/docs/about/installation.md -------------------------------------------------------------------------------- /docs/about/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/docs/about/introduction.md -------------------------------------------------------------------------------- /docs/about/supported-versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/docs/about/supported-versions.md -------------------------------------------------------------------------------- /docs/config/boss-bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/docs/config/boss-bar.md -------------------------------------------------------------------------------- /docs/config/compression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/docs/config/compression.md -------------------------------------------------------------------------------- /docs/config/default-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/docs/config/default-configuration.md -------------------------------------------------------------------------------- /docs/config/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/docs/config/introduction.md -------------------------------------------------------------------------------- /docs/config/proxy-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/docs/config/proxy-integration.md -------------------------------------------------------------------------------- /docs/config/schematic-loading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/docs/config/schematic-loading.md -------------------------------------------------------------------------------- /docs/config/server-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/docs/config/server-list.md -------------------------------------------------------------------------------- /docs/config/server-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/docs/config/server-settings.md -------------------------------------------------------------------------------- /docs/config/tab-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/docs/config/tab-list.md -------------------------------------------------------------------------------- /docs/config/title.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/docs/config/title.md -------------------------------------------------------------------------------- /docs/config/world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/docs/config/world.md -------------------------------------------------------------------------------- /docs/customization/message-formatting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/docs/customization/message-formatting.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/public/PicoLimbo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/docs/public/PicoLimbo.png -------------------------------------------------------------------------------- /docs/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/docs/public/favicon.png -------------------------------------------------------------------------------- /docs/public/pico_limbo_installation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/docs/public/pico_limbo_installation.sh -------------------------------------------------------------------------------- /docs/public/tutorial-automatic-reconnect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/docs/public/tutorial-automatic-reconnect.gif -------------------------------------------------------------------------------- /docs/public/world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/docs/public/world.png -------------------------------------------------------------------------------- /docs/tutorials/fallback-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/docs/tutorials/fallback-server.md -------------------------------------------------------------------------------- /docs/tutorials/schematic-conversion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/docs/tutorials/schematic-conversion.md -------------------------------------------------------------------------------- /docs/updates/v1.6.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/docs/updates/v1.6.0.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/package.json -------------------------------------------------------------------------------- /pico_limbo/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/Cargo.toml -------------------------------------------------------------------------------- /pico_limbo/src/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/cli.rs -------------------------------------------------------------------------------- /pico_limbo/src/configuration/boss_bar.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/configuration/boss_bar.rs -------------------------------------------------------------------------------- /pico_limbo/src/configuration/compression.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/configuration/compression.rs -------------------------------------------------------------------------------- /pico_limbo/src/configuration/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/configuration/config.rs -------------------------------------------------------------------------------- /pico_limbo/src/configuration/forwarding.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/configuration/forwarding.rs -------------------------------------------------------------------------------- /pico_limbo/src/configuration/game_mode_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/configuration/game_mode_config.rs -------------------------------------------------------------------------------- /pico_limbo/src/configuration/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/configuration/mod.rs -------------------------------------------------------------------------------- /pico_limbo/src/configuration/require_boolean.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/configuration/require_boolean.rs -------------------------------------------------------------------------------- /pico_limbo/src/configuration/server_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/configuration/server_list.rs -------------------------------------------------------------------------------- /pico_limbo/src/configuration/tab_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/configuration/tab_list.rs -------------------------------------------------------------------------------- /pico_limbo/src/configuration/title.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/configuration/title.rs -------------------------------------------------------------------------------- /pico_limbo/src/configuration/world_config/boundaries.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/configuration/world_config/boundaries.rs -------------------------------------------------------------------------------- /pico_limbo/src/configuration/world_config/experimental.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/configuration/world_config/experimental.rs -------------------------------------------------------------------------------- /pico_limbo/src/configuration/world_config/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/configuration/world_config/mod.rs -------------------------------------------------------------------------------- /pico_limbo/src/configuration/world_config/spawn_dimension.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/configuration/world_config/spawn_dimension.rs -------------------------------------------------------------------------------- /pico_limbo/src/configuration/world_config/time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/configuration/world_config/time.rs -------------------------------------------------------------------------------- /pico_limbo/src/forwarding/check_bungee_cord.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/forwarding/check_bungee_cord.rs -------------------------------------------------------------------------------- /pico_limbo/src/forwarding/check_velocity_key_integrity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/forwarding/check_velocity_key_integrity.rs -------------------------------------------------------------------------------- /pico_limbo/src/forwarding/forwarding_result.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/forwarding/forwarding_result.rs -------------------------------------------------------------------------------- /pico_limbo/src/forwarding/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/forwarding/mod.rs -------------------------------------------------------------------------------- /pico_limbo/src/handlers/configuration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/handlers/configuration.rs -------------------------------------------------------------------------------- /pico_limbo/src/handlers/handshake.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/handlers/handshake.rs -------------------------------------------------------------------------------- /pico_limbo/src/handlers/login/custom_query_answer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/handlers/login/custom_query_answer.rs -------------------------------------------------------------------------------- /pico_limbo/src/handlers/login/login_acknowledged.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/handlers/login/login_acknowledged.rs -------------------------------------------------------------------------------- /pico_limbo/src/handlers/login/login_start.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/handlers/login/login_start.rs -------------------------------------------------------------------------------- /pico_limbo/src/handlers/login/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/handlers/login/mod.rs -------------------------------------------------------------------------------- /pico_limbo/src/handlers/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/handlers/mod.rs -------------------------------------------------------------------------------- /pico_limbo/src/handlers/play/commands.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/handlers/play/commands.rs -------------------------------------------------------------------------------- /pico_limbo/src/handlers/play/fetch_minecraft_profile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/handlers/play/fetch_minecraft_profile.rs -------------------------------------------------------------------------------- /pico_limbo/src/handlers/play/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/handlers/play/mod.rs -------------------------------------------------------------------------------- /pico_limbo/src/handlers/play/send_chunks_circularly.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/handlers/play/send_chunks_circularly.rs -------------------------------------------------------------------------------- /pico_limbo/src/handlers/play/set_player_pos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/handlers/play/set_player_pos.rs -------------------------------------------------------------------------------- /pico_limbo/src/handlers/play/set_player_position_and_rotation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/handlers/play/set_player_position_and_rotation.rs -------------------------------------------------------------------------------- /pico_limbo/src/handlers/status/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/handlers/status/mod.rs -------------------------------------------------------------------------------- /pico_limbo/src/handlers/status/ping_request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/handlers/status/ping_request.rs -------------------------------------------------------------------------------- /pico_limbo/src/handlers/status/status_request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/handlers/status/status_request.rs -------------------------------------------------------------------------------- /pico_limbo/src/kick_messages.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/kick_messages.rs -------------------------------------------------------------------------------- /pico_limbo/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/main.rs -------------------------------------------------------------------------------- /pico_limbo/src/server/batch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/server/batch.rs -------------------------------------------------------------------------------- /pico_limbo/src/server/client_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/server/client_data.rs -------------------------------------------------------------------------------- /pico_limbo/src/server/client_state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/server/client_state.rs -------------------------------------------------------------------------------- /pico_limbo/src/server/controllable_interval.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/server/controllable_interval.rs -------------------------------------------------------------------------------- /pico_limbo/src/server/game_mode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/server/game_mode.rs -------------------------------------------------------------------------------- /pico_limbo/src/server/game_profile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/server/game_profile.rs -------------------------------------------------------------------------------- /pico_limbo/src/server/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/server/mod.rs -------------------------------------------------------------------------------- /pico_limbo/src/server/network.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/server/network.rs -------------------------------------------------------------------------------- /pico_limbo/src/server/packet_handler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/server/packet_handler.rs -------------------------------------------------------------------------------- /pico_limbo/src/server/packet_registry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/server/packet_registry.rs -------------------------------------------------------------------------------- /pico_limbo/src/server/shutdown_signal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/server/shutdown_signal.rs -------------------------------------------------------------------------------- /pico_limbo/src/server/start_server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/server/start_server.rs -------------------------------------------------------------------------------- /pico_limbo/src/server_state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pico_limbo/src/server_state.rs -------------------------------------------------------------------------------- /pterodactyl/eggs/egg-pico-limbo--debian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pterodactyl/eggs/egg-pico-limbo--debian.json -------------------------------------------------------------------------------- /pterodactyl/eggs/egg-pico-limbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quozul/PicoLimbo/HEAD/pterodactyl/eggs/egg-pico-limbo.json --------------------------------------------------------------------------------