├── .editorconfig ├── .spyglasscmds.json ├── .spyglassrc.json ├── LICENSE ├── README.md ├── data ├── manifest.json └── versions.json ├── docs ├── _imgs │ ├── banner-dark.png │ ├── banner-light.png │ ├── credits │ │ ├── aeris.jpg │ │ ├── aksiome.png │ │ ├── ethanout.png │ │ ├── leirof.png │ │ ├── plagiatus.png │ │ ├── theogiraudet.png │ │ └── ultimatech.jpg │ ├── modules │ │ ├── bitwise-dark.png │ │ ├── bitwise-light.png │ │ ├── color.png │ │ ├── dump │ │ │ ├── example-1.png │ │ │ └── example-2.png │ │ ├── environment.png │ │ ├── generation-dark.png │ │ ├── generation-light.png │ │ ├── link.png │ │ ├── log │ │ │ ├── example-1.png │ │ │ └── example-2.png │ │ ├── math-dark.png │ │ ├── math-light.png │ │ ├── math │ │ │ ├── arccos.png │ │ │ ├── arcsin.png │ │ │ ├── arctan.png │ │ │ ├── bhaskara.png │ │ │ ├── cosine.png │ │ │ ├── divide.png │ │ │ ├── exp.png │ │ │ ├── factorial.png │ │ │ ├── gcd.png │ │ │ ├── power.png │ │ │ ├── sine.png │ │ │ ├── sqrt.png │ │ │ └── tangent.png │ │ ├── move.png │ │ ├── position.png │ │ ├── random.png │ │ ├── random │ │ │ ├── distributions_dark.png │ │ │ ├── distributions_light.png │ │ │ ├── fractal_noise.png │ │ │ ├── simplex_noise.png │ │ │ └── white_noise.png │ │ ├── spline.png │ │ ├── spline │ │ │ ├── bezier.gif │ │ │ ├── bspline.gif │ │ │ ├── catmull_rom.gif │ │ │ └── hermite.gif │ │ ├── string.png │ │ ├── tree │ │ │ ├── birch_1.png │ │ │ ├── birch_2.png │ │ │ ├── birch_3.png │ │ │ ├── birch_4.png │ │ │ ├── birch_5.png │ │ │ ├── cypress_1.png │ │ │ ├── cypress_2.png │ │ │ ├── cypress_3.png │ │ │ ├── cypress_4.png │ │ │ ├── cypress_5.png │ │ │ ├── dark_oak_1.png │ │ │ ├── dark_oak_2.png │ │ │ ├── dark_oak_3.png │ │ │ ├── dark_oak_4.png │ │ │ ├── dark_oak_5.png │ │ │ ├── dead_spruce_1.png │ │ │ ├── dead_spruce_2.png │ │ │ ├── dead_spruce_3.png │ │ │ ├── dead_spruce_4.png │ │ │ ├── dead_spruce_5.png │ │ │ ├── exotic_1.png │ │ │ ├── exotic_2.png │ │ │ ├── exotic_3.png │ │ │ ├── exotic_4.png │ │ │ ├── exotic_5.png │ │ │ ├── fir_1.png │ │ │ ├── fir_2.png │ │ │ ├── fir_3.png │ │ │ ├── fir_4.png │ │ │ ├── fir_5.png │ │ │ ├── jungle_1.png │ │ │ ├── jungle_2.png │ │ │ ├── jungle_3.png │ │ │ ├── jungle_4.png │ │ │ ├── jungle_5.png │ │ │ ├── mushroom_1.png │ │ │ ├── mushroom_2.png │ │ │ ├── mushroom_3.png │ │ │ ├── mushroom_4.png │ │ │ ├── mushroom_5.png │ │ │ ├── oak_1.png │ │ │ ├── oak_2.png │ │ │ ├── oak_3.png │ │ │ ├── oak_4.png │ │ │ ├── oak_5.png │ │ │ ├── palm_1.png │ │ │ ├── palm_2.png │ │ │ ├── palm_3.png │ │ │ ├── palm_4.png │ │ │ └── palm_5.png │ │ ├── vector-dark.png │ │ ├── vector-light.png │ │ ├── view.png │ │ └── xp.png │ └── readme │ │ ├── block-dark.svg │ │ ├── block.svg │ │ ├── generation-dark.svg │ │ ├── generation.svg │ │ ├── health-dark.svg │ │ ├── health.svg │ │ ├── math-dark.svg │ │ ├── math.svg │ │ ├── quickstart.svg │ │ ├── random-dark.svg │ │ ├── random.svg │ │ ├── raycast-dark.svg │ │ ├── raycast.svg │ │ └── watch-trailer.svg ├── _locales │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ ├── changelog │ │ │ ├── index.po │ │ │ ├── unreleased.po │ │ │ ├── v1.0.0.po │ │ │ ├── v2.0.0.po │ │ │ ├── v2.1.0.po │ │ │ ├── v2.1.1.po │ │ │ ├── v2.2.0.po │ │ │ ├── v2.2.1.po │ │ │ ├── v2.2.2.po │ │ │ ├── v3.0.0.po │ │ │ ├── v3.0.1.po │ │ │ ├── v3.0.2.po │ │ │ ├── v3.1.0.po │ │ │ └── v3.1.1.po │ │ │ ├── contribute │ │ │ ├── cli-reference.po │ │ │ ├── commit-guidelines.po │ │ │ ├── contribution-validation.po │ │ │ ├── conventions.po │ │ │ ├── debug-tools.po │ │ │ ├── definitions.po │ │ │ ├── documentation.po │ │ │ ├── file-format.po │ │ │ ├── generated-files.po │ │ │ ├── getting-started.po │ │ │ ├── good-practices.po │ │ │ ├── index.po │ │ │ ├── metadata.po │ │ │ ├── shared-resources.po │ │ │ ├── special-functions.po │ │ │ └── tree-structure.po │ │ │ ├── examples │ │ │ ├── index.po │ │ │ ├── lifestring.po │ │ │ └── paintbrush.po │ │ │ ├── faq.po │ │ │ ├── glossary.csv │ │ │ ├── index.po │ │ │ ├── mentions-legales.po │ │ │ ├── modules │ │ │ ├── bitwise.po │ │ │ ├── block.po │ │ │ ├── color.po │ │ │ ├── dump.po │ │ │ ├── environment.po │ │ │ ├── generation.po │ │ │ ├── health.po │ │ │ ├── hitbox.po │ │ │ ├── id.po │ │ │ ├── index.po │ │ │ ├── interaction.po │ │ │ ├── link.po │ │ │ ├── log.po │ │ │ ├── math.po │ │ │ ├── move.po │ │ │ ├── position.po │ │ │ ├── random.po │ │ │ ├── raycast.po │ │ │ ├── schedule.po │ │ │ ├── sidebar.po │ │ │ ├── spline.po │ │ │ ├── string.po │ │ │ ├── time.po │ │ │ ├── tree.po │ │ │ ├── vector.po │ │ │ ├── view.po │ │ │ └── xp.po │ │ │ ├── quickstart.po │ │ │ ├── related │ │ │ ├── guides-and-tools.po │ │ │ ├── index.po │ │ │ ├── related-libraries.po │ │ │ └── use-bookshelf.po │ │ │ └── special-thanks.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ ├── changelog │ │ ├── index.po │ │ ├── unreleased.po │ │ ├── v1.0.0.po │ │ ├── v2.0.0.po │ │ ├── v2.1.0.po │ │ ├── v2.1.1.po │ │ ├── v2.2.0.po │ │ ├── v2.2.1.po │ │ ├── v2.2.2.po │ │ ├── v3.0.0.po │ │ ├── v3.0.1.po │ │ ├── v3.0.2.po │ │ ├── v3.1.0.po │ │ └── v3.1.1.po │ │ ├── contribute │ │ ├── cli-reference.po │ │ ├── commit-guidelines.po │ │ ├── contribution-validation.po │ │ ├── conventions.po │ │ ├── debug-tools.po │ │ ├── definitions.po │ │ ├── documentation.po │ │ ├── file-format.po │ │ ├── generated-files.po │ │ ├── getting-started.po │ │ ├── good-practices.po │ │ ├── index.po │ │ ├── metadata.po │ │ ├── shared-resources.po │ │ ├── special-functions.po │ │ └── tree-structure.po │ │ ├── examples │ │ ├── index.po │ │ ├── lifestring.po │ │ └── paintbrush.po │ │ ├── faq.po │ │ ├── glossary.csv │ │ ├── index.po │ │ ├── mentions-legales.po │ │ ├── modules │ │ ├── bitwise.po │ │ ├── block.po │ │ ├── color.po │ │ ├── dump.po │ │ ├── environment.po │ │ ├── generation.po │ │ ├── health.po │ │ ├── hitbox.po │ │ ├── id.po │ │ ├── index.po │ │ ├── interaction.po │ │ ├── link.po │ │ ├── log.po │ │ ├── math.po │ │ ├── move.po │ │ ├── position.po │ │ ├── random.po │ │ ├── raycast.po │ │ ├── schedule.po │ │ ├── sidebar.po │ │ ├── spline.po │ │ ├── string.po │ │ ├── time.po │ │ ├── tree.po │ │ ├── vector.po │ │ ├── view.po │ │ └── xp.po │ │ ├── quickstart.po │ │ ├── related │ │ ├── guides-and-tools.po │ │ ├── index.po │ │ ├── related-libraries.po │ │ └── use-bookshelf.po │ │ └── special-thanks.po ├── _static │ ├── bookshelf.css │ ├── bookshelf.js │ ├── fonts │ │ ├── itim.ttf │ │ ├── nunito.woff2 │ │ └── tossface.otf │ ├── logo-bookshelf.png │ ├── logo-gunivers.png │ └── switcher.json ├── _templates │ ├── changelog.md │ ├── comments.md │ ├── definitions.md │ ├── featured-modules.md │ └── footer-links.html ├── changelog │ ├── index.md │ ├── v1.0.0.md │ ├── v2.0.0.md │ ├── v2.1.0.md │ ├── v2.1.1.md │ ├── v2.2.0.md │ ├── v2.2.1.md │ ├── v2.2.2.md │ ├── v3.0.0.md │ ├── v3.0.1.md │ ├── v3.0.2.md │ ├── v3.1.0.md │ ├── v3.1.1.md │ └── v3.2.0.md ├── conf.py ├── contribute │ ├── cli-reference.md │ ├── commit-guidelines.md │ ├── contribution-validation.md │ ├── conventions.md │ ├── debug-tools.md │ ├── definitions.md │ ├── documentation.md │ ├── file-format.md │ ├── generated-files.md │ ├── getting-started.md │ ├── good-practices.md │ ├── index.md │ ├── metadata.md │ ├── shared-resources.md │ ├── special-functions.md │ ├── special-thanks.md │ └── tree-structure.md ├── examples │ ├── index.md │ ├── lifestring.md │ └── paintbrush.md ├── faq.md ├── index.md ├── mentions-legales.md ├── modules │ ├── bitwise.md │ ├── block.md │ ├── color.md │ ├── dump.md │ ├── environment.md │ ├── generation.md │ ├── health.md │ ├── hitbox.md │ ├── id.md │ ├── index.md │ ├── interaction.md │ ├── link.md │ ├── log.md │ ├── math.md │ ├── move.md │ ├── position.md │ ├── random.md │ ├── raycast.md │ ├── schedule.md │ ├── sidebar.md │ ├── spline.md │ ├── string.md │ ├── time.md │ ├── tree.md │ ├── vector.md │ ├── view.md │ └── xp.md ├── quickstart.md └── related.md ├── examples ├── lifestring.md └── paintbrush.md ├── modules ├── @dev │ ├── README.md │ ├── module.json │ └── pack.png ├── @prefabs │ ├── README.md │ ├── module.json │ └── pack.png ├── @runtime │ ├── README.md │ ├── module.json │ └── pack.png ├── @suite │ ├── README.md │ ├── module.json │ └── pack.png ├── bs.bitwise │ ├── README.md │ ├── data │ │ └── bs.bitwise │ │ │ ├── function │ │ │ ├── __load__.mcfunction │ │ │ ├── __unload__.mcfunction │ │ │ ├── and │ │ │ │ ├── and.mcfunction │ │ │ │ └── compute.mcfunction │ │ │ ├── bit_count.mcfunction │ │ │ ├── bit_length │ │ │ │ ├── bit_length.mcfunction │ │ │ │ ├── group_1.mcfunction │ │ │ │ ├── group_2.mcfunction │ │ │ │ ├── group_3.mcfunction │ │ │ │ └── group_4.mcfunction │ │ │ ├── not.mcfunction │ │ │ ├── or.mcfunction │ │ │ ├── two_complement.mcfunction │ │ │ └── xor.mcfunction │ │ │ ├── tags │ │ │ └── function │ │ │ │ ├── and.json │ │ │ │ ├── bit_count.json │ │ │ │ ├── bit_length.json │ │ │ │ ├── not.json │ │ │ │ ├── or.json │ │ │ │ ├── two_complement.json │ │ │ │ └── xor.json │ │ │ └── test │ │ │ ├── and.mcfunction │ │ │ ├── bit_count.mcfunction │ │ │ ├── bit_length.mcfunction │ │ │ ├── not.mcfunction │ │ │ ├── or.mcfunction │ │ │ ├── two_complement.mcfunction │ │ │ └── xor.mcfunction │ ├── module.json │ └── pack.png ├── bs.block │ ├── README.md │ ├── data │ │ └── bs.block │ │ │ ├── function │ │ │ ├── __load__.mcfunction │ │ │ ├── __unload__.mcfunction │ │ │ ├── fill │ │ │ │ ├── events │ │ │ │ │ └── on_finished.mcfunction │ │ │ │ ├── fill_block.mcfunction │ │ │ │ ├── fill_random.mcfunction │ │ │ │ ├── fill_type.mcfunction │ │ │ │ ├── process │ │ │ │ │ ├── pause.mcfunction │ │ │ │ │ ├── resume.mcfunction │ │ │ │ │ └── scheduled.mcfunction │ │ │ │ ├── recurse │ │ │ │ │ ├── init.mcfunction │ │ │ │ │ └── next.mcfunction │ │ │ │ └── strategy │ │ │ │ │ ├── set_block.mcfunction │ │ │ │ │ ├── set_random.mcfunction │ │ │ │ │ └── set_type.mcfunction │ │ │ ├── get │ │ │ │ ├── compile │ │ │ │ │ ├── block.mcfunction │ │ │ │ │ ├── concat │ │ │ │ │ │ ├── block │ │ │ │ │ │ │ ├── nbt.mcfunction │ │ │ │ │ │ │ └── state.mcfunction │ │ │ │ │ │ └── state.mcfunction │ │ │ │ │ ├── nbt.mcfunction │ │ │ │ │ ├── state.mcfunction │ │ │ │ │ └── type.mcfunction │ │ │ │ ├── get_blast_resistance.mcfunction │ │ │ │ ├── get_block.mcfunction │ │ │ │ ├── get_friction.mcfunction │ │ │ │ ├── get_hardness.mcfunction │ │ │ │ ├── get_instrument.mcfunction │ │ │ │ ├── get_jump_factor.mcfunction │ │ │ │ ├── get_luminance.mcfunction │ │ │ │ ├── get_sounds.mcfunction │ │ │ │ ├── get_speed_factor.mcfunction │ │ │ │ └── get_type.mcfunction │ │ │ ├── import │ │ │ │ └── mapping_registry.mcfunction │ │ │ ├── is_touching_power.mcfunction │ │ │ ├── is_touching_strong_power.mcfunction │ │ │ ├── is_touching_weak_power.mcfunction │ │ │ ├── lookup │ │ │ │ ├── lookup_item.mcfunction │ │ │ │ └── lookup_type.mcfunction │ │ │ ├── match │ │ │ │ ├── check.mcfunction │ │ │ │ └── match.mcfunction │ │ │ ├── produce │ │ │ │ ├── block_display │ │ │ │ │ ├── run.mcfunction │ │ │ │ │ ├── spawn_block_display.mcfunction │ │ │ │ │ └── spawn_solid_block_display.mcfunction │ │ │ │ ├── falling_block │ │ │ │ │ ├── run.mcfunction │ │ │ │ │ └── spawn_falling_block.mcfunction │ │ │ │ ├── particle │ │ │ │ │ ├── emit.mcfunction │ │ │ │ │ ├── get.mcfunction │ │ │ │ │ └── run.mcfunction │ │ │ │ └── sound │ │ │ │ │ ├── break │ │ │ │ │ ├── get.mcfunction │ │ │ │ │ ├── lookup.mcfunction │ │ │ │ │ └── play.mcfunction │ │ │ │ │ ├── fall │ │ │ │ │ ├── get.mcfunction │ │ │ │ │ ├── lookup.mcfunction │ │ │ │ │ └── play.mcfunction │ │ │ │ │ ├── hit │ │ │ │ │ ├── get.mcfunction │ │ │ │ │ ├── lookup.mcfunction │ │ │ │ │ └── play.mcfunction │ │ │ │ │ ├── place │ │ │ │ │ ├── get.mcfunction │ │ │ │ │ ├── lookup.mcfunction │ │ │ │ │ └── play.mcfunction │ │ │ │ │ ├── play_block_sound.mcfunction │ │ │ │ │ ├── run.mcfunction │ │ │ │ │ └── step │ │ │ │ │ ├── get.mcfunction │ │ │ │ │ ├── lookup.mcfunction │ │ │ │ │ └── play.mcfunction │ │ │ ├── set │ │ │ │ ├── run.mcfunction │ │ │ │ ├── set_block.mcfunction │ │ │ │ └── set_type.mcfunction │ │ │ ├── transform │ │ │ │ ├── keep_properties │ │ │ │ │ ├── keep_properties.mcfunction │ │ │ │ │ └── recurse │ │ │ │ │ │ ├── get_by_value.mcfunction │ │ │ │ │ │ ├── get_default.mcfunction │ │ │ │ │ │ └── next.mcfunction │ │ │ │ ├── lookup_group.mcfunction │ │ │ │ ├── merge_properties │ │ │ │ │ ├── merge_properties.mcfunction │ │ │ │ │ └── recurse │ │ │ │ │ │ ├── get_by_value.mcfunction │ │ │ │ │ │ └── next.mcfunction │ │ │ │ ├── remove_properties │ │ │ │ │ ├── recurse │ │ │ │ │ │ ├── next.mcfunction │ │ │ │ │ │ └── remove.mcfunction │ │ │ │ │ └── remove_properties.mcfunction │ │ │ │ ├── replace_properties │ │ │ │ │ ├── recurse │ │ │ │ │ │ └── next.mcfunction │ │ │ │ │ └── replace_properties.mcfunction │ │ │ │ ├── replace_type.mcfunction │ │ │ │ ├── shift_properties │ │ │ │ │ ├── recurse │ │ │ │ │ │ ├── index.mcfunction │ │ │ │ │ │ ├── next.mcfunction │ │ │ │ │ │ ├── shift_property.mcfunction │ │ │ │ │ │ └── update_property.mcfunction │ │ │ │ │ └── shift_properties.mcfunction │ │ │ │ └── type_mappings │ │ │ │ │ ├── filter_set.mcfunction │ │ │ │ │ ├── filter_type.mcfunction │ │ │ │ │ ├── find_match.mcfunction │ │ │ │ │ ├── keep_best.mcfunction │ │ │ │ │ ├── map_type.mcfunction │ │ │ │ │ ├── mix_type.mcfunction │ │ │ │ │ ├── remove_type.mcfunction │ │ │ │ │ └── with_registry.mcfunction │ │ │ └── utils │ │ │ │ ├── get_custom_dimension.mcfunction │ │ │ │ ├── get_dimension.mcfunction │ │ │ │ ├── masks │ │ │ │ ├── compile.mcfunction │ │ │ │ └── loop.mcfunction │ │ │ │ ├── random │ │ │ │ ├── compile.mcfunction │ │ │ │ └── loop.mcfunction │ │ │ │ ├── resolve_from_pos.mcfunction │ │ │ │ ├── resolve_to_pos.mcfunction │ │ │ │ └── tp.mcfunction │ │ │ ├── predicate │ │ │ ├── internal │ │ │ │ ├── is_strongly_powered.json │ │ │ │ ├── is_touching_power.json │ │ │ │ └── is_weakly_powered.json │ │ │ ├── is_conductive.json │ │ │ ├── is_powered.json │ │ │ ├── is_spawnable.json │ │ │ ├── is_strongly_powered.json │ │ │ └── is_weakly_powered.json │ │ │ ├── tags │ │ │ ├── block │ │ │ │ ├── can_occlude.json │ │ │ │ ├── has_state.json │ │ │ │ ├── ignited_by_lava.json │ │ │ │ └── internal │ │ │ │ │ ├── attached.json │ │ │ │ │ ├── facing.json │ │ │ │ │ ├── plate.json │ │ │ │ │ ├── power.json │ │ │ │ │ └── torch.json │ │ │ └── function │ │ │ │ ├── emit_block_particle.json │ │ │ │ ├── fill_block.json │ │ │ │ ├── fill_random.json │ │ │ │ ├── fill_type.json │ │ │ │ ├── get_blast_resistance.json │ │ │ │ ├── get_block.json │ │ │ │ ├── get_friction.json │ │ │ │ ├── get_hardness.json │ │ │ │ ├── get_instrument.json │ │ │ │ ├── get_jump_factor.json │ │ │ │ ├── get_luminance.json │ │ │ │ ├── get_sounds.json │ │ │ │ ├── get_speed_factor.json │ │ │ │ ├── get_type.json │ │ │ │ ├── is_touching_power.json │ │ │ │ ├── is_touching_strong_power.json │ │ │ │ ├── is_touching_weak_power.json │ │ │ │ ├── keep_properties.json │ │ │ │ ├── lookup_item.json │ │ │ │ ├── lookup_type.json │ │ │ │ ├── map_type.json │ │ │ │ ├── match.json │ │ │ │ ├── merge_properties.json │ │ │ │ ├── mix_type.json │ │ │ │ ├── play_block_sound.json │ │ │ │ ├── play_break_sound.json │ │ │ │ ├── play_fall_sound.json │ │ │ │ ├── play_hit_sound.json │ │ │ │ ├── play_place_sound.json │ │ │ │ ├── play_step_sound.json │ │ │ │ ├── remove_properties.json │ │ │ │ ├── replace_properties.json │ │ │ │ ├── replace_type.json │ │ │ │ ├── set_block.json │ │ │ │ ├── set_type.json │ │ │ │ ├── shift_properties.json │ │ │ │ ├── spawn_block_display.json │ │ │ │ ├── spawn_falling_block.json │ │ │ │ └── spawn_solid_block_display.json │ │ │ └── test │ │ │ ├── fill │ │ │ ├── async.mcfunction │ │ │ ├── block.mcfunction │ │ │ ├── masks.mcfunction │ │ │ ├── on_finished.mcfunction │ │ │ ├── random.mcfunction │ │ │ └── type.mcfunction │ │ │ ├── get │ │ │ ├── blast_resistance.mcfunction │ │ │ ├── block.mcfunction │ │ │ ├── friction.mcfunction │ │ │ ├── hardness.mcfunction │ │ │ ├── instrument.mcfunction │ │ │ ├── jump_factor.mcfunction │ │ │ ├── luminance.mcfunction │ │ │ ├── sounds.mcfunction │ │ │ ├── speed_factor.mcfunction │ │ │ └── type.mcfunction │ │ │ ├── is_conductive.mcfunction │ │ │ ├── is_spawnable.mcfunction │ │ │ ├── lookup │ │ │ ├── item.mcfunction │ │ │ └── type.mcfunction │ │ │ ├── match.mcfunction │ │ │ ├── produce │ │ │ ├── block_display.mcfunction │ │ │ ├── emit_block_particle.mcfunction │ │ │ ├── falling_block.mcfunction │ │ │ └── solid_block_display.mcfunction │ │ │ ├── set │ │ │ ├── block.mcfunction │ │ │ └── type.mcfunction │ │ │ └── transform │ │ │ ├── keep_properties.mcfunction │ │ │ ├── map_type.mcfunction │ │ │ ├── merge_properties.mcfunction │ │ │ ├── mix_type.mcfunction │ │ │ ├── remove_properties.mcfunction │ │ │ ├── replace_properties.mcfunction │ │ │ ├── replace_type.mcfunction │ │ │ └── shift_properties.mcfunction │ ├── gen_block.py │ ├── module.json │ ├── pack.png │ └── templates │ │ ├── groups_table.jinja │ │ ├── items_table.jinja │ │ └── types_table.jinja ├── bs.color │ ├── README.md │ ├── data │ │ └── bs.color │ │ │ ├── function │ │ │ ├── __load__.mcfunction │ │ │ ├── __unload__.mcfunction │ │ │ ├── hex_to_int │ │ │ │ ├── convert_hexes.mcfunction │ │ │ │ └── hex_to_int.mcfunction │ │ │ ├── hex_to_rgb │ │ │ │ ├── convert_hexes.mcfunction │ │ │ │ └── hex_to_rgb.mcfunction │ │ │ ├── int_to_hex │ │ │ │ ├── concat_hexes.mcfunction │ │ │ │ ├── get_hexes.mcfunction │ │ │ │ └── int_to_hex.mcfunction │ │ │ ├── int_to_rgb.mcfunction │ │ │ ├── rgb_to_hex │ │ │ │ ├── concat_hexes.mcfunction │ │ │ │ ├── get_hexes.mcfunction │ │ │ │ └── rgb_to_hex.mcfunction │ │ │ └── rgb_to_int.mcfunction │ │ │ ├── tags │ │ │ └── function │ │ │ │ ├── hex_to_int.json │ │ │ │ ├── hex_to_rgb.json │ │ │ │ ├── int_to_hex.json │ │ │ │ ├── int_to_rgb.json │ │ │ │ ├── rgb_to_hex.json │ │ │ │ └── rgb_to_int.json │ │ │ └── test │ │ │ ├── hex_to_int.mcfunction │ │ │ ├── hex_to_rgb.mcfunction │ │ │ ├── int_to_hex.mcfunction │ │ │ ├── int_to_rgb.mcfunction │ │ │ ├── rgb_to_hex.mcfunction │ │ │ └── rgb_to_int.mcfunction │ ├── module.json │ └── pack.png ├── bs.dump │ ├── README.md │ ├── data │ │ └── bs.dump │ │ │ ├── function │ │ │ ├── __load__.mcfunction │ │ │ ├── __unload__.mcfunction │ │ │ ├── expand.mcfunction │ │ │ ├── format │ │ │ │ ├── any.mcfunction │ │ │ │ ├── array │ │ │ │ │ ├── array.mcfunction │ │ │ │ │ ├── collapse.mcfunction │ │ │ │ │ ├── compact │ │ │ │ │ │ ├── compact.mcfunction │ │ │ │ │ │ └── loop.mcfunction │ │ │ │ │ ├── empty.mcfunction │ │ │ │ │ └── loop.mcfunction │ │ │ │ ├── brace │ │ │ │ │ ├── close.mcfunction │ │ │ │ │ └── open.mcfunction │ │ │ │ ├── bracket │ │ │ │ │ ├── close.mcfunction │ │ │ │ │ └── open.mcfunction │ │ │ │ ├── collapse │ │ │ │ │ ├── collapse.mcfunction │ │ │ │ │ ├── escape.mcfunction │ │ │ │ │ └── event.mcfunction │ │ │ │ ├── compound │ │ │ │ │ ├── collapse.mcfunction │ │ │ │ │ ├── compound.mcfunction │ │ │ │ │ ├── empty.mcfunction │ │ │ │ │ ├── key.mcfunction │ │ │ │ │ └── loop.mcfunction │ │ │ │ ├── number.mcfunction │ │ │ │ ├── score.mcfunction │ │ │ │ ├── string.mcfunction │ │ │ │ └── undefined.mcfunction │ │ │ ├── interpret │ │ │ │ ├── any.mcfunction │ │ │ │ ├── array │ │ │ │ │ ├── array.mcfunction │ │ │ │ │ ├── compact │ │ │ │ │ │ ├── compact.mcfunction │ │ │ │ │ │ └── loop.mcfunction │ │ │ │ │ └── loop.mcfunction │ │ │ │ ├── compound │ │ │ │ │ ├── compound.mcfunction │ │ │ │ │ └── loop.mcfunction │ │ │ │ ├── nbt │ │ │ │ │ ├── expand │ │ │ │ │ │ ├── cast.mcfunction │ │ │ │ │ │ ├── default.mcfunction │ │ │ │ │ │ └── parse │ │ │ │ │ │ │ ├── init.mcfunction │ │ │ │ │ │ │ ├── next.mcfunction │ │ │ │ │ │ │ └── terminate.mcfunction │ │ │ │ │ ├── nbt.mcfunction │ │ │ │ │ └── populate.mcfunction │ │ │ │ └── score.mcfunction │ │ │ ├── key │ │ │ │ ├── get.mcfunction │ │ │ │ └── parse │ │ │ │ │ ├── quoted │ │ │ │ │ ├── double.mcfunction │ │ │ │ │ └── single.mcfunction │ │ │ │ │ ├── terminate.mcfunction │ │ │ │ │ └── unquoted.mcfunction │ │ │ └── var.mcfunction │ │ │ ├── tags │ │ │ └── function │ │ │ │ └── var.json │ │ │ └── test │ │ │ └── var.mcfunction │ ├── module.json │ └── pack.png ├── bs.environment │ ├── README.md │ ├── data │ │ └── bs.environment │ │ │ ├── function │ │ │ ├── __load__.mcfunction │ │ │ ├── __unload__.mcfunction │ │ │ ├── biome │ │ │ │ └── get_biome.mcfunction │ │ │ ├── celestial │ │ │ │ ├── cos.mcfunction │ │ │ │ ├── get_celestial_angle_internal.mcfunction │ │ │ │ ├── get_current_moon_angle.mcfunction │ │ │ │ ├── get_current_sun_angle.mcfunction │ │ │ │ ├── get_moon_angle.mcfunction │ │ │ │ ├── get_moon_angle_internal.mcfunction │ │ │ │ ├── get_moon_phase.mcfunction │ │ │ │ ├── get_phase.mcfunction │ │ │ │ ├── get_sun_angle.mcfunction │ │ │ │ ├── get_sun_angle_internal.mcfunction │ │ │ │ ├── look_at_moon.mcfunction │ │ │ │ ├── look_at_sun.mcfunction │ │ │ │ ├── return_celestial_angle.mcfunction │ │ │ │ ├── rotate.mcfunction │ │ │ │ ├── rotate_-90.mcfunction │ │ │ │ └── rotate_90.mcfunction │ │ │ └── temperature │ │ │ │ ├── get_temperature.mcfunction │ │ │ │ └── variation.mcfunction │ │ │ ├── predicate │ │ │ ├── can_rain.json │ │ │ ├── can_snow.json │ │ │ ├── has_precipitation.json │ │ │ ├── is_bed_time.json │ │ │ ├── is_bee_sleeping_time.json │ │ │ ├── is_creaking_spawning_time.json │ │ │ ├── is_day_time.json │ │ │ ├── is_monster_spawning_time.json │ │ │ ├── is_night_time.json │ │ │ ├── is_raining.json │ │ │ ├── is_sunrise_time.json │ │ │ ├── is_sunset_time.json │ │ │ ├── is_thundering.json │ │ │ ├── is_undead_burning_time.json │ │ │ ├── is_villager_sleeping_time.json │ │ │ ├── is_villager_socializing_time.json │ │ │ └── is_villager_working_time.json │ │ │ ├── tags │ │ │ └── function │ │ │ │ ├── get_biome.json │ │ │ │ ├── get_current_moon_angle.json │ │ │ │ ├── get_current_sun_angle.json │ │ │ │ ├── get_moon_angle.json │ │ │ │ ├── get_moon_phase.json │ │ │ │ ├── get_sun_angle.json │ │ │ │ ├── get_temperature.json │ │ │ │ ├── look_at_moon.json │ │ │ │ └── look_at_sun.json │ │ │ └── test │ │ │ └── get_moon_phase.mcfunction │ ├── gen_environment.py │ ├── module.json │ └── pack.png ├── bs.generation │ ├── README.md │ ├── data │ │ └── bs.generation │ │ │ ├── function │ │ │ ├── __load__.mcfunction │ │ │ ├── __unload__.mcfunction │ │ │ ├── shape_2d │ │ │ │ ├── gen_fractal_shape_2d.mcfunction │ │ │ │ ├── gen_shape_2d.mcfunction │ │ │ │ ├── gen_simplex_shape_2d.mcfunction │ │ │ │ ├── process │ │ │ │ │ ├── pause.mcfunction │ │ │ │ │ ├── resume.mcfunction │ │ │ │ │ └── scheduled.mcfunction │ │ │ │ ├── recurse │ │ │ │ │ ├── init.mcfunction │ │ │ │ │ └── next.mcfunction │ │ │ │ └── strategy │ │ │ │ │ ├── dummy │ │ │ │ │ ├── run.mcfunction │ │ │ │ │ └── setup.mcfunction │ │ │ │ │ ├── fractal_noise_2d │ │ │ │ │ ├── run.mcfunction │ │ │ │ │ └── setup.mcfunction │ │ │ │ │ └── simplex_noise_2d │ │ │ │ │ ├── run.mcfunction │ │ │ │ │ └── setup.mcfunction │ │ │ └── utils │ │ │ │ ├── get_custom_dimension.mcfunction │ │ │ │ ├── get_dimension.mcfunction │ │ │ │ └── get_location.mcfunction │ │ │ ├── tags │ │ │ └── function │ │ │ │ ├── gen_fractal_shape_2d.json │ │ │ │ ├── gen_shape_2d.json │ │ │ │ └── gen_simplex_shape_2d.json │ │ │ └── test │ │ │ └── shape_2d │ │ │ ├── async.mcfunction │ │ │ ├── fractal.mcfunction │ │ │ ├── plane_xy.mcfunction │ │ │ ├── plane_xz.mcfunction │ │ │ ├── plane_zy.mcfunction │ │ │ └── simplex.mcfunction │ ├── module.json │ └── pack.png ├── bs.health │ ├── README.md │ ├── data │ │ └── bs.health │ │ │ ├── advancement │ │ │ ├── on_after_heal.json │ │ │ ├── on_before_heal.json │ │ │ └── on_heal.json │ │ │ ├── function │ │ │ ├── __load__.mcfunction │ │ │ ├── __unload__.mcfunction │ │ │ ├── add │ │ │ │ ├── health.mcfunction │ │ │ │ └── max_health.mcfunction │ │ │ ├── get │ │ │ │ ├── health.mcfunction │ │ │ │ └── max_health.mcfunction │ │ │ ├── set │ │ │ │ ├── health.mcfunction │ │ │ │ └── max_health.mcfunction │ │ │ ├── ttl │ │ │ │ ├── next_tick.mcfunction │ │ │ │ ├── normalize_unit.mcfunction │ │ │ │ ├── register_callback.mcfunction │ │ │ │ ├── register_unit.mcfunction │ │ │ │ ├── run_callback.mcfunction │ │ │ │ ├── time_out.mcfunction │ │ │ │ └── time_to_live.mcfunction │ │ │ └── utils │ │ │ │ ├── apply_health.mcfunction │ │ │ │ ├── decrease_health.mcfunction │ │ │ │ ├── increase_health.mcfunction │ │ │ │ ├── on_after_heal.mcfunction │ │ │ │ ├── on_before_heal.mcfunction │ │ │ │ ├── on_heal.mcfunction │ │ │ │ └── set_max_health.mcfunction │ │ │ ├── tags │ │ │ └── function │ │ │ │ ├── add_health.json │ │ │ │ ├── add_max_health.json │ │ │ │ ├── get_health.json │ │ │ │ ├── get_max_health.json │ │ │ │ ├── set_health.json │ │ │ │ ├── set_max_health.json │ │ │ │ └── time_to_live.json │ │ │ └── test │ │ │ ├── add │ │ │ ├── both.mcfunction │ │ │ ├── health.mcfunction │ │ │ └── max_health.mcfunction │ │ │ ├── get │ │ │ ├── health.mcfunction │ │ │ └── max_health.mcfunction │ │ │ ├── set │ │ │ ├── both.mcfunction │ │ │ ├── health.mcfunction │ │ │ └── max_health.mcfunction │ │ │ └── time_to_live.mcfunction │ ├── module.json │ └── pack.png ├── bs.hitbox │ ├── 1.21.10 │ │ └── data │ │ │ └── bs.hitbox │ │ │ └── predicate │ │ │ └── internal │ │ │ └── is_gliding.json │ ├── README.md │ ├── data │ │ └── bs.hitbox │ │ │ ├── function │ │ │ ├── __load__.mcfunction │ │ │ ├── __unload__.mcfunction │ │ │ ├── bake_entity │ │ │ │ ├── bake_entity.mcfunction │ │ │ │ └── passengers.mcfunction │ │ │ ├── callback │ │ │ │ ├── get_block_collision.mcfunction │ │ │ │ ├── get_block_collision_with_fluid.mcfunction │ │ │ │ ├── get_block_placement.mcfunction │ │ │ │ ├── get_block_placement_with_fluid.mcfunction │ │ │ │ ├── get_block_shape.mcfunction │ │ │ │ ├── get_block_shape_with_fluid.mcfunction │ │ │ │ └── get_fluid_shape.mcfunction │ │ │ ├── get_block │ │ │ │ ├── get_block.mcfunction │ │ │ │ ├── get_block_collision.mcfunction │ │ │ │ ├── get_block_shape.mcfunction │ │ │ │ └── offset │ │ │ │ │ ├── clamp.mcfunction │ │ │ │ │ ├── compute.mcfunction │ │ │ │ │ ├── fetch.mcfunction │ │ │ │ │ └── get.mcfunction │ │ │ ├── get_entity │ │ │ │ ├── dispatch.mcfunction │ │ │ │ ├── get_custom.mcfunction │ │ │ │ ├── get_entity.mcfunction │ │ │ │ └── registry │ │ │ │ │ ├── 0.mcfunction │ │ │ │ │ ├── 1.mcfunction │ │ │ │ │ ├── 10.mcfunction │ │ │ │ │ ├── 11.mcfunction │ │ │ │ │ ├── 12.mcfunction │ │ │ │ │ ├── 13.mcfunction │ │ │ │ │ ├── 14.mcfunction │ │ │ │ │ ├── 15.mcfunction │ │ │ │ │ ├── 16.mcfunction │ │ │ │ │ ├── 17.mcfunction │ │ │ │ │ ├── 18.mcfunction │ │ │ │ │ ├── 19.mcfunction │ │ │ │ │ ├── 2.mcfunction │ │ │ │ │ ├── 20.mcfunction │ │ │ │ │ ├── 21.mcfunction │ │ │ │ │ ├── 22.mcfunction │ │ │ │ │ ├── 23.mcfunction │ │ │ │ │ ├── 24.mcfunction │ │ │ │ │ ├── 25.mcfunction │ │ │ │ │ ├── 26.mcfunction │ │ │ │ │ ├── 27.mcfunction │ │ │ │ │ ├── 28.mcfunction │ │ │ │ │ ├── 29.mcfunction │ │ │ │ │ ├── 3.mcfunction │ │ │ │ │ ├── 30.mcfunction │ │ │ │ │ ├── 31.mcfunction │ │ │ │ │ ├── 32.mcfunction │ │ │ │ │ ├── 33.mcfunction │ │ │ │ │ ├── 34.mcfunction │ │ │ │ │ ├── 35.mcfunction │ │ │ │ │ ├── 36.mcfunction │ │ │ │ │ ├── 37.mcfunction │ │ │ │ │ ├── 38.mcfunction │ │ │ │ │ ├── 39.mcfunction │ │ │ │ │ ├── 4.mcfunction │ │ │ │ │ ├── 40.mcfunction │ │ │ │ │ ├── 41.mcfunction │ │ │ │ │ ├── 42.mcfunction │ │ │ │ │ ├── 43.mcfunction │ │ │ │ │ ├── 44.mcfunction │ │ │ │ │ ├── 45.mcfunction │ │ │ │ │ ├── 46.mcfunction │ │ │ │ │ ├── 47.mcfunction │ │ │ │ │ ├── 48.mcfunction │ │ │ │ │ ├── 49.mcfunction │ │ │ │ │ ├── 5.mcfunction │ │ │ │ │ ├── 50.mcfunction │ │ │ │ │ ├── 51.mcfunction │ │ │ │ │ ├── 52.mcfunction │ │ │ │ │ ├── 53.mcfunction │ │ │ │ │ ├── 54.mcfunction │ │ │ │ │ ├── 55.mcfunction │ │ │ │ │ ├── 56.mcfunction │ │ │ │ │ ├── 57.mcfunction │ │ │ │ │ ├── 58.mcfunction │ │ │ │ │ ├── 59.mcfunction │ │ │ │ │ ├── 6.mcfunction │ │ │ │ │ ├── 60.mcfunction │ │ │ │ │ ├── 61.mcfunction │ │ │ │ │ ├── 62.mcfunction │ │ │ │ │ ├── 63.mcfunction │ │ │ │ │ ├── 64.mcfunction │ │ │ │ │ ├── 65.mcfunction │ │ │ │ │ ├── 66.mcfunction │ │ │ │ │ ├── 67.mcfunction │ │ │ │ │ ├── 68.mcfunction │ │ │ │ │ ├── 69.mcfunction │ │ │ │ │ ├── 7.mcfunction │ │ │ │ │ ├── 70.mcfunction │ │ │ │ │ ├── 71.mcfunction │ │ │ │ │ ├── 72.mcfunction │ │ │ │ │ ├── 73.mcfunction │ │ │ │ │ ├── 74.mcfunction │ │ │ │ │ ├── 75.mcfunction │ │ │ │ │ ├── 8.mcfunction │ │ │ │ │ ├── 9.mcfunction │ │ │ │ │ └── painting │ │ │ │ │ ├── 0.mcfunction │ │ │ │ │ ├── 1.mcfunction │ │ │ │ │ ├── 2.mcfunction │ │ │ │ │ ├── 3.mcfunction │ │ │ │ │ ├── depth1.mcfunction │ │ │ │ │ ├── depth2.mcfunction │ │ │ │ │ ├── depth3.mcfunction │ │ │ │ │ ├── depth4.mcfunction │ │ │ │ │ ├── dispatch.mcfunction │ │ │ │ │ ├── height1.mcfunction │ │ │ │ │ ├── height2.mcfunction │ │ │ │ │ ├── height3.mcfunction │ │ │ │ │ ├── height4.mcfunction │ │ │ │ │ ├── width1.mcfunction │ │ │ │ │ ├── width2.mcfunction │ │ │ │ │ ├── width3.mcfunction │ │ │ │ │ └── width4.mcfunction │ │ │ ├── is_entity_in_block │ │ │ │ ├── check.mcfunction │ │ │ │ ├── collision.mcfunction │ │ │ │ └── default.mcfunction │ │ │ ├── is_entity_in_blocks │ │ │ │ ├── check │ │ │ │ │ ├── any.mcfunction │ │ │ │ │ └── shape.mcfunction │ │ │ │ ├── collision.mcfunction │ │ │ │ ├── default.mcfunction │ │ │ │ └── recurse │ │ │ │ │ ├── init.mcfunction │ │ │ │ │ ├── x.mcfunction │ │ │ │ │ ├── y.mcfunction │ │ │ │ │ └── z.mcfunction │ │ │ ├── is_in_block │ │ │ │ ├── check.mcfunction │ │ │ │ ├── collision.mcfunction │ │ │ │ └── default.mcfunction │ │ │ ├── is_in_entity.mcfunction │ │ │ ├── reset_entity.mcfunction │ │ │ ├── set_entity.mcfunction │ │ │ └── utils │ │ │ │ ├── get_custom_size.mcfunction │ │ │ │ ├── get_distance_pos.mcfunction │ │ │ │ ├── get_entity_pos.mcfunction │ │ │ │ ├── get_entity_size.mcfunction │ │ │ │ ├── get_fract_pos.mcfunction │ │ │ │ ├── get_negative_pos.mcfunction │ │ │ │ ├── get_relative_pos.mcfunction │ │ │ │ └── tp.mcfunction │ │ │ ├── predicate │ │ │ └── internal │ │ │ │ ├── is_baby.json │ │ │ │ ├── is_gliding.json │ │ │ │ ├── is_sneaking.json │ │ │ │ ├── is_swimming.json │ │ │ │ └── salmon │ │ │ │ ├── large.json │ │ │ │ └── small.json │ │ │ ├── tags │ │ │ ├── block │ │ │ │ ├── can_pass_through.json │ │ │ │ ├── has_offset.json │ │ │ │ ├── has_shape_offset.json │ │ │ │ ├── has_visual_offset.json │ │ │ │ ├── intangible.json │ │ │ │ ├── internal │ │ │ │ │ ├── placement_cauldrons.json │ │ │ │ │ └── placement_full.json │ │ │ │ ├── is_fluid.json │ │ │ │ ├── is_full_cube.json │ │ │ │ ├── is_waterloggable.json │ │ │ │ └── none.json │ │ │ ├── entity_type │ │ │ │ ├── intangible.json │ │ │ │ ├── internal │ │ │ │ │ ├── arrow_like.json │ │ │ │ │ ├── bat_like.json │ │ │ │ │ ├── boat.json │ │ │ │ │ ├── camel.json │ │ │ │ │ ├── cat_like.json │ │ │ │ │ ├── cow_like.json │ │ │ │ │ ├── falling_block_like.json │ │ │ │ │ ├── ghast_like.json │ │ │ │ │ ├── group_1.json │ │ │ │ │ ├── group_16.json │ │ │ │ │ ├── group_2.json │ │ │ │ │ ├── group_32.json │ │ │ │ │ ├── group_4.json │ │ │ │ │ ├── group_64.json │ │ │ │ │ ├── group_8.json │ │ │ │ │ ├── hoglin.json │ │ │ │ │ ├── horse_like.json │ │ │ │ │ ├── item_frame.json │ │ │ │ │ ├── item_like.json │ │ │ │ │ ├── llama.json │ │ │ │ │ ├── minecart.json │ │ │ │ │ ├── nautilus.json │ │ │ │ │ ├── shulker_like.json │ │ │ │ │ ├── silverfish_like.json │ │ │ │ │ ├── skeleton.json │ │ │ │ │ ├── slime_like.json │ │ │ │ │ ├── small_fireball_like.json │ │ │ │ │ └── zombie_like.json │ │ │ │ ├── is_shaped.json │ │ │ │ └── is_sized.json │ │ │ └── function │ │ │ │ ├── bake_entity.json │ │ │ │ ├── callback │ │ │ │ ├── get_block_collision.json │ │ │ │ ├── get_block_collision_with_fluid.json │ │ │ │ ├── get_block_placement.json │ │ │ │ ├── get_block_placement_with_fluid.json │ │ │ │ ├── get_block_shape.json │ │ │ │ └── get_block_shape_with_fluid.json │ │ │ │ ├── get_block.json │ │ │ │ ├── get_block_collision.json │ │ │ │ ├── get_block_shape.json │ │ │ │ ├── get_entity.json │ │ │ │ ├── is_entity_in_block_collision.json │ │ │ │ ├── is_entity_in_block_interaction.json │ │ │ │ ├── is_entity_in_block_shape.json │ │ │ │ ├── is_entity_in_blocks_collision.json │ │ │ │ ├── is_entity_in_blocks_interaction.json │ │ │ │ ├── is_entity_in_blocks_shape.json │ │ │ │ ├── is_in_block_collision.json │ │ │ │ ├── is_in_block_interaction.json │ │ │ │ ├── is_in_block_shape.json │ │ │ │ ├── is_in_entity.json │ │ │ │ ├── reset_entity.json │ │ │ │ └── set_entity.json │ │ │ └── test │ │ │ ├── block_offset.mcfunction │ │ │ ├── block_shape.mcfunction │ │ │ ├── entity_in_block.mcfunction │ │ │ ├── entity_in_blocks.mcfunction │ │ │ ├── entity_scale.mcfunction │ │ │ ├── entity_size.mcfunction │ │ │ ├── in_block.mcfunction │ │ │ └── in_entity.mcfunction │ ├── gen_hitbox.py │ ├── module.json │ └── pack.png ├── bs.id │ ├── README.md │ ├── data │ │ └── bs.id │ │ │ ├── function │ │ │ ├── __load__.mcfunction │ │ │ ├── __unload__.mcfunction │ │ │ ├── give_cuid.mcfunction │ │ │ ├── give_suid.mcfunction │ │ │ └── update_cuids │ │ │ │ ├── loop.mcfunction │ │ │ │ ├── shift.mcfunction │ │ │ │ └── update_cuids.mcfunction │ │ │ ├── predicate │ │ │ ├── cuid_equal.json │ │ │ ├── cuid_lower.json │ │ │ ├── cuid_match.json │ │ │ ├── cuid_upper.json │ │ │ ├── has_cuid.json │ │ │ ├── has_suid.json │ │ │ ├── suid_equal.json │ │ │ ├── suid_lower.json │ │ │ ├── suid_match.json │ │ │ └── suid_upper.json │ │ │ ├── tags │ │ │ └── function │ │ │ │ ├── give_cuid.json │ │ │ │ ├── give_suid.json │ │ │ │ └── update_cuids.json │ │ │ └── test │ │ │ └── update_cuids.mcfunction │ ├── module.json │ └── pack.png ├── bs.interaction │ ├── README.md │ ├── data │ │ └── bs.interaction │ │ │ ├── advancement │ │ │ ├── left_click.json │ │ │ └── right_click.json │ │ │ ├── function │ │ │ ├── __load__.mcfunction │ │ │ ├── __unload__.mcfunction │ │ │ ├── callback │ │ │ │ ├── glow.mcfunction │ │ │ │ └── unglow.mcfunction │ │ │ ├── clear_events.mcfunction │ │ │ ├── on_event │ │ │ │ ├── hover │ │ │ │ │ ├── as_target.mcfunction │ │ │ │ │ ├── hover.mcfunction │ │ │ │ │ ├── reset.mcfunction │ │ │ │ │ └── run.mcfunction │ │ │ │ ├── hover_enter │ │ │ │ │ ├── as_target.mcfunction │ │ │ │ │ ├── get_target │ │ │ │ │ │ ├── filter.mcfunction │ │ │ │ │ │ └── mask.mcfunction │ │ │ │ │ ├── hover_enter.mcfunction │ │ │ │ │ ├── run.mcfunction │ │ │ │ │ └── try_enter.mcfunction │ │ │ │ ├── hover_leave │ │ │ │ │ ├── as_target.mcfunction │ │ │ │ │ ├── hover_leave.mcfunction │ │ │ │ │ ├── run.mcfunction │ │ │ │ │ └── try_leave.mcfunction │ │ │ │ ├── left_click │ │ │ │ │ ├── as_target.mcfunction │ │ │ │ │ ├── is_attacker.mcfunction │ │ │ │ │ └── left_click.mcfunction │ │ │ │ ├── process.mcfunction │ │ │ │ ├── process_hover.mcfunction │ │ │ │ ├── right_click │ │ │ │ │ ├── as_target.mcfunction │ │ │ │ │ ├── is_target.mcfunction │ │ │ │ │ └── right_click.mcfunction │ │ │ │ └── run.mcfunction │ │ │ └── register │ │ │ │ ├── errors │ │ │ │ ├── command.mcfunction │ │ │ │ ├── entity.mcfunction │ │ │ │ └── executor.mcfunction │ │ │ │ ├── hover.mcfunction │ │ │ │ ├── hover_enter.mcfunction │ │ │ │ ├── hover_leave.mcfunction │ │ │ │ ├── left_click.mcfunction │ │ │ │ ├── right_click.mcfunction │ │ │ │ └── utils │ │ │ │ ├── check_command.mcfunction │ │ │ │ ├── executor │ │ │ │ ├── check.mcfunction │ │ │ │ ├── interpret.mcfunction │ │ │ │ └── setup.mcfunction │ │ │ │ └── setup_listener.mcfunction │ │ │ ├── predicate │ │ │ └── internal │ │ │ │ └── hover_equal.json │ │ │ ├── tags │ │ │ └── function │ │ │ │ ├── callback │ │ │ │ ├── glow.json │ │ │ │ ├── none.json │ │ │ │ └── unglow.json │ │ │ │ ├── clear_events.json │ │ │ │ ├── on_hover.json │ │ │ │ ├── on_hover_enter.json │ │ │ │ ├── on_hover_leave.json │ │ │ │ ├── on_left_click.json │ │ │ │ └── on_right_click.json │ │ │ └── test │ │ │ ├── clear_events.mcfunction │ │ │ ├── on_hover.mcfunction │ │ │ ├── on_hover_enter.mcfunction │ │ │ ├── on_hover_leave.mcfunction │ │ │ ├── on_hover_logout.mcfunction │ │ │ ├── on_hover_once.mcfunction │ │ │ ├── on_hover_swap.mcfunction │ │ │ ├── on_left_click.mcfunction │ │ │ └── on_right_click.mcfunction │ ├── module.json │ └── pack.png ├── bs.link │ ├── README.md │ ├── data │ │ └── bs.link │ │ │ ├── function │ │ │ ├── __load__.mcfunction │ │ │ ├── __unload__.mcfunction │ │ │ ├── as_children.mcfunction │ │ │ ├── as_parent.mcfunction │ │ │ ├── at_children.mcfunction │ │ │ ├── at_parent.mcfunction │ │ │ ├── behaviors │ │ │ │ ├── apply.mcfunction │ │ │ │ ├── imitate_pos_x.mcfunction │ │ │ │ ├── imitate_pos_y.mcfunction │ │ │ │ ├── imitate_pos_z.mcfunction │ │ │ │ ├── imitate_rot_h.mcfunction │ │ │ │ ├── imitate_rot_v.mcfunction │ │ │ │ ├── reverse_pos_x.mcfunction │ │ │ │ ├── reverse_pos_y.mcfunction │ │ │ │ ├── reverse_pos_z.mcfunction │ │ │ │ ├── reverse_rot_h.mcfunction │ │ │ │ ├── reverse_rot_v.mcfunction │ │ │ │ └── setup.mcfunction │ │ │ ├── create_link_ata.mcfunction │ │ │ ├── keep_local_pos │ │ │ │ ├── apply.mcfunction │ │ │ │ └── keep_local_pos.mcfunction │ │ │ ├── mirror_point_ata │ │ │ │ ├── apply.mcfunction │ │ │ │ ├── as_origin.mcfunction │ │ │ │ └── mirror_point_ata.mcfunction │ │ │ ├── remove_link.mcfunction │ │ │ ├── tp.mcfunction │ │ │ ├── tp_rotate.mcfunction │ │ │ └── update_link │ │ │ │ ├── at_parent.mcfunction │ │ │ │ └── update_link.mcfunction │ │ │ ├── predicate │ │ │ ├── has_link.json │ │ │ └── link_equal.json │ │ │ ├── tags │ │ │ └── function │ │ │ │ ├── as_children.json │ │ │ │ ├── as_parent.json │ │ │ │ ├── at_children.json │ │ │ │ ├── at_parent.json │ │ │ │ ├── behaviors │ │ │ │ ├── apply.json │ │ │ │ ├── imitate_pos_x.json │ │ │ │ ├── imitate_pos_y.json │ │ │ │ ├── imitate_pos_z.json │ │ │ │ ├── imitate_rot_h.json │ │ │ │ ├── imitate_rot_v.json │ │ │ │ ├── reverse_pos_x.json │ │ │ │ ├── reverse_pos_y.json │ │ │ │ ├── reverse_pos_z.json │ │ │ │ ├── reverse_rot_h.json │ │ │ │ ├── reverse_rot_v.json │ │ │ │ └── setup.json │ │ │ │ ├── create_link_ata.json │ │ │ │ ├── imitate_pos.json │ │ │ │ ├── imitate_pos_and_rot.json │ │ │ │ ├── imitate_pos_x.json │ │ │ │ ├── imitate_pos_y.json │ │ │ │ ├── imitate_pos_z.json │ │ │ │ ├── imitate_rot.json │ │ │ │ ├── imitate_rot_h.json │ │ │ │ ├── imitate_rot_v.json │ │ │ │ ├── keep_local_pos.json │ │ │ │ ├── mirror_point_ata.json │ │ │ │ ├── mirror_x_plane.json │ │ │ │ ├── mirror_z_plane.json │ │ │ │ ├── remove_link.json │ │ │ │ ├── reverse_pos.json │ │ │ │ ├── reverse_pos_and_rot.json │ │ │ │ ├── reverse_pos_x.json │ │ │ │ ├── reverse_pos_y.json │ │ │ │ ├── reverse_pos_z.json │ │ │ │ ├── reverse_rot.json │ │ │ │ ├── reverse_rot_h.json │ │ │ │ ├── reverse_rot_v.json │ │ │ │ └── update_link.json │ │ │ └── test │ │ │ ├── as_children.mcfunction │ │ │ ├── as_parent.mcfunction │ │ │ ├── at_children.mcfunction │ │ │ ├── at_parent.mcfunction │ │ │ ├── create_link_ata.mcfunction │ │ │ ├── imitate_pos_and_rot.mcfunction │ │ │ ├── keep_local_pos.mcfunction │ │ │ ├── mirror_point_ata.mcfunction │ │ │ ├── remove_link.mcfunction │ │ │ ├── reverse_pos_and_rot.mcfunction │ │ │ └── update_link.mcfunction │ ├── module.json │ └── pack.png ├── bs.log │ ├── README.md │ ├── data │ │ └── bs.log │ │ │ ├── function │ │ │ ├── __load__.mcfunction │ │ │ ├── __unload__.mcfunction │ │ │ ├── history │ │ │ │ ├── clear.mcfunction │ │ │ │ ├── record.mcfunction │ │ │ │ └── show.mcfunction │ │ │ ├── severity │ │ │ │ ├── debug.mcfunction │ │ │ │ ├── error.mcfunction │ │ │ │ ├── info.mcfunction │ │ │ │ └── warn.mcfunction │ │ │ └── time │ │ │ │ ├── get.mcfunction │ │ │ │ ├── tick.mcfunction │ │ │ │ └── ticks │ │ │ │ ├── format.mcfunction │ │ │ │ └── stringify.mcfunction │ │ │ ├── tags │ │ │ └── function │ │ │ │ ├── clear_history.json │ │ │ │ ├── debug.json │ │ │ │ ├── error.json │ │ │ │ ├── history.json │ │ │ │ ├── info.json │ │ │ │ └── warn.json │ │ │ └── test │ │ │ ├── debug │ │ │ ├── hidden.mcfunction │ │ │ ├── visible.mcfunction │ │ │ └── wildcards.mcfunction │ │ │ ├── error │ │ │ ├── hidden.mcfunction │ │ │ ├── visible.mcfunction │ │ │ └── wildcards.mcfunction │ │ │ ├── history │ │ │ ├── clear.mcfunction │ │ │ └── show.mcfunction │ │ │ ├── info │ │ │ ├── hidden.mcfunction │ │ │ ├── visible.mcfunction │ │ │ └── wildcards.mcfunction │ │ │ └── warn │ │ │ ├── hidden.mcfunction │ │ │ ├── visible.mcfunction │ │ │ └── wildcards.mcfunction │ ├── module.json │ └── pack.png ├── bs.math │ ├── README.md │ ├── data │ │ └── bs.math │ │ │ ├── function │ │ │ ├── __load__.mcfunction │ │ │ ├── __unload__.mcfunction │ │ │ ├── acos.mcfunction │ │ │ ├── asin.mcfunction │ │ │ ├── atan │ │ │ │ ├── atan.mcfunction │ │ │ │ └── run.mcfunction │ │ │ ├── atan2 │ │ │ │ ├── atan2.mcfunction │ │ │ │ └── run.mcfunction │ │ │ ├── combine │ │ │ │ ├── combine.mcfunction │ │ │ │ └── recurse │ │ │ │ │ ├── init.mcfunction │ │ │ │ │ └── next.mcfunction │ │ │ ├── cos.mcfunction │ │ │ ├── divide.mcfunction │ │ │ ├── exp.mcfunction │ │ │ ├── exp2 │ │ │ │ ├── exp2.mcfunction │ │ │ │ ├── fract.mcfunction │ │ │ │ └── run.mcfunction │ │ │ ├── factorial │ │ │ │ ├── factorial.mcfunction │ │ │ │ └── loop.mcfunction │ │ │ ├── frexp │ │ │ │ ├── e_neg.mcfunction │ │ │ │ ├── e_pos │ │ │ │ │ ├── chunk.mcfunction │ │ │ │ │ ├── range_1.mcfunction │ │ │ │ │ ├── range_2.mcfunction │ │ │ │ │ ├── range_3.mcfunction │ │ │ │ │ ├── range_4.mcfunction │ │ │ │ │ └── split.mcfunction │ │ │ │ ├── frexp.mcfunction │ │ │ │ └── run.mcfunction │ │ │ ├── gcd │ │ │ │ ├── gcd.mcfunction │ │ │ │ └── loop.mcfunction │ │ │ ├── ipow.mcfunction │ │ │ ├── isqrt.mcfunction │ │ │ ├── ldexp │ │ │ │ ├── ldexp.mcfunction │ │ │ │ ├── mul.mcfunction │ │ │ │ ├── run.mcfunction │ │ │ │ └── table.mcfunction │ │ │ ├── log.mcfunction │ │ │ ├── log10.mcfunction │ │ │ ├── log2 │ │ │ │ ├── fract.mcfunction │ │ │ │ ├── log2.mcfunction │ │ │ │ └── run.mcfunction │ │ │ ├── loga │ │ │ │ ├── loga.mcfunction │ │ │ │ └── mul.mcfunction │ │ │ ├── pow │ │ │ │ ├── mul.mcfunction │ │ │ │ └── pow.mcfunction │ │ │ ├── sin.mcfunction │ │ │ ├── sincos │ │ │ │ ├── run.mcfunction │ │ │ │ └── sincos.mcfunction │ │ │ ├── sqrt.mcfunction │ │ │ └── tan │ │ │ │ ├── run.mcfunction │ │ │ │ └── tan.mcfunction │ │ │ ├── tags │ │ │ └── function │ │ │ │ ├── acos.json │ │ │ │ ├── asin.json │ │ │ │ ├── atan.json │ │ │ │ ├── atan2.json │ │ │ │ ├── combine.json │ │ │ │ ├── cos.json │ │ │ │ ├── divide.json │ │ │ │ ├── exp.json │ │ │ │ ├── exp2.json │ │ │ │ ├── factorial.json │ │ │ │ ├── frexp.json │ │ │ │ ├── gcd.json │ │ │ │ ├── ipow.json │ │ │ │ ├── isqrt.json │ │ │ │ ├── ldexp.json │ │ │ │ ├── log.json │ │ │ │ ├── log10.json │ │ │ │ ├── log2.json │ │ │ │ ├── loga.json │ │ │ │ ├── pow.json │ │ │ │ ├── sin.json │ │ │ │ ├── sincos.json │ │ │ │ ├── sqrt.json │ │ │ │ └── tan.json │ │ │ └── test │ │ │ ├── acos.mcfunction │ │ │ ├── asin.mcfunction │ │ │ ├── atan.mcfunction │ │ │ ├── atan2.mcfunction │ │ │ ├── combine.mcfunction │ │ │ ├── cos.mcfunction │ │ │ ├── divide.mcfunction │ │ │ ├── exp.mcfunction │ │ │ ├── exp2.mcfunction │ │ │ ├── factorial.mcfunction │ │ │ ├── frexp.mcfunction │ │ │ ├── gcd.mcfunction │ │ │ ├── ipow.mcfunction │ │ │ ├── isqrt.mcfunction │ │ │ ├── ldexp.mcfunction │ │ │ ├── log.mcfunction │ │ │ ├── log10.mcfunction │ │ │ ├── log2.mcfunction │ │ │ ├── loga.mcfunction │ │ │ ├── pow.mcfunction │ │ │ ├── sin.mcfunction │ │ │ ├── sincos.mcfunction │ │ │ ├── sqrt.mcfunction │ │ │ └── tan.mcfunction │ ├── module.json │ └── pack.png ├── bs.move │ ├── README.md │ ├── data │ │ └── bs.move │ │ │ ├── function │ │ │ ├── __load__.mcfunction │ │ │ ├── __unload__.mcfunction │ │ │ ├── collision │ │ │ │ ├── check │ │ │ │ │ ├── aabb.mcfunction │ │ │ │ │ ├── any.mcfunction │ │ │ │ │ ├── block │ │ │ │ │ │ ├── any.mcfunction │ │ │ │ │ │ ├── cube.mcfunction │ │ │ │ │ │ ├── next_shape.mcfunction │ │ │ │ │ │ └── shape.mcfunction │ │ │ │ │ ├── blocks.mcfunction │ │ │ │ │ ├── entities.mcfunction │ │ │ │ │ ├── entity │ │ │ │ │ │ ├── any.mcfunction │ │ │ │ │ │ └── custom.mcfunction │ │ │ │ │ └── init.mcfunction │ │ │ │ ├── collide.mcfunction │ │ │ │ ├── handle.mcfunction │ │ │ │ ├── recurse │ │ │ │ │ ├── x.mcfunction │ │ │ │ │ ├── y.mcfunction │ │ │ │ │ └── z.mcfunction │ │ │ │ ├── resolve │ │ │ │ │ ├── behaviors │ │ │ │ │ │ ├── bounce.mcfunction │ │ │ │ │ │ ├── damped_bounce.mcfunction │ │ │ │ │ │ ├── slide.mcfunction │ │ │ │ │ │ └── stick.mcfunction │ │ │ │ │ ├── canonical.mcfunction │ │ │ │ │ ├── local.mcfunction │ │ │ │ │ ├── toi.mcfunction │ │ │ │ │ └── vel.mcfunction │ │ │ │ └── utils │ │ │ │ │ ├── add_passengers_size.mcfunction │ │ │ │ │ ├── get_bounding_box.mcfunction │ │ │ │ │ ├── get_custom_size.mcfunction │ │ │ │ │ ├── get_default_size.mcfunction │ │ │ │ │ ├── get_entity_pos.mcfunction │ │ │ │ │ ├── get_relative_pos.mcfunction │ │ │ │ │ ├── get_starting_pos.mcfunction │ │ │ │ │ ├── get_y_pos.mcfunction │ │ │ │ │ ├── reset_tags.mcfunction │ │ │ │ │ ├── setup_tags.mcfunction │ │ │ │ │ ├── setup_xn.mcfunction │ │ │ │ │ ├── setup_xp.mcfunction │ │ │ │ │ ├── setup_yn.mcfunction │ │ │ │ │ ├── setup_yp.mcfunction │ │ │ │ │ ├── setup_zn.mcfunction │ │ │ │ │ ├── setup_zp.mcfunction │ │ │ │ │ └── tp_relative.mcfunction │ │ │ ├── convert │ │ │ │ ├── canonical_to_local │ │ │ │ │ ├── canonical_to_local.mcfunction │ │ │ │ │ └── sincos.mcfunction │ │ │ │ └── local_to_canonical │ │ │ │ │ ├── compute.mcfunction │ │ │ │ │ └── local_to_canonical.mcfunction │ │ │ ├── set_motion.mcfunction │ │ │ └── teleport │ │ │ │ ├── canonical │ │ │ │ ├── apply_vel.mcfunction │ │ │ │ └── run.mcfunction │ │ │ │ ├── local │ │ │ │ ├── apply_local_vel.mcfunction │ │ │ │ └── run.mcfunction │ │ │ │ ├── tp.mcfunction │ │ │ │ └── with.mcfunction │ │ │ ├── predicate │ │ │ └── has_vel.json │ │ │ ├── tags │ │ │ └── function │ │ │ │ ├── apply_local_vel.json │ │ │ │ ├── apply_vel.json │ │ │ │ ├── callback │ │ │ │ ├── bounce.json │ │ │ │ ├── damped_bounce.json │ │ │ │ ├── slide.json │ │ │ │ └── stick.json │ │ │ │ ├── canonical_to_local.json │ │ │ │ ├── local_to_canonical.json │ │ │ │ └── set_motion.json │ │ │ └── test │ │ │ ├── collision │ │ │ ├── with_block.mcfunction │ │ │ └── with_entity.mcfunction │ │ │ ├── convert │ │ │ ├── canonical_to_local.mcfunction │ │ │ └── local_to_canonical.mcfunction │ │ │ ├── set_motion.mcfunction │ │ │ └── teleport │ │ │ ├── canonical.mcfunction │ │ │ └── local.mcfunction │ ├── module.json │ └── pack.png ├── bs.position │ ├── README.md │ ├── data │ │ └── bs.position │ │ │ ├── function │ │ │ ├── __load__.mcfunction │ │ │ ├── __unload__.mcfunction │ │ │ ├── add │ │ │ │ ├── position │ │ │ │ │ ├── all │ │ │ │ │ │ ├── all.mcfunction │ │ │ │ │ │ └── run.mcfunction │ │ │ │ │ ├── x │ │ │ │ │ │ ├── run.mcfunction │ │ │ │ │ │ └── x.mcfunction │ │ │ │ │ ├── y │ │ │ │ │ │ ├── run.mcfunction │ │ │ │ │ │ └── y.mcfunction │ │ │ │ │ └── z │ │ │ │ │ │ ├── run.mcfunction │ │ │ │ │ │ └── z.mcfunction │ │ │ │ └── rotation │ │ │ │ │ ├── all │ │ │ │ │ ├── all.mcfunction │ │ │ │ │ └── run.mcfunction │ │ │ │ │ ├── h │ │ │ │ │ ├── h.mcfunction │ │ │ │ │ └── run.mcfunction │ │ │ │ │ └── v │ │ │ │ │ ├── run.mcfunction │ │ │ │ │ └── v.mcfunction │ │ │ ├── convert │ │ │ │ ├── canonical_to_local │ │ │ │ │ ├── canonical_to_local.mcfunction │ │ │ │ │ └── sincos.mcfunction │ │ │ │ └── local_to_canonical │ │ │ │ │ ├── compute.mcfunction │ │ │ │ │ └── local_to_canonical.mcfunction │ │ │ ├── get │ │ │ │ ├── distance │ │ │ │ │ ├── distance_ata.mcfunction │ │ │ │ │ └── distance_squared_ata.mcfunction │ │ │ │ ├── position │ │ │ │ │ ├── all.mcfunction │ │ │ │ │ ├── ctx.mcfunction │ │ │ │ │ ├── x.mcfunction │ │ │ │ │ ├── y.mcfunction │ │ │ │ │ └── z.mcfunction │ │ │ │ ├── relative │ │ │ │ │ ├── relative_ata.mcfunction │ │ │ │ │ └── relative_from_dir │ │ │ │ │ │ ├── ctx.mcfunction │ │ │ │ │ │ └── relative_from_dir.mcfunction │ │ │ │ └── rotation │ │ │ │ │ ├── all.mcfunction │ │ │ │ │ ├── h.mcfunction │ │ │ │ │ └── v.mcfunction │ │ │ ├── rotate.mcfunction │ │ │ ├── set │ │ │ │ ├── position │ │ │ │ │ ├── all │ │ │ │ │ │ ├── all.mcfunction │ │ │ │ │ │ └── run.mcfunction │ │ │ │ │ ├── x │ │ │ │ │ │ ├── run.mcfunction │ │ │ │ │ │ └── x.mcfunction │ │ │ │ │ ├── y │ │ │ │ │ │ ├── run.mcfunction │ │ │ │ │ │ └── y.mcfunction │ │ │ │ │ └── z │ │ │ │ │ │ ├── run.mcfunction │ │ │ │ │ │ └── z.mcfunction │ │ │ │ └── rotation │ │ │ │ │ ├── all │ │ │ │ │ ├── all.mcfunction │ │ │ │ │ └── run.mcfunction │ │ │ │ │ ├── h │ │ │ │ │ ├── h.mcfunction │ │ │ │ │ └── run.mcfunction │ │ │ │ │ └── v │ │ │ │ │ ├── run.mcfunction │ │ │ │ │ └── v.mcfunction │ │ │ └── tp.mcfunction │ │ │ ├── tags │ │ │ └── function │ │ │ │ ├── add_pos.json │ │ │ │ ├── add_pos_and_rot.json │ │ │ │ ├── add_pos_x.json │ │ │ │ ├── add_pos_y.json │ │ │ │ ├── add_pos_z.json │ │ │ │ ├── add_rot.json │ │ │ │ ├── add_rot_h.json │ │ │ │ ├── add_rot_v.json │ │ │ │ ├── canonical_to_local.json │ │ │ │ ├── get_distance_ata.json │ │ │ │ ├── get_distance_squared_ata.json │ │ │ │ ├── get_pos.json │ │ │ │ ├── get_pos_and_rot.json │ │ │ │ ├── get_pos_x.json │ │ │ │ ├── get_pos_y.json │ │ │ │ ├── get_pos_z.json │ │ │ │ ├── get_relative_ata.json │ │ │ │ ├── get_relative_from_dir.json │ │ │ │ ├── get_rot.json │ │ │ │ ├── get_rot_h.json │ │ │ │ ├── get_rot_v.json │ │ │ │ ├── local_to_canonical.json │ │ │ │ ├── set_pos.json │ │ │ │ ├── set_pos_and_rot.json │ │ │ │ ├── set_pos_x.json │ │ │ │ ├── set_pos_y.json │ │ │ │ ├── set_pos_z.json │ │ │ │ ├── set_rot.json │ │ │ │ ├── set_rot_h.json │ │ │ │ └── set_rot_v.json │ │ │ └── test │ │ │ ├── add │ │ │ ├── pos.mcfunction │ │ │ ├── pos_and_rot.mcfunction │ │ │ ├── pos_x.mcfunction │ │ │ ├── pos_y.mcfunction │ │ │ ├── pos_z.mcfunction │ │ │ ├── rot.mcfunction │ │ │ ├── rot_h.mcfunction │ │ │ └── rot_v.mcfunction │ │ │ ├── convert │ │ │ ├── canonical_to_local.mcfunction │ │ │ └── local_to_canonical.mcfunction │ │ │ ├── get │ │ │ ├── distance_ata.mcfunction │ │ │ ├── distance_squared_ata.mcfunction │ │ │ ├── pos.mcfunction │ │ │ ├── pos_and_rot.mcfunction │ │ │ ├── pos_x.mcfunction │ │ │ ├── pos_y.mcfunction │ │ │ ├── pos_z.mcfunction │ │ │ ├── relative_ata.mcfunction │ │ │ ├── relative_from_dir.mcfunction │ │ │ ├── rot.mcfunction │ │ │ ├── rot_h.mcfunction │ │ │ └── rot_v.mcfunction │ │ │ └── set │ │ │ ├── pos.mcfunction │ │ │ ├── pos_and_rot.mcfunction │ │ │ ├── pos_x.mcfunction │ │ │ ├── pos_y.mcfunction │ │ │ ├── pos_z.mcfunction │ │ │ ├── rot.mcfunction │ │ │ ├── rot_h.mcfunction │ │ │ └── rot_v.mcfunction │ ├── module.json │ └── pack.png ├── bs.random │ ├── README.md │ ├── data │ │ └── bs.random │ │ │ ├── function │ │ │ ├── __load__.mcfunction │ │ │ ├── __unload__.mcfunction │ │ │ ├── choice │ │ │ │ ├── choice.mcfunction │ │ │ │ └── get.mcfunction │ │ │ ├── distributions │ │ │ │ ├── binomial │ │ │ │ │ ├── binomial.mcfunction │ │ │ │ │ └── loop.mcfunction │ │ │ │ ├── geometric │ │ │ │ │ ├── geometric.mcfunction │ │ │ │ │ └── loop.mcfunction │ │ │ │ ├── normal.mcfunction │ │ │ │ ├── poisson │ │ │ │ │ ├── loop.mcfunction │ │ │ │ │ └── poisson.mcfunction │ │ │ │ └── uniform.mcfunction │ │ │ ├── noise │ │ │ │ ├── fractal_noise_2d │ │ │ │ │ ├── fractal_noise_2d.mcfunction │ │ │ │ │ └── loop.mcfunction │ │ │ │ ├── fractal_noise_mat_2d │ │ │ │ │ ├── fractal_noise_mat_2d.mcfunction │ │ │ │ │ ├── xloop.mcfunction │ │ │ │ │ └── yloop.mcfunction │ │ │ │ ├── simplex_noise_2d │ │ │ │ │ ├── gradient.mcfunction │ │ │ │ │ └── simplex_noise_2d.mcfunction │ │ │ │ ├── simplex_noise_mat_2d │ │ │ │ │ ├── simplex_noise_mat_2d.mcfunction │ │ │ │ │ ├── xloop.mcfunction │ │ │ │ │ └── yloop.mcfunction │ │ │ │ ├── white_noise_mat_1d │ │ │ │ │ ├── loop.mcfunction │ │ │ │ │ └── white_noise_mat_1d.mcfunction │ │ │ │ └── white_noise_mat_2d │ │ │ │ │ ├── white_noise_mat_2d.mcfunction │ │ │ │ │ ├── xloop.mcfunction │ │ │ │ │ └── yloop.mcfunction │ │ │ └── weighted_choice │ │ │ │ ├── loop.mcfunction │ │ │ │ ├── run.mcfunction │ │ │ │ └── weighted_choice.mcfunction │ │ │ ├── tags │ │ │ └── function │ │ │ │ ├── binomial.json │ │ │ │ ├── choice.json │ │ │ │ ├── fractal_noise_2d.json │ │ │ │ ├── fractal_noise_mat_2d.json │ │ │ │ ├── geometric.json │ │ │ │ ├── normal.json │ │ │ │ ├── poisson.json │ │ │ │ ├── simplex_noise_2d.json │ │ │ │ ├── simplex_noise_mat_2d.json │ │ │ │ ├── uniform.json │ │ │ │ ├── weighted_choice.json │ │ │ │ ├── white_noise_mat_1d.json │ │ │ │ └── white_noise_mat_2d.json │ │ │ └── test │ │ │ ├── choice.mcfunction │ │ │ ├── distributions │ │ │ ├── binomial.mcfunction │ │ │ ├── geometric.mcfunction │ │ │ ├── normal.mcfunction │ │ │ ├── poisson.mcfunction │ │ │ └── uniform.mcfunction │ │ │ ├── noise │ │ │ ├── fractal_noise_2d.mcfunction │ │ │ ├── fractal_noise_mat_2d.mcfunction │ │ │ ├── simplex_noise_2d.mcfunction │ │ │ ├── simplex_noise_mat_2d.mcfunction │ │ │ ├── white_noise_mat_1d.mcfunction │ │ │ └── white_noise_mat_2d.mcfunction │ │ │ └── weighted_choice.mcfunction │ ├── module.json │ └── pack.png ├── bs.raycast │ ├── README.md │ ├── data │ │ └── bs.raycast │ │ │ ├── function │ │ │ ├── __load__.mcfunction │ │ │ ├── __unload__.mcfunction │ │ │ ├── check │ │ │ │ ├── block │ │ │ │ │ ├── any.mcfunction │ │ │ │ │ └── shape.mcfunction │ │ │ │ └── entity │ │ │ │ │ ├── any.mcfunction │ │ │ │ │ ├── custom.mcfunction │ │ │ │ │ └── size.mcfunction │ │ │ ├── collide │ │ │ │ ├── any.mcfunction │ │ │ │ ├── block │ │ │ │ │ ├── handle.mcfunction │ │ │ │ │ ├── point.mcfunction │ │ │ │ │ └── target.mcfunction │ │ │ │ ├── cube.mcfunction │ │ │ │ ├── entity │ │ │ │ │ ├── handle.mcfunction │ │ │ │ │ └── target.mcfunction │ │ │ │ └── record │ │ │ │ │ ├── shape.mcfunction │ │ │ │ │ ├── size.mcfunction │ │ │ │ │ └── slice │ │ │ │ │ ├── left.mcfunction │ │ │ │ │ ├── merge_left.mcfunction │ │ │ │ │ ├── merge_right.mcfunction │ │ │ │ │ └── right.mcfunction │ │ │ ├── recurse │ │ │ │ ├── 1 │ │ │ │ │ ├── next.mcfunction │ │ │ │ │ ├── x.mcfunction │ │ │ │ │ ├── y.mcfunction │ │ │ │ │ └── z.mcfunction │ │ │ │ ├── 2 │ │ │ │ │ ├── next.mcfunction │ │ │ │ │ ├── x.mcfunction │ │ │ │ │ ├── y.mcfunction │ │ │ │ │ └── z.mcfunction │ │ │ │ ├── 3 │ │ │ │ │ ├── next.mcfunction │ │ │ │ │ ├── x.mcfunction │ │ │ │ │ ├── y.mcfunction │ │ │ │ │ └── z.mcfunction │ │ │ │ ├── 4 │ │ │ │ │ ├── next.mcfunction │ │ │ │ │ ├── x.mcfunction │ │ │ │ │ ├── y.mcfunction │ │ │ │ │ └── z.mcfunction │ │ │ │ ├── 5 │ │ │ │ │ ├── next.mcfunction │ │ │ │ │ ├── x.mcfunction │ │ │ │ │ ├── y.mcfunction │ │ │ │ │ └── z.mcfunction │ │ │ │ └── init.mcfunction │ │ │ ├── run.mcfunction │ │ │ ├── utils │ │ │ │ ├── get_entity_pos.mcfunction │ │ │ │ ├── get_hit_normal.mcfunction │ │ │ │ ├── get_hit_point.mcfunction │ │ │ │ ├── get_relative_pos.mcfunction │ │ │ │ ├── get_targeted_block.mcfunction │ │ │ │ ├── on_hit_point.mcfunction │ │ │ │ ├── on_targeted_block.mcfunction │ │ │ │ ├── on_targeted_entity.mcfunction │ │ │ │ ├── tp.mcfunction │ │ │ │ └── tp_hit_point.mcfunction │ │ │ └── with.mcfunction │ │ │ ├── predicate │ │ │ └── internal │ │ │ │ ├── checked.json │ │ │ │ └── collide.json │ │ │ ├── tags │ │ │ └── function │ │ │ │ └── run.json │ │ │ └── test │ │ │ ├── block │ │ │ ├── check_shape.mcfunction │ │ │ ├── ignored_blocks.mcfunction │ │ │ ├── max_distance.mcfunction │ │ │ ├── recurse_nnn.mcfunction │ │ │ ├── recurse_nnp.mcfunction │ │ │ ├── recurse_npn.mcfunction │ │ │ ├── recurse_npp.mcfunction │ │ │ ├── recurse_pnp.mcfunction │ │ │ ├── recurse_ppn.mcfunction │ │ │ ├── recurse_ppp.mcfunction │ │ │ └── recuse_pnn.mcfunction │ │ │ └── entity │ │ │ ├── check_shape.mcfunction │ │ │ ├── check_size.mcfunction │ │ │ ├── ignored_entities.mcfunction │ │ │ ├── max_distance.mcfunction │ │ │ └── tagged_entities.mcfunction │ ├── module.json │ └── pack.png ├── bs.schedule │ ├── README.md │ ├── data │ │ └── bs.schedule │ │ │ ├── function │ │ │ ├── __load__.mcfunction │ │ │ ├── __unload__.mcfunction │ │ │ ├── cancel │ │ │ │ ├── cancel_all.mcfunction │ │ │ │ ├── cancel_one.mcfunction │ │ │ │ └── remove_one.mcfunction │ │ │ ├── clear.mcfunction │ │ │ ├── execute │ │ │ │ ├── callback.mcfunction │ │ │ │ ├── loop.mcfunction │ │ │ │ ├── run │ │ │ │ │ ├── with_entity.mcfunction │ │ │ │ │ └── without_entity.mcfunction │ │ │ │ └── slice.mcfunction │ │ │ └── schedule │ │ │ │ ├── callback.mcfunction │ │ │ │ ├── context │ │ │ │ ├── get_custom_dimension.mcfunction │ │ │ │ ├── get_dimension.mcfunction │ │ │ │ └── get_position.mcfunction │ │ │ │ ├── schedule.mcfunction │ │ │ │ └── unit │ │ │ │ ├── handle.mcfunction │ │ │ │ └── normalize.mcfunction │ │ │ ├── predicate │ │ │ └── internal │ │ │ │ └── target.json │ │ │ ├── tags │ │ │ └── function │ │ │ │ ├── cancel_all.json │ │ │ │ ├── cancel_one.json │ │ │ │ ├── clear.json │ │ │ │ └── schedule.json │ │ │ └── test │ │ │ ├── cancel │ │ │ ├── all.mcfunction │ │ │ └── one.mcfunction │ │ │ ├── schedule │ │ │ ├── context.mcfunction │ │ │ ├── stack.mcfunction │ │ │ └── time.mcfunction │ │ │ └── units │ │ │ ├── error.mcfunction │ │ │ └── success.mcfunction │ ├── module.json │ └── pack.png ├── bs.sidebar │ ├── README.md │ ├── data │ │ └── bs.sidebar │ │ │ ├── function │ │ │ ├── __load__.mcfunction │ │ │ ├── __unload__.mcfunction │ │ │ ├── create │ │ │ │ ├── check │ │ │ │ │ ├── name.mcfunction │ │ │ │ │ └── objective.mcfunction │ │ │ │ ├── create.mcfunction │ │ │ │ └── recurse │ │ │ │ │ ├── abort.mcfunction │ │ │ │ │ ├── init.mcfunction │ │ │ │ │ └── next.mcfunction │ │ │ └── refresh │ │ │ │ ├── loop.mcfunction │ │ │ │ └── refresh.mcfunction │ │ │ └── tags │ │ │ └── function │ │ │ ├── create.json │ │ │ └── refresh.json │ ├── module.json │ └── pack.png ├── bs.spline │ ├── README.md │ ├── data │ │ └── bs.spline │ │ │ ├── function │ │ │ ├── __load__.mcfunction │ │ │ ├── __unload__.mcfunction │ │ │ ├── evaluate │ │ │ │ ├── evaluate_1d.mcfunction │ │ │ │ ├── evaluate_2d.mcfunction │ │ │ │ ├── evaluate_3d.mcfunction │ │ │ │ ├── evaluate_bezier.mcfunction │ │ │ │ ├── evaluate_bspline.mcfunction │ │ │ │ ├── evaluate_catmull_rom.mcfunction │ │ │ │ ├── evaluate_hermite.mcfunction │ │ │ │ └── evaluate_linear.mcfunction │ │ │ ├── sample │ │ │ │ ├── sample_1d.mcfunction │ │ │ │ ├── sample_2d.mcfunction │ │ │ │ ├── sample_3d.mcfunction │ │ │ │ ├── sample_bezier.mcfunction │ │ │ │ ├── sample_bspline.mcfunction │ │ │ │ ├── sample_catmull_rom.mcfunction │ │ │ │ ├── sample_hermite.mcfunction │ │ │ │ └── sample_linear.mcfunction │ │ │ ├── stream │ │ │ │ ├── process │ │ │ │ │ ├── pause_1d.mcfunction │ │ │ │ │ ├── pause_2d.mcfunction │ │ │ │ │ ├── pause_3d.mcfunction │ │ │ │ │ ├── resume.mcfunction │ │ │ │ │ ├── resume_1d.mcfunction │ │ │ │ │ ├── resume_2d.mcfunction │ │ │ │ │ ├── resume_3d.mcfunction │ │ │ │ │ └── scheduled.mcfunction │ │ │ │ ├── run.mcfunction │ │ │ │ ├── stream_1d.mcfunction │ │ │ │ ├── stream_2d.mcfunction │ │ │ │ ├── stream_3d.mcfunction │ │ │ │ ├── stream_bezier.mcfunction │ │ │ │ ├── stream_bspline.mcfunction │ │ │ │ ├── stream_catmull_rom.mcfunction │ │ │ │ ├── stream_hermite.mcfunction │ │ │ │ └── stream_linear.mcfunction │ │ │ └── utils │ │ │ │ ├── bezier │ │ │ │ ├── get_segment.mcfunction │ │ │ │ ├── next_segment_1d.mcfunction │ │ │ │ ├── next_segment_2d.mcfunction │ │ │ │ └── next_segment_3d.mcfunction │ │ │ │ ├── bspline │ │ │ │ ├── get_segment.mcfunction │ │ │ │ ├── next_segment_1d.mcfunction │ │ │ │ ├── next_segment_2d.mcfunction │ │ │ │ └── next_segment_3d.mcfunction │ │ │ │ ├── catmull_rom │ │ │ │ ├── get_segment.mcfunction │ │ │ │ ├── next_segment_1d.mcfunction │ │ │ │ ├── next_segment_2d.mcfunction │ │ │ │ └── next_segment_3d.mcfunction │ │ │ │ ├── compute_1d.mcfunction │ │ │ │ ├── compute_2d.mcfunction │ │ │ │ ├── compute_3d.mcfunction │ │ │ │ ├── hermite │ │ │ │ ├── get_segment.mcfunction │ │ │ │ ├── next_segment_1d.mcfunction │ │ │ │ ├── next_segment_2d.mcfunction │ │ │ │ └── next_segment_3d.mcfunction │ │ │ │ └── linear │ │ │ │ ├── get_segment.mcfunction │ │ │ │ ├── next_segment_1d.mcfunction │ │ │ │ ├── next_segment_2d.mcfunction │ │ │ │ └── next_segment_3d.mcfunction │ │ │ ├── tags │ │ │ └── function │ │ │ │ ├── evaluate_bezier.json │ │ │ │ ├── evaluate_bspline.json │ │ │ │ ├── evaluate_catmull_rom.json │ │ │ │ ├── evaluate_hermite.json │ │ │ │ ├── evaluate_linear.json │ │ │ │ ├── sample_bezier.json │ │ │ │ ├── sample_bspline.json │ │ │ │ ├── sample_catmull_rom.json │ │ │ │ ├── sample_hermite.json │ │ │ │ ├── sample_linear.json │ │ │ │ ├── stream_bezier.json │ │ │ │ ├── stream_bspline.json │ │ │ │ ├── stream_catmull_rom.json │ │ │ │ ├── stream_hermite.json │ │ │ │ └── stream_linear.json │ │ │ └── test │ │ │ ├── evaluate_bezier.mcfunction │ │ │ ├── evaluate_bspline.mcfunction │ │ │ ├── evaluate_catmull_rom.mcfunction │ │ │ ├── evaluate_hermite.mcfunction │ │ │ ├── evaluate_linear.mcfunction │ │ │ ├── sample_bezier.mcfunction │ │ │ ├── sample_bspline.mcfunction │ │ │ ├── sample_catmull_rom.mcfunction │ │ │ ├── sample_hermite.mcfunction │ │ │ ├── sample_linear.mcfunction │ │ │ ├── stream_bezier.mcfunction │ │ │ ├── stream_bspline.mcfunction │ │ │ ├── stream_catmull_rom.mcfunction │ │ │ ├── stream_hermite.mcfunction │ │ │ └── stream_linear.mcfunction │ ├── module.json │ └── pack.png ├── bs.string │ ├── README.md │ ├── data │ │ └── bs.string │ │ │ ├── function │ │ │ ├── __load__.mcfunction │ │ │ ├── __unload__.mcfunction │ │ │ ├── concat │ │ │ │ ├── concat.mcfunction │ │ │ │ ├── dispatch │ │ │ │ │ ├── 0.mcfunction │ │ │ │ │ ├── 1.mcfunction │ │ │ │ │ ├── 2.mcfunction │ │ │ │ │ ├── 3.mcfunction │ │ │ │ │ ├── 4.mcfunction │ │ │ │ │ ├── 5.mcfunction │ │ │ │ │ ├── 6.mcfunction │ │ │ │ │ ├── 7.mcfunction │ │ │ │ │ ├── chunked.mcfunction │ │ │ │ │ └── fixed.mcfunction │ │ │ │ └── run.mcfunction │ │ │ ├── find │ │ │ │ ├── find.mcfunction │ │ │ │ ├── find_all.mcfunction │ │ │ │ └── recurse │ │ │ │ │ ├── found.mcfunction │ │ │ │ │ ├── next.mcfunction │ │ │ │ │ └── substr.mcfunction │ │ │ ├── lower │ │ │ │ ├── loop.mcfunction │ │ │ │ └── lower.mcfunction │ │ │ ├── replace │ │ │ │ ├── recurse │ │ │ │ │ ├── found.mcfunction │ │ │ │ │ ├── next.mcfunction │ │ │ │ │ └── substr.mcfunction │ │ │ │ └── replace.mcfunction │ │ │ ├── replace_range │ │ │ │ ├── concat.mcfunction │ │ │ │ ├── replace_range.mcfunction │ │ │ │ └── split.mcfunction │ │ │ ├── reverse │ │ │ │ ├── loop.mcfunction │ │ │ │ └── reverse.mcfunction │ │ │ ├── split │ │ │ │ ├── recurse │ │ │ │ │ ├── found.mcfunction │ │ │ │ │ ├── next.mcfunction │ │ │ │ │ └── substr.mcfunction │ │ │ │ └── split.mcfunction │ │ │ ├── type │ │ │ │ ├── parse │ │ │ │ │ ├── macro.mcfunction │ │ │ │ │ └── parse.mcfunction │ │ │ │ ├── to_list │ │ │ │ │ ├── loop.mcfunction │ │ │ │ │ └── to_list.mcfunction │ │ │ │ └── to_string │ │ │ │ │ ├── macro.mcfunction │ │ │ │ │ └── to_string.mcfunction │ │ │ ├── upper │ │ │ │ ├── loop.mcfunction │ │ │ │ └── upper.mcfunction │ │ │ └── utils │ │ │ │ └── skip_table │ │ │ │ ├── compute.mcfunction │ │ │ │ ├── loop.mcfunction │ │ │ │ └── match.mcfunction │ │ │ ├── tags │ │ │ └── function │ │ │ │ ├── concat.json │ │ │ │ ├── find.json │ │ │ │ ├── find_all.json │ │ │ │ ├── lower.json │ │ │ │ ├── parse.json │ │ │ │ ├── replace.json │ │ │ │ ├── replace_range.json │ │ │ │ ├── reverse.json │ │ │ │ ├── split.json │ │ │ │ ├── to_list.json │ │ │ │ ├── to_string.json │ │ │ │ └── upper.json │ │ │ └── test │ │ │ ├── concat.mcfunction │ │ │ ├── find.mcfunction │ │ │ ├── find_all.mcfunction │ │ │ ├── lower.mcfunction │ │ │ ├── parse.mcfunction │ │ │ ├── replace.mcfunction │ │ │ ├── replace_range.mcfunction │ │ │ ├── reverse.mcfunction │ │ │ ├── split.mcfunction │ │ │ ├── to_list.mcfunction │ │ │ ├── to_string.mcfunction │ │ │ └── upper.mcfunction │ ├── gen_string.py │ ├── module.json │ ├── pack.png │ └── templates │ │ ├── char_table.jinja │ │ └── concat │ │ ├── join.jinja │ │ └── pair.jinja ├── bs.time │ ├── README.md │ ├── data │ │ └── bs.time │ │ │ ├── function │ │ │ ├── __load__.mcfunction │ │ │ ├── __unload__.mcfunction │ │ │ └── get │ │ │ │ ├── cast.mcfunction │ │ │ │ └── get.mcfunction │ │ │ ├── tags │ │ │ └── function │ │ │ │ └── get.json │ │ │ └── test │ │ │ └── format.mcfunction │ ├── module.json │ └── pack.png ├── bs.tree │ ├── README.md │ ├── data │ │ └── bs.tree │ │ │ ├── function │ │ │ ├── __load__.mcfunction │ │ │ └── __unload__.mcfunction │ │ │ └── structure │ │ │ ├── birch_1.nbt │ │ │ ├── birch_2.nbt │ │ │ ├── birch_3.nbt │ │ │ ├── birch_4.nbt │ │ │ ├── birch_5.nbt │ │ │ ├── cypress_1.nbt │ │ │ ├── cypress_2.nbt │ │ │ ├── cypress_3.nbt │ │ │ ├── cypress_4.nbt │ │ │ ├── cypress_5.nbt │ │ │ ├── dark_oak_1.nbt │ │ │ ├── dark_oak_2.nbt │ │ │ ├── dark_oak_3.nbt │ │ │ ├── dark_oak_4.nbt │ │ │ ├── dark_oak_5.nbt │ │ │ ├── dead_spruce_1.nbt │ │ │ ├── dead_spruce_2.nbt │ │ │ ├── dead_spruce_3.nbt │ │ │ ├── dead_spruce_4.nbt │ │ │ ├── dead_spruce_5.nbt │ │ │ ├── exotic_1.nbt │ │ │ ├── exotic_2.nbt │ │ │ ├── exotic_3.nbt │ │ │ ├── exotic_4.nbt │ │ │ ├── exotic_5.nbt │ │ │ ├── fir_1.nbt │ │ │ ├── fir_2.nbt │ │ │ ├── fir_3.nbt │ │ │ ├── fir_4.nbt │ │ │ ├── fir_5.nbt │ │ │ ├── jungle_1.nbt │ │ │ ├── jungle_2.nbt │ │ │ ├── jungle_3.nbt │ │ │ ├── jungle_4.nbt │ │ │ ├── jungle_5.nbt │ │ │ ├── mushroom_1.nbt │ │ │ ├── mushroom_2.nbt │ │ │ ├── mushroom_3.nbt │ │ │ ├── mushroom_4.nbt │ │ │ ├── mushroom_5.nbt │ │ │ ├── oak_1.nbt │ │ │ ├── oak_2.nbt │ │ │ ├── oak_3.nbt │ │ │ ├── oak_4.nbt │ │ │ ├── oak_5.nbt │ │ │ ├── palm_1.nbt │ │ │ ├── palm_2.nbt │ │ │ ├── palm_3.nbt │ │ │ ├── palm_4.nbt │ │ │ └── palm_5.nbt │ ├── module.json │ └── pack.png ├── bs.vector │ ├── README.md │ ├── data │ │ └── bs.vector │ │ │ ├── function │ │ │ ├── __load__.mcfunction │ │ │ ├── __unload__.mcfunction │ │ │ ├── abs_max.mcfunction │ │ │ ├── abs_min.mcfunction │ │ │ ├── convert │ │ │ │ ├── basis_rot_3d │ │ │ │ │ ├── basis_rot_3d.mcfunction │ │ │ │ │ └── sincos.mcfunction │ │ │ │ ├── cartesian_to_spherical │ │ │ │ │ ├── cartesian_to_spherical.mcfunction │ │ │ │ │ └── compute.mcfunction │ │ │ │ └── spherical_to_cartesian │ │ │ │ │ ├── compute.mcfunction │ │ │ │ │ └── spherical_to_cartesian.mcfunction │ │ │ ├── cross_product.mcfunction │ │ │ ├── dot_product.mcfunction │ │ │ ├── length.mcfunction │ │ │ ├── length_squared.mcfunction │ │ │ ├── normalize │ │ │ │ ├── compute.mcfunction │ │ │ │ └── normalize.mcfunction │ │ │ ├── normalize_max_component.mcfunction │ │ │ ├── pos_from_vec.mcfunction │ │ │ ├── rot_from_vec.mcfunction │ │ │ ├── vec_from_pos.mcfunction │ │ │ ├── vec_from_rot.mcfunction │ │ │ ├── vec_from_vel.mcfunction │ │ │ └── vel_from_vec.mcfunction │ │ │ ├── tags │ │ │ └── function │ │ │ │ ├── abs_max.json │ │ │ │ ├── abs_min.json │ │ │ │ ├── basis_rot_3d.json │ │ │ │ ├── cartesian_to_spherical.json │ │ │ │ ├── cross_product.json │ │ │ │ ├── dot_product.json │ │ │ │ ├── length.json │ │ │ │ ├── length_squared.json │ │ │ │ ├── normalize.json │ │ │ │ ├── normalize_max_component.json │ │ │ │ ├── pos_from_vec.json │ │ │ │ ├── rot_from_vec.json │ │ │ │ ├── spherical_to_cartesian.json │ │ │ │ ├── vec_from_pos.json │ │ │ │ ├── vec_from_rot.json │ │ │ │ ├── vec_from_vel.json │ │ │ │ └── vel_from_vec.json │ │ │ └── test │ │ │ ├── abs_max.mcfunction │ │ │ ├── abs_min.mcfunction │ │ │ ├── basis_rot_3d.mcfunction │ │ │ ├── cartesian_to_spherical.mcfunction │ │ │ ├── cross_product.mcfunction │ │ │ ├── dot_product.mcfunction │ │ │ ├── length.mcfunction │ │ │ ├── length_squared.mcfunction │ │ │ ├── normalize.mcfunction │ │ │ ├── normalize_max_component.mcfunction │ │ │ └── spherical_to_cartesian.mcfunction │ ├── module.json │ └── pack.png ├── bs.view │ ├── README.md │ ├── data │ │ └── bs.view │ │ │ ├── function │ │ │ ├── __load__.mcfunction │ │ │ ├── __unload__.mcfunction │ │ │ ├── aimed_block │ │ │ │ ├── at_aimed_block.mcfunction │ │ │ │ └── with.mcfunction │ │ │ ├── aimed_entity │ │ │ │ ├── as_aimed_entity.mcfunction │ │ │ │ ├── at_aimed_entity.mcfunction │ │ │ │ └── with.mcfunction │ │ │ ├── aimed_point │ │ │ │ ├── at_aimed_point.mcfunction │ │ │ │ └── with.mcfunction │ │ │ ├── block_placement │ │ │ │ ├── at_block_placement.mcfunction │ │ │ │ ├── displace.mcfunction │ │ │ │ ├── run.mcfunction │ │ │ │ └── with.mcfunction │ │ │ ├── can_see_ata │ │ │ │ ├── can_see_ata.mcfunction │ │ │ │ ├── get_relative_pos.mcfunction │ │ │ │ ├── tp.mcfunction │ │ │ │ └── with.mcfunction │ │ │ ├── in_view_ata │ │ │ │ ├── angle.mcfunction │ │ │ │ ├── check.mcfunction │ │ │ │ └── in_view_ata.mcfunction │ │ │ └── looked_entity │ │ │ │ ├── as_looked_entity.mcfunction │ │ │ │ ├── at_looked_entity.mcfunction │ │ │ │ └── setup.mcfunction │ │ │ ├── tags │ │ │ ├── block │ │ │ │ └── can_see_through.json │ │ │ └── function │ │ │ │ ├── as_aimed_entity.json │ │ │ │ ├── as_looked_entity.json │ │ │ │ ├── at_aimed_block.json │ │ │ │ ├── at_aimed_entity.json │ │ │ │ ├── at_aimed_point.json │ │ │ │ ├── at_block_placement.json │ │ │ │ ├── at_looked_entity.json │ │ │ │ ├── can_see_ata.json │ │ │ │ └── in_view_ata.json │ │ │ └── test │ │ │ ├── as_aimed_entity.mcfunction │ │ │ ├── as_looked_entity.mcfunction │ │ │ ├── at_aimed_block.mcfunction │ │ │ ├── at_aimed_entity.mcfunction │ │ │ ├── at_aimed_point.mcfunction │ │ │ ├── at_block_placement.mcfunction │ │ │ ├── at_looked_entity.mcfunction │ │ │ ├── can_see_ata.mcfunction │ │ │ └── in_view_ata.mcfunction │ ├── module.json │ └── pack.png ├── bs.xp │ ├── README.md │ ├── data │ │ └── bs.xp │ │ │ ├── function │ │ │ ├── __load__.mcfunction │ │ │ ├── __unload__.mcfunction │ │ │ ├── add │ │ │ │ ├── levels.mcfunction │ │ │ │ ├── points.mcfunction │ │ │ │ └── progress │ │ │ │ │ ├── apply.mcfunction │ │ │ │ │ └── progress.mcfunction │ │ │ ├── get │ │ │ │ ├── max_points │ │ │ │ │ ├── max_points.mcfunction │ │ │ │ │ ├── range_1.mcfunction │ │ │ │ │ ├── range_2.mcfunction │ │ │ │ │ └── range_3.mcfunction │ │ │ │ ├── progress.mcfunction │ │ │ │ ├── remaining_points.mcfunction │ │ │ │ └── total_points │ │ │ │ │ ├── range_1.mcfunction │ │ │ │ │ ├── range_2.mcfunction │ │ │ │ │ ├── range_3.mcfunction │ │ │ │ │ └── total_points.mcfunction │ │ │ ├── set │ │ │ │ ├── levels.mcfunction │ │ │ │ ├── points.mcfunction │ │ │ │ ├── progress │ │ │ │ │ ├── apply.mcfunction │ │ │ │ │ └── progress.mcfunction │ │ │ │ └── total_points.mcfunction │ │ │ └── utils │ │ │ │ └── restore_levels.mcfunction │ │ │ ├── tags │ │ │ └── function │ │ │ │ ├── add_levels.json │ │ │ │ ├── add_points.json │ │ │ │ ├── add_progress.json │ │ │ │ ├── get_max_points.json │ │ │ │ ├── get_progress.json │ │ │ │ ├── get_remaining_points.json │ │ │ │ ├── get_total_points.json │ │ │ │ ├── set_levels.json │ │ │ │ ├── set_points.json │ │ │ │ ├── set_progress.json │ │ │ │ └── set_total_points.json │ │ │ └── test │ │ │ ├── add │ │ │ ├── levels.mcfunction │ │ │ ├── points.mcfunction │ │ │ └── progress.mcfunction │ │ │ ├── get │ │ │ ├── max_points.mcfunction │ │ │ ├── progress.mcfunction │ │ │ ├── remaining_points.mcfunction │ │ │ └── total_points.mcfunction │ │ │ └── set │ │ │ ├── levels.mcfunction │ │ │ ├── points.mcfunction │ │ │ └── progress.mcfunction │ ├── module.json │ └── pack.png └── config.json ├── pyproject.toml ├── src └── bookshelf │ ├── __init__.py │ ├── bundle.py │ ├── commands │ ├── __init__.py │ ├── docs.py │ ├── examples.py │ ├── modules.py │ └── project.py │ ├── common │ ├── __init__.py │ ├── errors.py │ ├── json.py │ ├── logging.py │ ├── termui.py │ └── utils.py │ ├── definitions.py │ ├── models │ ├── __init__.py │ ├── collection.py │ ├── metadata.py │ ├── minecraft.py │ └── versions.py │ ├── module.py │ ├── plugins │ ├── __init__.py │ ├── build_pack.py │ ├── gen_help.py │ ├── gen_load.py │ ├── include_deps.py │ ├── include_tests.py │ ├── inject_import.py │ ├── inject_logger.py │ ├── make_bundle.py │ ├── minify_json.py │ ├── release_pack.py │ ├── setup_templates.py │ ├── update_mcmeta.py │ └── update_tags.py │ ├── services │ ├── __init__.py │ ├── builder.py │ ├── metadata.py │ ├── minecraft │ │ ├── __init__.py │ │ ├── biome.py │ │ ├── block.py │ │ └── utils.py │ ├── packtest │ │ ├── __init__.py │ │ ├── assets.py │ │ └── server.py │ ├── publishers │ │ ├── __init__.py │ │ ├── modrinth.py │ │ ├── smithed.py │ │ └── utils.py │ ├── updater.py │ └── validator.py │ └── templates │ ├── header.jinja │ ├── help.jinja │ ├── load │ ├── bundle │ │ ├── append.jinja │ │ └── concat.jinja │ ├── process │ │ ├── cleanup.jinja │ │ ├── enumerate.jinja │ │ ├── errors.jinja │ │ ├── resolve.jinja │ │ └── validate.jinja │ └── status │ │ ├── module.jinja │ │ └── status.jinja │ └── log.jinja └── uv.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/.editorconfig -------------------------------------------------------------------------------- /.spyglasscmds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/.spyglasscmds.json -------------------------------------------------------------------------------- /.spyglassrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/.spyglassrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/README.md -------------------------------------------------------------------------------- /data/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/data/manifest.json -------------------------------------------------------------------------------- /data/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/data/versions.json -------------------------------------------------------------------------------- /docs/_imgs/banner-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/banner-dark.png -------------------------------------------------------------------------------- /docs/_imgs/banner-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/banner-light.png -------------------------------------------------------------------------------- /docs/_imgs/credits/aeris.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/credits/aeris.jpg -------------------------------------------------------------------------------- /docs/_imgs/credits/aksiome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/credits/aksiome.png -------------------------------------------------------------------------------- /docs/_imgs/credits/ethanout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/credits/ethanout.png -------------------------------------------------------------------------------- /docs/_imgs/credits/leirof.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/credits/leirof.png -------------------------------------------------------------------------------- /docs/_imgs/credits/plagiatus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/credits/plagiatus.png -------------------------------------------------------------------------------- /docs/_imgs/credits/theogiraudet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/credits/theogiraudet.png -------------------------------------------------------------------------------- /docs/_imgs/credits/ultimatech.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/credits/ultimatech.jpg -------------------------------------------------------------------------------- /docs/_imgs/modules/bitwise-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/bitwise-dark.png -------------------------------------------------------------------------------- /docs/_imgs/modules/bitwise-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/bitwise-light.png -------------------------------------------------------------------------------- /docs/_imgs/modules/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/color.png -------------------------------------------------------------------------------- /docs/_imgs/modules/dump/example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/dump/example-1.png -------------------------------------------------------------------------------- /docs/_imgs/modules/dump/example-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/dump/example-2.png -------------------------------------------------------------------------------- /docs/_imgs/modules/environment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/environment.png -------------------------------------------------------------------------------- /docs/_imgs/modules/generation-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/generation-dark.png -------------------------------------------------------------------------------- /docs/_imgs/modules/generation-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/generation-light.png -------------------------------------------------------------------------------- /docs/_imgs/modules/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/link.png -------------------------------------------------------------------------------- /docs/_imgs/modules/log/example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/log/example-1.png -------------------------------------------------------------------------------- /docs/_imgs/modules/log/example-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/log/example-2.png -------------------------------------------------------------------------------- /docs/_imgs/modules/math-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/math-dark.png -------------------------------------------------------------------------------- /docs/_imgs/modules/math-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/math-light.png -------------------------------------------------------------------------------- /docs/_imgs/modules/math/arccos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/math/arccos.png -------------------------------------------------------------------------------- /docs/_imgs/modules/math/arcsin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/math/arcsin.png -------------------------------------------------------------------------------- /docs/_imgs/modules/math/arctan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/math/arctan.png -------------------------------------------------------------------------------- /docs/_imgs/modules/math/bhaskara.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/math/bhaskara.png -------------------------------------------------------------------------------- /docs/_imgs/modules/math/cosine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/math/cosine.png -------------------------------------------------------------------------------- /docs/_imgs/modules/math/divide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/math/divide.png -------------------------------------------------------------------------------- /docs/_imgs/modules/math/exp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/math/exp.png -------------------------------------------------------------------------------- /docs/_imgs/modules/math/factorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/math/factorial.png -------------------------------------------------------------------------------- /docs/_imgs/modules/math/gcd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/math/gcd.png -------------------------------------------------------------------------------- /docs/_imgs/modules/math/power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/math/power.png -------------------------------------------------------------------------------- /docs/_imgs/modules/math/sine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/math/sine.png -------------------------------------------------------------------------------- /docs/_imgs/modules/math/sqrt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/math/sqrt.png -------------------------------------------------------------------------------- /docs/_imgs/modules/math/tangent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/math/tangent.png -------------------------------------------------------------------------------- /docs/_imgs/modules/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/move.png -------------------------------------------------------------------------------- /docs/_imgs/modules/position.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/position.png -------------------------------------------------------------------------------- /docs/_imgs/modules/random.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/random.png -------------------------------------------------------------------------------- /docs/_imgs/modules/random/distributions_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/random/distributions_dark.png -------------------------------------------------------------------------------- /docs/_imgs/modules/random/distributions_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/random/distributions_light.png -------------------------------------------------------------------------------- /docs/_imgs/modules/random/fractal_noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/random/fractal_noise.png -------------------------------------------------------------------------------- /docs/_imgs/modules/random/simplex_noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/random/simplex_noise.png -------------------------------------------------------------------------------- /docs/_imgs/modules/random/white_noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/random/white_noise.png -------------------------------------------------------------------------------- /docs/_imgs/modules/spline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/spline.png -------------------------------------------------------------------------------- /docs/_imgs/modules/spline/bezier.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/spline/bezier.gif -------------------------------------------------------------------------------- /docs/_imgs/modules/spline/bspline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/spline/bspline.gif -------------------------------------------------------------------------------- /docs/_imgs/modules/spline/catmull_rom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/spline/catmull_rom.gif -------------------------------------------------------------------------------- /docs/_imgs/modules/spline/hermite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/spline/hermite.gif -------------------------------------------------------------------------------- /docs/_imgs/modules/string.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/string.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/birch_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/birch_1.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/birch_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/birch_2.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/birch_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/birch_3.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/birch_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/birch_4.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/birch_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/birch_5.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/cypress_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/cypress_1.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/cypress_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/cypress_2.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/cypress_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/cypress_3.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/cypress_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/cypress_4.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/cypress_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/cypress_5.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/dark_oak_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/dark_oak_1.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/dark_oak_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/dark_oak_2.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/dark_oak_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/dark_oak_3.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/dark_oak_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/dark_oak_4.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/dark_oak_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/dark_oak_5.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/dead_spruce_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/dead_spruce_1.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/dead_spruce_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/dead_spruce_2.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/dead_spruce_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/dead_spruce_3.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/dead_spruce_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/dead_spruce_4.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/dead_spruce_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/dead_spruce_5.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/exotic_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/exotic_1.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/exotic_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/exotic_2.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/exotic_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/exotic_3.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/exotic_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/exotic_4.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/exotic_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/exotic_5.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/fir_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/fir_1.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/fir_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/fir_2.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/fir_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/fir_3.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/fir_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/fir_4.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/fir_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/fir_5.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/jungle_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/jungle_1.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/jungle_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/jungle_2.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/jungle_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/jungle_3.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/jungle_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/jungle_4.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/jungle_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/jungle_5.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/mushroom_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/mushroom_1.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/mushroom_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/mushroom_2.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/mushroom_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/mushroom_3.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/mushroom_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/mushroom_4.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/mushroom_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/mushroom_5.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/oak_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/oak_1.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/oak_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/oak_2.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/oak_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/oak_3.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/oak_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/oak_4.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/oak_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/oak_5.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/palm_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/palm_1.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/palm_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/palm_2.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/palm_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/palm_3.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/palm_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/palm_4.png -------------------------------------------------------------------------------- /docs/_imgs/modules/tree/palm_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/tree/palm_5.png -------------------------------------------------------------------------------- /docs/_imgs/modules/vector-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/vector-dark.png -------------------------------------------------------------------------------- /docs/_imgs/modules/vector-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/vector-light.png -------------------------------------------------------------------------------- /docs/_imgs/modules/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/view.png -------------------------------------------------------------------------------- /docs/_imgs/modules/xp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/modules/xp.png -------------------------------------------------------------------------------- /docs/_imgs/readme/block-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/readme/block-dark.svg -------------------------------------------------------------------------------- /docs/_imgs/readme/block.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/readme/block.svg -------------------------------------------------------------------------------- /docs/_imgs/readme/generation-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/readme/generation-dark.svg -------------------------------------------------------------------------------- /docs/_imgs/readme/generation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/readme/generation.svg -------------------------------------------------------------------------------- /docs/_imgs/readme/health-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/readme/health-dark.svg -------------------------------------------------------------------------------- /docs/_imgs/readme/health.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/readme/health.svg -------------------------------------------------------------------------------- /docs/_imgs/readme/math-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/readme/math-dark.svg -------------------------------------------------------------------------------- /docs/_imgs/readme/math.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/readme/math.svg -------------------------------------------------------------------------------- /docs/_imgs/readme/quickstart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/readme/quickstart.svg -------------------------------------------------------------------------------- /docs/_imgs/readme/random-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/readme/random-dark.svg -------------------------------------------------------------------------------- /docs/_imgs/readme/random.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/readme/random.svg -------------------------------------------------------------------------------- /docs/_imgs/readme/raycast-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/readme/raycast-dark.svg -------------------------------------------------------------------------------- /docs/_imgs/readme/raycast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/readme/raycast.svg -------------------------------------------------------------------------------- /docs/_imgs/readme/watch-trailer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_imgs/readme/watch-trailer.svg -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/changelog/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/changelog/index.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/changelog/unreleased.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/changelog/unreleased.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/changelog/v1.0.0.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/changelog/v1.0.0.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/changelog/v2.0.0.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/changelog/v2.0.0.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/changelog/v2.1.0.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/changelog/v2.1.0.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/changelog/v2.1.1.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/changelog/v2.1.1.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/changelog/v2.2.0.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/changelog/v2.2.0.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/changelog/v2.2.1.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/changelog/v2.2.1.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/changelog/v2.2.2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/changelog/v2.2.2.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/changelog/v3.0.0.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/changelog/v3.0.0.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/changelog/v3.0.1.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/changelog/v3.0.1.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/changelog/v3.0.2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/changelog/v3.0.2.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/changelog/v3.1.0.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/changelog/v3.1.0.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/changelog/v3.1.1.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/changelog/v3.1.1.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/contribute/cli-reference.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/contribute/cli-reference.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/contribute/conventions.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/contribute/conventions.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/contribute/debug-tools.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/contribute/debug-tools.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/contribute/definitions.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/contribute/definitions.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/contribute/documentation.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/contribute/documentation.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/contribute/file-format.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/contribute/file-format.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/contribute/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/contribute/index.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/contribute/metadata.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/contribute/metadata.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/examples/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/examples/index.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/examples/lifestring.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/examples/lifestring.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/examples/paintbrush.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/examples/paintbrush.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/faq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/faq.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/glossary.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/glossary.csv -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/mentions-legales.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/mentions-legales.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/modules/bitwise.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/modules/bitwise.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/modules/block.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/modules/block.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/modules/color.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/modules/color.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/modules/dump.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/modules/dump.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/modules/environment.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/modules/environment.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/modules/generation.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/modules/generation.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/modules/health.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/modules/health.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/modules/hitbox.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/modules/hitbox.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/modules/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/modules/id.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/modules/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/modules/index.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/modules/interaction.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/modules/interaction.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/modules/link.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/modules/link.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/modules/log.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/modules/log.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/modules/math.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/modules/math.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/modules/move.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/modules/move.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/modules/position.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/modules/position.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/modules/random.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/modules/random.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/modules/raycast.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/modules/raycast.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/modules/schedule.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/modules/schedule.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/modules/sidebar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/modules/sidebar.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/modules/spline.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/modules/spline.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/modules/string.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/modules/string.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/modules/time.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/modules/time.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/modules/tree.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/modules/tree.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/modules/vector.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/modules/vector.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/modules/view.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/modules/view.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/modules/xp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/modules/xp.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/quickstart.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/quickstart.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/related/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/related/index.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/related/use-bookshelf.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/related/use-bookshelf.po -------------------------------------------------------------------------------- /docs/_locales/fr_FR/LC_MESSAGES/special-thanks.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/fr_FR/LC_MESSAGES/special-thanks.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/changelog/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/changelog/index.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/changelog/unreleased.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/changelog/unreleased.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/changelog/v1.0.0.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/changelog/v1.0.0.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/changelog/v2.0.0.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/changelog/v2.0.0.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/changelog/v2.1.0.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/changelog/v2.1.0.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/changelog/v2.1.1.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/changelog/v2.1.1.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/changelog/v2.2.0.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/changelog/v2.2.0.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/changelog/v2.2.1.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/changelog/v2.2.1.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/changelog/v2.2.2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/changelog/v2.2.2.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/changelog/v3.0.0.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/changelog/v3.0.0.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/changelog/v3.0.1.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/changelog/v3.0.1.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/changelog/v3.0.2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/changelog/v3.0.2.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/changelog/v3.1.0.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/changelog/v3.1.0.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/changelog/v3.1.1.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/changelog/v3.1.1.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/contribute/conventions.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/contribute/conventions.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/contribute/debug-tools.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/contribute/debug-tools.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/contribute/definitions.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/contribute/definitions.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/contribute/file-format.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/contribute/file-format.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/contribute/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/contribute/index.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/contribute/metadata.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/contribute/metadata.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/examples/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/examples/index.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/examples/lifestring.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/examples/lifestring.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/examples/paintbrush.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/examples/paintbrush.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/faq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/faq.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/glossary.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/glossary.csv -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/mentions-legales.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/mentions-legales.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/modules/bitwise.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/modules/bitwise.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/modules/block.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/modules/block.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/modules/color.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/modules/color.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/modules/dump.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/modules/dump.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/modules/environment.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/modules/environment.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/modules/generation.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/modules/generation.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/modules/health.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/modules/health.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/modules/hitbox.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/modules/hitbox.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/modules/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/modules/id.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/modules/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/modules/index.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/modules/interaction.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/modules/interaction.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/modules/link.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/modules/link.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/modules/log.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/modules/log.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/modules/math.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/modules/math.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/modules/move.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/modules/move.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/modules/position.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/modules/position.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/modules/random.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/modules/random.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/modules/raycast.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/modules/raycast.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/modules/schedule.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/modules/schedule.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/modules/sidebar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/modules/sidebar.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/modules/spline.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/modules/spline.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/modules/string.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/modules/string.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/modules/time.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/modules/time.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/modules/tree.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/modules/tree.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/modules/vector.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/modules/vector.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/modules/view.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/modules/view.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/modules/xp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/modules/xp.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/quickstart.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/quickstart.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/related/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/related/index.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/related/use-bookshelf.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/related/use-bookshelf.po -------------------------------------------------------------------------------- /docs/_locales/zh_CN/LC_MESSAGES/special-thanks.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_locales/zh_CN/LC_MESSAGES/special-thanks.po -------------------------------------------------------------------------------- /docs/_static/bookshelf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_static/bookshelf.css -------------------------------------------------------------------------------- /docs/_static/bookshelf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_static/bookshelf.js -------------------------------------------------------------------------------- /docs/_static/fonts/itim.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_static/fonts/itim.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/nunito.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_static/fonts/nunito.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/tossface.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_static/fonts/tossface.otf -------------------------------------------------------------------------------- /docs/_static/logo-bookshelf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_static/logo-bookshelf.png -------------------------------------------------------------------------------- /docs/_static/logo-gunivers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_static/logo-gunivers.png -------------------------------------------------------------------------------- /docs/_static/switcher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_static/switcher.json -------------------------------------------------------------------------------- /docs/_templates/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_templates/changelog.md -------------------------------------------------------------------------------- /docs/_templates/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_templates/comments.md -------------------------------------------------------------------------------- /docs/_templates/definitions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_templates/definitions.md -------------------------------------------------------------------------------- /docs/_templates/featured-modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_templates/featured-modules.md -------------------------------------------------------------------------------- /docs/_templates/footer-links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/_templates/footer-links.html -------------------------------------------------------------------------------- /docs/changelog/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/changelog/index.md -------------------------------------------------------------------------------- /docs/changelog/v1.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/changelog/v1.0.0.md -------------------------------------------------------------------------------- /docs/changelog/v2.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/changelog/v2.0.0.md -------------------------------------------------------------------------------- /docs/changelog/v2.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/changelog/v2.1.0.md -------------------------------------------------------------------------------- /docs/changelog/v2.1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/changelog/v2.1.1.md -------------------------------------------------------------------------------- /docs/changelog/v2.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/changelog/v2.2.0.md -------------------------------------------------------------------------------- /docs/changelog/v2.2.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/changelog/v2.2.1.md -------------------------------------------------------------------------------- /docs/changelog/v2.2.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/changelog/v2.2.2.md -------------------------------------------------------------------------------- /docs/changelog/v3.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/changelog/v3.0.0.md -------------------------------------------------------------------------------- /docs/changelog/v3.0.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/changelog/v3.0.1.md -------------------------------------------------------------------------------- /docs/changelog/v3.0.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/changelog/v3.0.2.md -------------------------------------------------------------------------------- /docs/changelog/v3.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/changelog/v3.1.0.md -------------------------------------------------------------------------------- /docs/changelog/v3.1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/changelog/v3.1.1.md -------------------------------------------------------------------------------- /docs/changelog/v3.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/changelog/v3.2.0.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contribute/cli-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/contribute/cli-reference.md -------------------------------------------------------------------------------- /docs/contribute/commit-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/contribute/commit-guidelines.md -------------------------------------------------------------------------------- /docs/contribute/contribution-validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/contribute/contribution-validation.md -------------------------------------------------------------------------------- /docs/contribute/conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/contribute/conventions.md -------------------------------------------------------------------------------- /docs/contribute/debug-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/contribute/debug-tools.md -------------------------------------------------------------------------------- /docs/contribute/definitions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/contribute/definitions.md -------------------------------------------------------------------------------- /docs/contribute/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/contribute/documentation.md -------------------------------------------------------------------------------- /docs/contribute/file-format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/contribute/file-format.md -------------------------------------------------------------------------------- /docs/contribute/generated-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/contribute/generated-files.md -------------------------------------------------------------------------------- /docs/contribute/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/contribute/getting-started.md -------------------------------------------------------------------------------- /docs/contribute/good-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/contribute/good-practices.md -------------------------------------------------------------------------------- /docs/contribute/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/contribute/index.md -------------------------------------------------------------------------------- /docs/contribute/metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/contribute/metadata.md -------------------------------------------------------------------------------- /docs/contribute/shared-resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/contribute/shared-resources.md -------------------------------------------------------------------------------- /docs/contribute/special-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/contribute/special-functions.md -------------------------------------------------------------------------------- /docs/contribute/special-thanks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/contribute/special-thanks.md -------------------------------------------------------------------------------- /docs/contribute/tree-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/contribute/tree-structure.md -------------------------------------------------------------------------------- /docs/examples/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/examples/index.md -------------------------------------------------------------------------------- /docs/examples/lifestring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/examples/lifestring.md -------------------------------------------------------------------------------- /docs/examples/paintbrush.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/examples/paintbrush.md -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/mentions-legales.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/mentions-legales.md -------------------------------------------------------------------------------- /docs/modules/bitwise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/modules/bitwise.md -------------------------------------------------------------------------------- /docs/modules/block.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/modules/block.md -------------------------------------------------------------------------------- /docs/modules/color.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/modules/color.md -------------------------------------------------------------------------------- /docs/modules/dump.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/modules/dump.md -------------------------------------------------------------------------------- /docs/modules/environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/modules/environment.md -------------------------------------------------------------------------------- /docs/modules/generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/modules/generation.md -------------------------------------------------------------------------------- /docs/modules/health.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/modules/health.md -------------------------------------------------------------------------------- /docs/modules/hitbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/modules/hitbox.md -------------------------------------------------------------------------------- /docs/modules/id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/modules/id.md -------------------------------------------------------------------------------- /docs/modules/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/modules/index.md -------------------------------------------------------------------------------- /docs/modules/interaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/modules/interaction.md -------------------------------------------------------------------------------- /docs/modules/link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/modules/link.md -------------------------------------------------------------------------------- /docs/modules/log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/modules/log.md -------------------------------------------------------------------------------- /docs/modules/math.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/modules/math.md -------------------------------------------------------------------------------- /docs/modules/move.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/modules/move.md -------------------------------------------------------------------------------- /docs/modules/position.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/modules/position.md -------------------------------------------------------------------------------- /docs/modules/random.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/modules/random.md -------------------------------------------------------------------------------- /docs/modules/raycast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/modules/raycast.md -------------------------------------------------------------------------------- /docs/modules/schedule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/modules/schedule.md -------------------------------------------------------------------------------- /docs/modules/sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/modules/sidebar.md -------------------------------------------------------------------------------- /docs/modules/spline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/modules/spline.md -------------------------------------------------------------------------------- /docs/modules/string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/modules/string.md -------------------------------------------------------------------------------- /docs/modules/time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/modules/time.md -------------------------------------------------------------------------------- /docs/modules/tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/modules/tree.md -------------------------------------------------------------------------------- /docs/modules/vector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/modules/vector.md -------------------------------------------------------------------------------- /docs/modules/view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/modules/view.md -------------------------------------------------------------------------------- /docs/modules/xp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/modules/xp.md -------------------------------------------------------------------------------- /docs/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/quickstart.md -------------------------------------------------------------------------------- /docs/related.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/docs/related.md -------------------------------------------------------------------------------- /examples/lifestring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/examples/lifestring.md -------------------------------------------------------------------------------- /examples/paintbrush.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/examples/paintbrush.md -------------------------------------------------------------------------------- /modules/@dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/@dev/README.md -------------------------------------------------------------------------------- /modules/@dev/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/@dev/module.json -------------------------------------------------------------------------------- /modules/@dev/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/@dev/pack.png -------------------------------------------------------------------------------- /modules/@prefabs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/@prefabs/README.md -------------------------------------------------------------------------------- /modules/@prefabs/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/@prefabs/module.json -------------------------------------------------------------------------------- /modules/@prefabs/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/@prefabs/pack.png -------------------------------------------------------------------------------- /modules/@runtime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/@runtime/README.md -------------------------------------------------------------------------------- /modules/@runtime/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/@runtime/module.json -------------------------------------------------------------------------------- /modules/@runtime/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/@runtime/pack.png -------------------------------------------------------------------------------- /modules/@suite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/@suite/README.md -------------------------------------------------------------------------------- /modules/@suite/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/@suite/module.json -------------------------------------------------------------------------------- /modules/@suite/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/@suite/pack.png -------------------------------------------------------------------------------- /modules/bs.bitwise/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.bitwise/README.md -------------------------------------------------------------------------------- /modules/bs.bitwise/data/bs.bitwise/function/not.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.bitwise/data/bs.bitwise/function/not.mcfunction -------------------------------------------------------------------------------- /modules/bs.bitwise/data/bs.bitwise/function/or.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.bitwise/data/bs.bitwise/function/or.mcfunction -------------------------------------------------------------------------------- /modules/bs.bitwise/data/bs.bitwise/function/xor.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.bitwise/data/bs.bitwise/function/xor.mcfunction -------------------------------------------------------------------------------- /modules/bs.bitwise/data/bs.bitwise/tags/function/and.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.bitwise/data/bs.bitwise/tags/function/and.json -------------------------------------------------------------------------------- /modules/bs.bitwise/data/bs.bitwise/tags/function/not.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.bitwise/data/bs.bitwise/tags/function/not.json -------------------------------------------------------------------------------- /modules/bs.bitwise/data/bs.bitwise/tags/function/or.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.bitwise/data/bs.bitwise/tags/function/or.json -------------------------------------------------------------------------------- /modules/bs.bitwise/data/bs.bitwise/tags/function/xor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.bitwise/data/bs.bitwise/tags/function/xor.json -------------------------------------------------------------------------------- /modules/bs.bitwise/data/bs.bitwise/test/and.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.bitwise/data/bs.bitwise/test/and.mcfunction -------------------------------------------------------------------------------- /modules/bs.bitwise/data/bs.bitwise/test/not.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.bitwise/data/bs.bitwise/test/not.mcfunction -------------------------------------------------------------------------------- /modules/bs.bitwise/data/bs.bitwise/test/or.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.bitwise/data/bs.bitwise/test/or.mcfunction -------------------------------------------------------------------------------- /modules/bs.bitwise/data/bs.bitwise/test/xor.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.bitwise/data/bs.bitwise/test/xor.mcfunction -------------------------------------------------------------------------------- /modules/bs.bitwise/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.bitwise/module.json -------------------------------------------------------------------------------- /modules/bs.bitwise/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.bitwise/pack.png -------------------------------------------------------------------------------- /modules/bs.block/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.block/README.md -------------------------------------------------------------------------------- /modules/bs.block/data/bs.block/function/set/run.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.block/data/bs.block/function/set/run.mcfunction -------------------------------------------------------------------------------- /modules/bs.block/data/bs.block/predicate/is_powered.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.block/data/bs.block/predicate/is_powered.json -------------------------------------------------------------------------------- /modules/bs.block/data/bs.block/predicate/is_spawnable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.block/data/bs.block/predicate/is_spawnable.json -------------------------------------------------------------------------------- /modules/bs.block/data/bs.block/tags/block/can_occlude.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.block/data/bs.block/tags/block/can_occlude.json -------------------------------------------------------------------------------- /modules/bs.block/data/bs.block/tags/block/has_state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.block/data/bs.block/tags/block/has_state.json -------------------------------------------------------------------------------- /modules/bs.block/data/bs.block/tags/function/get_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.block/data/bs.block/tags/function/get_type.json -------------------------------------------------------------------------------- /modules/bs.block/data/bs.block/tags/function/map_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.block/data/bs.block/tags/function/map_type.json -------------------------------------------------------------------------------- /modules/bs.block/data/bs.block/tags/function/match.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.block/data/bs.block/tags/function/match.json -------------------------------------------------------------------------------- /modules/bs.block/data/bs.block/tags/function/mix_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.block/data/bs.block/tags/function/mix_type.json -------------------------------------------------------------------------------- /modules/bs.block/data/bs.block/tags/function/set_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.block/data/bs.block/tags/function/set_type.json -------------------------------------------------------------------------------- /modules/bs.block/data/bs.block/test/fill/async.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.block/data/bs.block/test/fill/async.mcfunction -------------------------------------------------------------------------------- /modules/bs.block/data/bs.block/test/fill/block.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.block/data/bs.block/test/fill/block.mcfunction -------------------------------------------------------------------------------- /modules/bs.block/data/bs.block/test/fill/masks.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.block/data/bs.block/test/fill/masks.mcfunction -------------------------------------------------------------------------------- /modules/bs.block/data/bs.block/test/fill/random.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.block/data/bs.block/test/fill/random.mcfunction -------------------------------------------------------------------------------- /modules/bs.block/data/bs.block/test/fill/type.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.block/data/bs.block/test/fill/type.mcfunction -------------------------------------------------------------------------------- /modules/bs.block/data/bs.block/test/get/block.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.block/data/bs.block/test/get/block.mcfunction -------------------------------------------------------------------------------- /modules/bs.block/data/bs.block/test/get/sounds.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.block/data/bs.block/test/get/sounds.mcfunction -------------------------------------------------------------------------------- /modules/bs.block/data/bs.block/test/get/type.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.block/data/bs.block/test/get/type.mcfunction -------------------------------------------------------------------------------- /modules/bs.block/data/bs.block/test/lookup/item.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.block/data/bs.block/test/lookup/item.mcfunction -------------------------------------------------------------------------------- /modules/bs.block/data/bs.block/test/lookup/type.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.block/data/bs.block/test/lookup/type.mcfunction -------------------------------------------------------------------------------- /modules/bs.block/data/bs.block/test/match.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.block/data/bs.block/test/match.mcfunction -------------------------------------------------------------------------------- /modules/bs.block/data/bs.block/test/set/block.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.block/data/bs.block/test/set/block.mcfunction -------------------------------------------------------------------------------- /modules/bs.block/data/bs.block/test/set/type.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.block/data/bs.block/test/set/type.mcfunction -------------------------------------------------------------------------------- /modules/bs.block/gen_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.block/gen_block.py -------------------------------------------------------------------------------- /modules/bs.block/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.block/module.json -------------------------------------------------------------------------------- /modules/bs.block/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.block/pack.png -------------------------------------------------------------------------------- /modules/bs.block/templates/groups_table.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.block/templates/groups_table.jinja -------------------------------------------------------------------------------- /modules/bs.block/templates/items_table.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.block/templates/items_table.jinja -------------------------------------------------------------------------------- /modules/bs.block/templates/types_table.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.block/templates/types_table.jinja -------------------------------------------------------------------------------- /modules/bs.color/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.color/README.md -------------------------------------------------------------------------------- /modules/bs.color/data/bs.color/test/hex_to_int.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.color/data/bs.color/test/hex_to_int.mcfunction -------------------------------------------------------------------------------- /modules/bs.color/data/bs.color/test/hex_to_rgb.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.color/data/bs.color/test/hex_to_rgb.mcfunction -------------------------------------------------------------------------------- /modules/bs.color/data/bs.color/test/int_to_hex.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.color/data/bs.color/test/int_to_hex.mcfunction -------------------------------------------------------------------------------- /modules/bs.color/data/bs.color/test/int_to_rgb.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.color/data/bs.color/test/int_to_rgb.mcfunction -------------------------------------------------------------------------------- /modules/bs.color/data/bs.color/test/rgb_to_hex.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.color/data/bs.color/test/rgb_to_hex.mcfunction -------------------------------------------------------------------------------- /modules/bs.color/data/bs.color/test/rgb_to_int.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.color/data/bs.color/test/rgb_to_int.mcfunction -------------------------------------------------------------------------------- /modules/bs.color/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.color/module.json -------------------------------------------------------------------------------- /modules/bs.color/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.color/pack.png -------------------------------------------------------------------------------- /modules/bs.dump/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.dump/README.md -------------------------------------------------------------------------------- /modules/bs.dump/data/bs.dump/function/__load__.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.dump/data/bs.dump/function/__load__.mcfunction -------------------------------------------------------------------------------- /modules/bs.dump/data/bs.dump/function/expand.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.dump/data/bs.dump/function/expand.mcfunction -------------------------------------------------------------------------------- /modules/bs.dump/data/bs.dump/function/key/get.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.dump/data/bs.dump/function/key/get.mcfunction -------------------------------------------------------------------------------- /modules/bs.dump/data/bs.dump/function/var.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.dump/data/bs.dump/function/var.mcfunction -------------------------------------------------------------------------------- /modules/bs.dump/data/bs.dump/tags/function/var.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.dump/data/bs.dump/tags/function/var.json -------------------------------------------------------------------------------- /modules/bs.dump/data/bs.dump/test/var.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.dump/data/bs.dump/test/var.mcfunction -------------------------------------------------------------------------------- /modules/bs.dump/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.dump/module.json -------------------------------------------------------------------------------- /modules/bs.dump/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.dump/pack.png -------------------------------------------------------------------------------- /modules/bs.environment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.environment/README.md -------------------------------------------------------------------------------- /modules/bs.environment/gen_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.environment/gen_environment.py -------------------------------------------------------------------------------- /modules/bs.environment/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.environment/module.json -------------------------------------------------------------------------------- /modules/bs.environment/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.environment/pack.png -------------------------------------------------------------------------------- /modules/bs.generation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.generation/README.md -------------------------------------------------------------------------------- /modules/bs.generation/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.generation/module.json -------------------------------------------------------------------------------- /modules/bs.generation/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.generation/pack.png -------------------------------------------------------------------------------- /modules/bs.health/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.health/README.md -------------------------------------------------------------------------------- /modules/bs.health/data/bs.health/advancement/on_heal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.health/data/bs.health/advancement/on_heal.json -------------------------------------------------------------------------------- /modules/bs.health/data/bs.health/test/add/both.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.health/data/bs.health/test/add/both.mcfunction -------------------------------------------------------------------------------- /modules/bs.health/data/bs.health/test/set/both.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.health/data/bs.health/test/set/both.mcfunction -------------------------------------------------------------------------------- /modules/bs.health/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.health/module.json -------------------------------------------------------------------------------- /modules/bs.health/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.health/pack.png -------------------------------------------------------------------------------- /modules/bs.hitbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.hitbox/README.md -------------------------------------------------------------------------------- /modules/bs.hitbox/data/bs.hitbox/tags/block/is_fluid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.hitbox/data/bs.hitbox/tags/block/is_fluid.json -------------------------------------------------------------------------------- /modules/bs.hitbox/data/bs.hitbox/tags/block/none.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.hitbox/data/bs.hitbox/tags/block/none.json -------------------------------------------------------------------------------- /modules/bs.hitbox/data/bs.hitbox/test/in_block.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.hitbox/data/bs.hitbox/test/in_block.mcfunction -------------------------------------------------------------------------------- /modules/bs.hitbox/data/bs.hitbox/test/in_entity.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.hitbox/data/bs.hitbox/test/in_entity.mcfunction -------------------------------------------------------------------------------- /modules/bs.hitbox/gen_hitbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.hitbox/gen_hitbox.py -------------------------------------------------------------------------------- /modules/bs.hitbox/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.hitbox/module.json -------------------------------------------------------------------------------- /modules/bs.hitbox/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.hitbox/pack.png -------------------------------------------------------------------------------- /modules/bs.id/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.id/README.md -------------------------------------------------------------------------------- /modules/bs.id/data/bs.id/function/__load__.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.id/data/bs.id/function/__load__.mcfunction -------------------------------------------------------------------------------- /modules/bs.id/data/bs.id/function/__unload__.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.id/data/bs.id/function/__unload__.mcfunction -------------------------------------------------------------------------------- /modules/bs.id/data/bs.id/function/give_cuid.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.id/data/bs.id/function/give_cuid.mcfunction -------------------------------------------------------------------------------- /modules/bs.id/data/bs.id/function/give_suid.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.id/data/bs.id/function/give_suid.mcfunction -------------------------------------------------------------------------------- /modules/bs.id/data/bs.id/predicate/cuid_equal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.id/data/bs.id/predicate/cuid_equal.json -------------------------------------------------------------------------------- /modules/bs.id/data/bs.id/predicate/cuid_lower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.id/data/bs.id/predicate/cuid_lower.json -------------------------------------------------------------------------------- /modules/bs.id/data/bs.id/predicate/cuid_match.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.id/data/bs.id/predicate/cuid_match.json -------------------------------------------------------------------------------- /modules/bs.id/data/bs.id/predicate/cuid_upper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.id/data/bs.id/predicate/cuid_upper.json -------------------------------------------------------------------------------- /modules/bs.id/data/bs.id/predicate/has_cuid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.id/data/bs.id/predicate/has_cuid.json -------------------------------------------------------------------------------- /modules/bs.id/data/bs.id/predicate/has_suid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.id/data/bs.id/predicate/has_suid.json -------------------------------------------------------------------------------- /modules/bs.id/data/bs.id/predicate/suid_equal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.id/data/bs.id/predicate/suid_equal.json -------------------------------------------------------------------------------- /modules/bs.id/data/bs.id/predicate/suid_lower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.id/data/bs.id/predicate/suid_lower.json -------------------------------------------------------------------------------- /modules/bs.id/data/bs.id/predicate/suid_match.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.id/data/bs.id/predicate/suid_match.json -------------------------------------------------------------------------------- /modules/bs.id/data/bs.id/predicate/suid_upper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.id/data/bs.id/predicate/suid_upper.json -------------------------------------------------------------------------------- /modules/bs.id/data/bs.id/tags/function/give_cuid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.id/data/bs.id/tags/function/give_cuid.json -------------------------------------------------------------------------------- /modules/bs.id/data/bs.id/tags/function/give_suid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.id/data/bs.id/tags/function/give_suid.json -------------------------------------------------------------------------------- /modules/bs.id/data/bs.id/tags/function/update_cuids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.id/data/bs.id/tags/function/update_cuids.json -------------------------------------------------------------------------------- /modules/bs.id/data/bs.id/test/update_cuids.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.id/data/bs.id/test/update_cuids.mcfunction -------------------------------------------------------------------------------- /modules/bs.id/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.id/module.json -------------------------------------------------------------------------------- /modules/bs.id/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.id/pack.png -------------------------------------------------------------------------------- /modules/bs.interaction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.interaction/README.md -------------------------------------------------------------------------------- /modules/bs.interaction/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.interaction/module.json -------------------------------------------------------------------------------- /modules/bs.interaction/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.interaction/pack.png -------------------------------------------------------------------------------- /modules/bs.link/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.link/README.md -------------------------------------------------------------------------------- /modules/bs.link/data/bs.link/function/__load__.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.link/data/bs.link/function/__load__.mcfunction -------------------------------------------------------------------------------- /modules/bs.link/data/bs.link/function/as_parent.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.link/data/bs.link/function/as_parent.mcfunction -------------------------------------------------------------------------------- /modules/bs.link/data/bs.link/function/at_parent.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.link/data/bs.link/function/at_parent.mcfunction -------------------------------------------------------------------------------- /modules/bs.link/data/bs.link/function/tp.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.link/data/bs.link/function/tp.mcfunction -------------------------------------------------------------------------------- /modules/bs.link/data/bs.link/function/tp_rotate.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.link/data/bs.link/function/tp_rotate.mcfunction -------------------------------------------------------------------------------- /modules/bs.link/data/bs.link/predicate/has_link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.link/data/bs.link/predicate/has_link.json -------------------------------------------------------------------------------- /modules/bs.link/data/bs.link/predicate/link_equal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.link/data/bs.link/predicate/link_equal.json -------------------------------------------------------------------------------- /modules/bs.link/data/bs.link/tags/function/as_parent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.link/data/bs.link/tags/function/as_parent.json -------------------------------------------------------------------------------- /modules/bs.link/data/bs.link/tags/function/at_parent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.link/data/bs.link/tags/function/at_parent.json -------------------------------------------------------------------------------- /modules/bs.link/data/bs.link/test/as_children.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.link/data/bs.link/test/as_children.mcfunction -------------------------------------------------------------------------------- /modules/bs.link/data/bs.link/test/as_parent.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.link/data/bs.link/test/as_parent.mcfunction -------------------------------------------------------------------------------- /modules/bs.link/data/bs.link/test/at_children.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.link/data/bs.link/test/at_children.mcfunction -------------------------------------------------------------------------------- /modules/bs.link/data/bs.link/test/at_parent.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.link/data/bs.link/test/at_parent.mcfunction -------------------------------------------------------------------------------- /modules/bs.link/data/bs.link/test/remove_link.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.link/data/bs.link/test/remove_link.mcfunction -------------------------------------------------------------------------------- /modules/bs.link/data/bs.link/test/update_link.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.link/data/bs.link/test/update_link.mcfunction -------------------------------------------------------------------------------- /modules/bs.link/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.link/module.json -------------------------------------------------------------------------------- /modules/bs.link/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.link/pack.png -------------------------------------------------------------------------------- /modules/bs.log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.log/README.md -------------------------------------------------------------------------------- /modules/bs.log/data/bs.log/function/__load__.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.log/data/bs.log/function/__load__.mcfunction -------------------------------------------------------------------------------- /modules/bs.log/data/bs.log/function/__unload__.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.log/data/bs.log/function/__unload__.mcfunction -------------------------------------------------------------------------------- /modules/bs.log/data/bs.log/function/time/get.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.log/data/bs.log/function/time/get.mcfunction -------------------------------------------------------------------------------- /modules/bs.log/data/bs.log/function/time/tick.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.log/data/bs.log/function/time/tick.mcfunction -------------------------------------------------------------------------------- /modules/bs.log/data/bs.log/tags/function/debug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.log/data/bs.log/tags/function/debug.json -------------------------------------------------------------------------------- /modules/bs.log/data/bs.log/tags/function/error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.log/data/bs.log/tags/function/error.json -------------------------------------------------------------------------------- /modules/bs.log/data/bs.log/tags/function/history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.log/data/bs.log/tags/function/history.json -------------------------------------------------------------------------------- /modules/bs.log/data/bs.log/tags/function/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.log/data/bs.log/tags/function/info.json -------------------------------------------------------------------------------- /modules/bs.log/data/bs.log/tags/function/warn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.log/data/bs.log/tags/function/warn.json -------------------------------------------------------------------------------- /modules/bs.log/data/bs.log/test/debug/hidden.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.log/data/bs.log/test/debug/hidden.mcfunction -------------------------------------------------------------------------------- /modules/bs.log/data/bs.log/test/debug/visible.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.log/data/bs.log/test/debug/visible.mcfunction -------------------------------------------------------------------------------- /modules/bs.log/data/bs.log/test/debug/wildcards.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.log/data/bs.log/test/debug/wildcards.mcfunction -------------------------------------------------------------------------------- /modules/bs.log/data/bs.log/test/error/hidden.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.log/data/bs.log/test/error/hidden.mcfunction -------------------------------------------------------------------------------- /modules/bs.log/data/bs.log/test/error/visible.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.log/data/bs.log/test/error/visible.mcfunction -------------------------------------------------------------------------------- /modules/bs.log/data/bs.log/test/error/wildcards.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.log/data/bs.log/test/error/wildcards.mcfunction -------------------------------------------------------------------------------- /modules/bs.log/data/bs.log/test/history/clear.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.log/data/bs.log/test/history/clear.mcfunction -------------------------------------------------------------------------------- /modules/bs.log/data/bs.log/test/history/show.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.log/data/bs.log/test/history/show.mcfunction -------------------------------------------------------------------------------- /modules/bs.log/data/bs.log/test/info/hidden.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.log/data/bs.log/test/info/hidden.mcfunction -------------------------------------------------------------------------------- /modules/bs.log/data/bs.log/test/info/visible.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.log/data/bs.log/test/info/visible.mcfunction -------------------------------------------------------------------------------- /modules/bs.log/data/bs.log/test/info/wildcards.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.log/data/bs.log/test/info/wildcards.mcfunction -------------------------------------------------------------------------------- /modules/bs.log/data/bs.log/test/warn/hidden.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.log/data/bs.log/test/warn/hidden.mcfunction -------------------------------------------------------------------------------- /modules/bs.log/data/bs.log/test/warn/visible.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.log/data/bs.log/test/warn/visible.mcfunction -------------------------------------------------------------------------------- /modules/bs.log/data/bs.log/test/warn/wildcards.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.log/data/bs.log/test/warn/wildcards.mcfunction -------------------------------------------------------------------------------- /modules/bs.log/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.log/module.json -------------------------------------------------------------------------------- /modules/bs.log/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.log/pack.png -------------------------------------------------------------------------------- /modules/bs.math/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/README.md -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/function/__load__.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/function/__load__.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/function/acos.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/function/acos.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/function/asin.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/function/asin.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/function/atan/atan.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/function/atan/atan.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/function/atan/run.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/function/atan/run.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/function/atan2/run.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/function/atan2/run.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/function/cos.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/function/cos.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/function/divide.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/function/divide.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/function/exp.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/function/exp.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/function/exp2/exp2.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/function/exp2/exp2.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/function/exp2/run.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/function/exp2/run.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/function/frexp/run.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/function/frexp/run.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/function/gcd/gcd.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/function/gcd/gcd.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/function/gcd/loop.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/function/gcd/loop.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/function/ipow.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/function/ipow.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/function/isqrt.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/function/isqrt.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/function/ldexp/mul.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/function/ldexp/mul.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/function/ldexp/run.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/function/ldexp/run.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/function/log.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/function/log.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/function/log10.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/function/log10.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/function/log2/log2.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/function/log2/log2.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/function/log2/run.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/function/log2/run.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/function/loga/loga.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/function/loga/loga.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/function/loga/mul.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/function/loga/mul.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/function/pow/mul.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/function/pow/mul.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/function/pow/pow.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/function/pow/pow.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/function/sin.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/function/sin.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/function/sqrt.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/function/sqrt.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/function/tan/run.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/function/tan/run.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/function/tan/tan.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/function/tan/tan.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/tags/function/acos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/tags/function/acos.json -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/tags/function/asin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/tags/function/asin.json -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/tags/function/atan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/tags/function/atan.json -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/tags/function/atan2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/tags/function/atan2.json -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/tags/function/combine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/tags/function/combine.json -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/tags/function/cos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/tags/function/cos.json -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/tags/function/divide.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/tags/function/divide.json -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/tags/function/exp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/tags/function/exp.json -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/tags/function/exp2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/tags/function/exp2.json -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/tags/function/factorial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/tags/function/factorial.json -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/tags/function/frexp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/tags/function/frexp.json -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/tags/function/gcd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/tags/function/gcd.json -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/tags/function/ipow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/tags/function/ipow.json -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/tags/function/isqrt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/tags/function/isqrt.json -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/tags/function/ldexp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/tags/function/ldexp.json -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/tags/function/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/tags/function/log.json -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/tags/function/log10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/tags/function/log10.json -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/tags/function/log2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/tags/function/log2.json -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/tags/function/loga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/tags/function/loga.json -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/tags/function/pow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/tags/function/pow.json -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/tags/function/sin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/tags/function/sin.json -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/tags/function/sincos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/tags/function/sincos.json -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/tags/function/sqrt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/tags/function/sqrt.json -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/tags/function/tan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/tags/function/tan.json -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/test/acos.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/test/acos.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/test/asin.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/test/asin.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/test/atan.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/test/atan.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/test/atan2.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/test/atan2.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/test/combine.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/test/combine.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/test/cos.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/test/cos.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/test/divide.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/test/divide.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/test/exp.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/test/exp.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/test/exp2.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/test/exp2.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/test/factorial.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/test/factorial.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/test/frexp.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/test/frexp.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/test/gcd.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/test/gcd.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/test/ipow.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/test/ipow.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/test/isqrt.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/test/isqrt.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/test/ldexp.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/test/ldexp.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/test/log.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/test/log.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/test/log10.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/test/log10.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/test/log2.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/test/log2.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/test/loga.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/test/loga.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/test/pow.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/test/pow.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/test/sin.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/test/sin.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/test/sincos.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/test/sincos.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/test/sqrt.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/test/sqrt.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/data/bs.math/test/tan.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/data/bs.math/test/tan.mcfunction -------------------------------------------------------------------------------- /modules/bs.math/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/module.json -------------------------------------------------------------------------------- /modules/bs.math/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.math/pack.png -------------------------------------------------------------------------------- /modules/bs.move/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.move/README.md -------------------------------------------------------------------------------- /modules/bs.move/data/bs.move/function/__load__.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.move/data/bs.move/function/__load__.mcfunction -------------------------------------------------------------------------------- /modules/bs.move/data/bs.move/predicate/has_vel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.move/data/bs.move/predicate/has_vel.json -------------------------------------------------------------------------------- /modules/bs.move/data/bs.move/tags/function/apply_vel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.move/data/bs.move/tags/function/apply_vel.json -------------------------------------------------------------------------------- /modules/bs.move/data/bs.move/tags/function/set_motion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.move/data/bs.move/tags/function/set_motion.json -------------------------------------------------------------------------------- /modules/bs.move/data/bs.move/test/set_motion.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.move/data/bs.move/test/set_motion.mcfunction -------------------------------------------------------------------------------- /modules/bs.move/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.move/module.json -------------------------------------------------------------------------------- /modules/bs.move/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.move/pack.png -------------------------------------------------------------------------------- /modules/bs.position/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.position/README.md -------------------------------------------------------------------------------- /modules/bs.position/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.position/module.json -------------------------------------------------------------------------------- /modules/bs.position/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.position/pack.png -------------------------------------------------------------------------------- /modules/bs.random/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.random/README.md -------------------------------------------------------------------------------- /modules/bs.random/data/bs.random/tags/function/choice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.random/data/bs.random/tags/function/choice.json -------------------------------------------------------------------------------- /modules/bs.random/data/bs.random/tags/function/normal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.random/data/bs.random/tags/function/normal.json -------------------------------------------------------------------------------- /modules/bs.random/data/bs.random/test/choice.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.random/data/bs.random/test/choice.mcfunction -------------------------------------------------------------------------------- /modules/bs.random/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.random/module.json -------------------------------------------------------------------------------- /modules/bs.random/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.random/pack.png -------------------------------------------------------------------------------- /modules/bs.raycast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.raycast/README.md -------------------------------------------------------------------------------- /modules/bs.raycast/data/bs.raycast/function/run.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.raycast/data/bs.raycast/function/run.mcfunction -------------------------------------------------------------------------------- /modules/bs.raycast/data/bs.raycast/tags/function/run.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.raycast/data/bs.raycast/tags/function/run.json -------------------------------------------------------------------------------- /modules/bs.raycast/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.raycast/module.json -------------------------------------------------------------------------------- /modules/bs.raycast/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.raycast/pack.png -------------------------------------------------------------------------------- /modules/bs.schedule/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.schedule/README.md -------------------------------------------------------------------------------- /modules/bs.schedule/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.schedule/module.json -------------------------------------------------------------------------------- /modules/bs.schedule/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.schedule/pack.png -------------------------------------------------------------------------------- /modules/bs.sidebar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.sidebar/README.md -------------------------------------------------------------------------------- /modules/bs.sidebar/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.sidebar/module.json -------------------------------------------------------------------------------- /modules/bs.sidebar/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.sidebar/pack.png -------------------------------------------------------------------------------- /modules/bs.spline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.spline/README.md -------------------------------------------------------------------------------- /modules/bs.spline/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.spline/module.json -------------------------------------------------------------------------------- /modules/bs.spline/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.spline/pack.png -------------------------------------------------------------------------------- /modules/bs.string/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.string/README.md -------------------------------------------------------------------------------- /modules/bs.string/data/bs.string/tags/function/concat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.string/data/bs.string/tags/function/concat.json -------------------------------------------------------------------------------- /modules/bs.string/data/bs.string/tags/function/find.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.string/data/bs.string/tags/function/find.json -------------------------------------------------------------------------------- /modules/bs.string/data/bs.string/tags/function/lower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.string/data/bs.string/tags/function/lower.json -------------------------------------------------------------------------------- /modules/bs.string/data/bs.string/tags/function/parse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.string/data/bs.string/tags/function/parse.json -------------------------------------------------------------------------------- /modules/bs.string/data/bs.string/tags/function/split.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.string/data/bs.string/tags/function/split.json -------------------------------------------------------------------------------- /modules/bs.string/data/bs.string/tags/function/upper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.string/data/bs.string/tags/function/upper.json -------------------------------------------------------------------------------- /modules/bs.string/data/bs.string/test/concat.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.string/data/bs.string/test/concat.mcfunction -------------------------------------------------------------------------------- /modules/bs.string/data/bs.string/test/find.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.string/data/bs.string/test/find.mcfunction -------------------------------------------------------------------------------- /modules/bs.string/data/bs.string/test/find_all.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.string/data/bs.string/test/find_all.mcfunction -------------------------------------------------------------------------------- /modules/bs.string/data/bs.string/test/lower.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.string/data/bs.string/test/lower.mcfunction -------------------------------------------------------------------------------- /modules/bs.string/data/bs.string/test/parse.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.string/data/bs.string/test/parse.mcfunction -------------------------------------------------------------------------------- /modules/bs.string/data/bs.string/test/replace.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.string/data/bs.string/test/replace.mcfunction -------------------------------------------------------------------------------- /modules/bs.string/data/bs.string/test/reverse.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.string/data/bs.string/test/reverse.mcfunction -------------------------------------------------------------------------------- /modules/bs.string/data/bs.string/test/split.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.string/data/bs.string/test/split.mcfunction -------------------------------------------------------------------------------- /modules/bs.string/data/bs.string/test/to_list.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.string/data/bs.string/test/to_list.mcfunction -------------------------------------------------------------------------------- /modules/bs.string/data/bs.string/test/to_string.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.string/data/bs.string/test/to_string.mcfunction -------------------------------------------------------------------------------- /modules/bs.string/data/bs.string/test/upper.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.string/data/bs.string/test/upper.mcfunction -------------------------------------------------------------------------------- /modules/bs.string/gen_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.string/gen_string.py -------------------------------------------------------------------------------- /modules/bs.string/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.string/module.json -------------------------------------------------------------------------------- /modules/bs.string/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.string/pack.png -------------------------------------------------------------------------------- /modules/bs.string/templates/char_table.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.string/templates/char_table.jinja -------------------------------------------------------------------------------- /modules/bs.string/templates/concat/join.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.string/templates/concat/join.jinja -------------------------------------------------------------------------------- /modules/bs.string/templates/concat/pair.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.string/templates/concat/pair.jinja -------------------------------------------------------------------------------- /modules/bs.time/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.time/README.md -------------------------------------------------------------------------------- /modules/bs.time/data/bs.time/function/__load__.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.time/data/bs.time/function/__load__.mcfunction -------------------------------------------------------------------------------- /modules/bs.time/data/bs.time/function/get/cast.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.time/data/bs.time/function/get/cast.mcfunction -------------------------------------------------------------------------------- /modules/bs.time/data/bs.time/function/get/get.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.time/data/bs.time/function/get/get.mcfunction -------------------------------------------------------------------------------- /modules/bs.time/data/bs.time/tags/function/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.time/data/bs.time/tags/function/get.json -------------------------------------------------------------------------------- /modules/bs.time/data/bs.time/test/format.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.time/data/bs.time/test/format.mcfunction -------------------------------------------------------------------------------- /modules/bs.time/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.time/module.json -------------------------------------------------------------------------------- /modules/bs.time/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.time/pack.png -------------------------------------------------------------------------------- /modules/bs.tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/README.md -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/function/__load__.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/function/__load__.mcfunction -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/birch_1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/birch_1.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/birch_2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/birch_2.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/birch_3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/birch_3.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/birch_4.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/birch_4.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/birch_5.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/birch_5.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/cypress_1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/cypress_1.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/cypress_2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/cypress_2.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/cypress_3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/cypress_3.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/cypress_4.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/cypress_4.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/cypress_5.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/cypress_5.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/dark_oak_1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/dark_oak_1.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/dark_oak_2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/dark_oak_2.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/dark_oak_3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/dark_oak_3.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/dark_oak_4.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/dark_oak_4.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/dark_oak_5.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/dark_oak_5.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/dead_spruce_1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/dead_spruce_1.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/dead_spruce_2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/dead_spruce_2.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/dead_spruce_3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/dead_spruce_3.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/dead_spruce_4.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/dead_spruce_4.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/dead_spruce_5.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/dead_spruce_5.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/exotic_1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/exotic_1.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/exotic_2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/exotic_2.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/exotic_3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/exotic_3.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/exotic_4.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/exotic_4.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/exotic_5.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/exotic_5.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/fir_1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/fir_1.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/fir_2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/fir_2.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/fir_3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/fir_3.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/fir_4.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/fir_4.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/fir_5.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/fir_5.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/jungle_1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/jungle_1.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/jungle_2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/jungle_2.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/jungle_3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/jungle_3.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/jungle_4.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/jungle_4.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/jungle_5.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/jungle_5.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/mushroom_1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/mushroom_1.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/mushroom_2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/mushroom_2.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/mushroom_3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/mushroom_3.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/mushroom_4.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/mushroom_4.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/mushroom_5.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/mushroom_5.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/oak_1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/oak_1.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/oak_2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/oak_2.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/oak_3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/oak_3.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/oak_4.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/oak_4.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/oak_5.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/oak_5.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/palm_1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/palm_1.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/palm_2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/palm_2.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/palm_3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/palm_3.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/palm_4.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/palm_4.nbt -------------------------------------------------------------------------------- /modules/bs.tree/data/bs.tree/structure/palm_5.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/data/bs.tree/structure/palm_5.nbt -------------------------------------------------------------------------------- /modules/bs.tree/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/module.json -------------------------------------------------------------------------------- /modules/bs.tree/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.tree/pack.png -------------------------------------------------------------------------------- /modules/bs.vector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.vector/README.md -------------------------------------------------------------------------------- /modules/bs.vector/data/bs.vector/tags/function/length.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.vector/data/bs.vector/tags/function/length.json -------------------------------------------------------------------------------- /modules/bs.vector/data/bs.vector/test/abs_max.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.vector/data/bs.vector/test/abs_max.mcfunction -------------------------------------------------------------------------------- /modules/bs.vector/data/bs.vector/test/abs_min.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.vector/data/bs.vector/test/abs_min.mcfunction -------------------------------------------------------------------------------- /modules/bs.vector/data/bs.vector/test/length.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.vector/data/bs.vector/test/length.mcfunction -------------------------------------------------------------------------------- /modules/bs.vector/data/bs.vector/test/normalize.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.vector/data/bs.vector/test/normalize.mcfunction -------------------------------------------------------------------------------- /modules/bs.vector/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.vector/module.json -------------------------------------------------------------------------------- /modules/bs.vector/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.vector/pack.png -------------------------------------------------------------------------------- /modules/bs.view/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.view/README.md -------------------------------------------------------------------------------- /modules/bs.view/data/bs.view/function/__load__.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.view/data/bs.view/function/__load__.mcfunction -------------------------------------------------------------------------------- /modules/bs.view/data/bs.view/test/can_see_ata.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.view/data/bs.view/test/can_see_ata.mcfunction -------------------------------------------------------------------------------- /modules/bs.view/data/bs.view/test/in_view_ata.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.view/data/bs.view/test/in_view_ata.mcfunction -------------------------------------------------------------------------------- /modules/bs.view/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.view/module.json -------------------------------------------------------------------------------- /modules/bs.view/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.view/pack.png -------------------------------------------------------------------------------- /modules/bs.xp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.xp/README.md -------------------------------------------------------------------------------- /modules/bs.xp/data/bs.xp/function/__load__.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.xp/data/bs.xp/function/__load__.mcfunction -------------------------------------------------------------------------------- /modules/bs.xp/data/bs.xp/function/__unload__.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.xp/data/bs.xp/function/__unload__.mcfunction -------------------------------------------------------------------------------- /modules/bs.xp/data/bs.xp/function/add/levels.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.xp/data/bs.xp/function/add/levels.mcfunction -------------------------------------------------------------------------------- /modules/bs.xp/data/bs.xp/function/add/points.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.xp/data/bs.xp/function/add/points.mcfunction -------------------------------------------------------------------------------- /modules/bs.xp/data/bs.xp/function/get/progress.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.xp/data/bs.xp/function/get/progress.mcfunction -------------------------------------------------------------------------------- /modules/bs.xp/data/bs.xp/function/set/levels.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.xp/data/bs.xp/function/set/levels.mcfunction -------------------------------------------------------------------------------- /modules/bs.xp/data/bs.xp/function/set/points.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.xp/data/bs.xp/function/set/points.mcfunction -------------------------------------------------------------------------------- /modules/bs.xp/data/bs.xp/tags/function/add_levels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.xp/data/bs.xp/tags/function/add_levels.json -------------------------------------------------------------------------------- /modules/bs.xp/data/bs.xp/tags/function/add_points.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.xp/data/bs.xp/tags/function/add_points.json -------------------------------------------------------------------------------- /modules/bs.xp/data/bs.xp/tags/function/add_progress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.xp/data/bs.xp/tags/function/add_progress.json -------------------------------------------------------------------------------- /modules/bs.xp/data/bs.xp/tags/function/get_max_points.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.xp/data/bs.xp/tags/function/get_max_points.json -------------------------------------------------------------------------------- /modules/bs.xp/data/bs.xp/tags/function/get_progress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.xp/data/bs.xp/tags/function/get_progress.json -------------------------------------------------------------------------------- /modules/bs.xp/data/bs.xp/tags/function/set_levels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.xp/data/bs.xp/tags/function/set_levels.json -------------------------------------------------------------------------------- /modules/bs.xp/data/bs.xp/tags/function/set_points.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.xp/data/bs.xp/tags/function/set_points.json -------------------------------------------------------------------------------- /modules/bs.xp/data/bs.xp/tags/function/set_progress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.xp/data/bs.xp/tags/function/set_progress.json -------------------------------------------------------------------------------- /modules/bs.xp/data/bs.xp/test/add/levels.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.xp/data/bs.xp/test/add/levels.mcfunction -------------------------------------------------------------------------------- /modules/bs.xp/data/bs.xp/test/add/points.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.xp/data/bs.xp/test/add/points.mcfunction -------------------------------------------------------------------------------- /modules/bs.xp/data/bs.xp/test/add/progress.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.xp/data/bs.xp/test/add/progress.mcfunction -------------------------------------------------------------------------------- /modules/bs.xp/data/bs.xp/test/get/max_points.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.xp/data/bs.xp/test/get/max_points.mcfunction -------------------------------------------------------------------------------- /modules/bs.xp/data/bs.xp/test/get/progress.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.xp/data/bs.xp/test/get/progress.mcfunction -------------------------------------------------------------------------------- /modules/bs.xp/data/bs.xp/test/get/total_points.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.xp/data/bs.xp/test/get/total_points.mcfunction -------------------------------------------------------------------------------- /modules/bs.xp/data/bs.xp/test/set/levels.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.xp/data/bs.xp/test/set/levels.mcfunction -------------------------------------------------------------------------------- /modules/bs.xp/data/bs.xp/test/set/points.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.xp/data/bs.xp/test/set/points.mcfunction -------------------------------------------------------------------------------- /modules/bs.xp/data/bs.xp/test/set/progress.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.xp/data/bs.xp/test/set/progress.mcfunction -------------------------------------------------------------------------------- /modules/bs.xp/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.xp/module.json -------------------------------------------------------------------------------- /modules/bs.xp/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/bs.xp/pack.png -------------------------------------------------------------------------------- /modules/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/modules/config.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/bookshelf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/__init__.py -------------------------------------------------------------------------------- /src/bookshelf/bundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/bundle.py -------------------------------------------------------------------------------- /src/bookshelf/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/commands/__init__.py -------------------------------------------------------------------------------- /src/bookshelf/commands/docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/commands/docs.py -------------------------------------------------------------------------------- /src/bookshelf/commands/examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/commands/examples.py -------------------------------------------------------------------------------- /src/bookshelf/commands/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/commands/modules.py -------------------------------------------------------------------------------- /src/bookshelf/commands/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/commands/project.py -------------------------------------------------------------------------------- /src/bookshelf/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/common/__init__.py -------------------------------------------------------------------------------- /src/bookshelf/common/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/common/errors.py -------------------------------------------------------------------------------- /src/bookshelf/common/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/common/json.py -------------------------------------------------------------------------------- /src/bookshelf/common/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/common/logging.py -------------------------------------------------------------------------------- /src/bookshelf/common/termui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/common/termui.py -------------------------------------------------------------------------------- /src/bookshelf/common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/common/utils.py -------------------------------------------------------------------------------- /src/bookshelf/definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/definitions.py -------------------------------------------------------------------------------- /src/bookshelf/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/models/__init__.py -------------------------------------------------------------------------------- /src/bookshelf/models/collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/models/collection.py -------------------------------------------------------------------------------- /src/bookshelf/models/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/models/metadata.py -------------------------------------------------------------------------------- /src/bookshelf/models/minecraft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/models/minecraft.py -------------------------------------------------------------------------------- /src/bookshelf/models/versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/models/versions.py -------------------------------------------------------------------------------- /src/bookshelf/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/module.py -------------------------------------------------------------------------------- /src/bookshelf/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | """Beet plugins provided and used by the Bookshelf Library.""" 2 | -------------------------------------------------------------------------------- /src/bookshelf/plugins/build_pack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/plugins/build_pack.py -------------------------------------------------------------------------------- /src/bookshelf/plugins/gen_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/plugins/gen_help.py -------------------------------------------------------------------------------- /src/bookshelf/plugins/gen_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/plugins/gen_load.py -------------------------------------------------------------------------------- /src/bookshelf/plugins/include_deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/plugins/include_deps.py -------------------------------------------------------------------------------- /src/bookshelf/plugins/include_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/plugins/include_tests.py -------------------------------------------------------------------------------- /src/bookshelf/plugins/inject_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/plugins/inject_import.py -------------------------------------------------------------------------------- /src/bookshelf/plugins/inject_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/plugins/inject_logger.py -------------------------------------------------------------------------------- /src/bookshelf/plugins/make_bundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/plugins/make_bundle.py -------------------------------------------------------------------------------- /src/bookshelf/plugins/minify_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/plugins/minify_json.py -------------------------------------------------------------------------------- /src/bookshelf/plugins/release_pack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/plugins/release_pack.py -------------------------------------------------------------------------------- /src/bookshelf/plugins/setup_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/plugins/setup_templates.py -------------------------------------------------------------------------------- /src/bookshelf/plugins/update_mcmeta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/plugins/update_mcmeta.py -------------------------------------------------------------------------------- /src/bookshelf/plugins/update_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/plugins/update_tags.py -------------------------------------------------------------------------------- /src/bookshelf/services/__init__.py: -------------------------------------------------------------------------------- 1 | """High-level orchestration for the Bookshelf Library.""" 2 | -------------------------------------------------------------------------------- /src/bookshelf/services/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/services/builder.py -------------------------------------------------------------------------------- /src/bookshelf/services/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/services/metadata.py -------------------------------------------------------------------------------- /src/bookshelf/services/minecraft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/services/minecraft/__init__.py -------------------------------------------------------------------------------- /src/bookshelf/services/minecraft/biome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/services/minecraft/biome.py -------------------------------------------------------------------------------- /src/bookshelf/services/minecraft/block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/services/minecraft/block.py -------------------------------------------------------------------------------- /src/bookshelf/services/minecraft/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/services/minecraft/utils.py -------------------------------------------------------------------------------- /src/bookshelf/services/packtest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/services/packtest/__init__.py -------------------------------------------------------------------------------- /src/bookshelf/services/packtest/assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/services/packtest/assets.py -------------------------------------------------------------------------------- /src/bookshelf/services/packtest/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/services/packtest/server.py -------------------------------------------------------------------------------- /src/bookshelf/services/publishers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/services/publishers/__init__.py -------------------------------------------------------------------------------- /src/bookshelf/services/publishers/modrinth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/services/publishers/modrinth.py -------------------------------------------------------------------------------- /src/bookshelf/services/publishers/smithed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/services/publishers/smithed.py -------------------------------------------------------------------------------- /src/bookshelf/services/publishers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/services/publishers/utils.py -------------------------------------------------------------------------------- /src/bookshelf/services/updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/services/updater.py -------------------------------------------------------------------------------- /src/bookshelf/services/validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/services/validator.py -------------------------------------------------------------------------------- /src/bookshelf/templates/header.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/templates/header.jinja -------------------------------------------------------------------------------- /src/bookshelf/templates/help.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/templates/help.jinja -------------------------------------------------------------------------------- /src/bookshelf/templates/load/bundle/append.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/templates/load/bundle/append.jinja -------------------------------------------------------------------------------- /src/bookshelf/templates/load/bundle/concat.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/templates/load/bundle/concat.jinja -------------------------------------------------------------------------------- /src/bookshelf/templates/load/process/cleanup.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/templates/load/process/cleanup.jinja -------------------------------------------------------------------------------- /src/bookshelf/templates/load/process/enumerate.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/templates/load/process/enumerate.jinja -------------------------------------------------------------------------------- /src/bookshelf/templates/load/process/errors.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/templates/load/process/errors.jinja -------------------------------------------------------------------------------- /src/bookshelf/templates/load/process/resolve.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/templates/load/process/resolve.jinja -------------------------------------------------------------------------------- /src/bookshelf/templates/load/process/validate.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/templates/load/process/validate.jinja -------------------------------------------------------------------------------- /src/bookshelf/templates/load/status/module.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/templates/load/status/module.jinja -------------------------------------------------------------------------------- /src/bookshelf/templates/load/status/status.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/templates/load/status/status.jinja -------------------------------------------------------------------------------- /src/bookshelf/templates/log.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/src/bookshelf/templates/log.jinja -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcbookshelf/bookshelf/HEAD/uv.lock --------------------------------------------------------------------------------