mcbookshelf 3.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mcbookshelf-3.0.0/.gitignore +1 -0
- mcbookshelf-3.0.0/LICENSE +373 -0
- mcbookshelf-3.0.0/PKG-INFO +14 -0
- mcbookshelf-3.0.0/bookshelf/__init__.py +17 -0
- mcbookshelf-3.0.0/bookshelf/bundle.py +16 -0
- mcbookshelf-3.0.0/bookshelf/commands/__init__.py +1 -0
- mcbookshelf-3.0.0/bookshelf/commands/docs.py +47 -0
- mcbookshelf-3.0.0/bookshelf/commands/examples.py +96 -0
- mcbookshelf-3.0.0/bookshelf/commands/modules.py +317 -0
- mcbookshelf-3.0.0/bookshelf/definitions.py +27 -0
- mcbookshelf-3.0.0/bookshelf/helpers.py +149 -0
- mcbookshelf-3.0.0/bookshelf/logger.py +191 -0
- mcbookshelf-3.0.0/bookshelf/metadata/__init__.py +30 -0
- mcbookshelf-3.0.0/bookshelf/metadata/feature.py +53 -0
- mcbookshelf-3.0.0/bookshelf/metadata/module.py +81 -0
- mcbookshelf-3.0.0/bookshelf/module.py +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/@dev/README.md +8 -0
- mcbookshelf-3.0.0/bookshelf/modules/@dev/module.json +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/@dev/pack.png +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/@prefabs/README.md +9 -0
- mcbookshelf-3.0.0/bookshelf/modules/@prefabs/module.json +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/@prefabs/pack.png +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/@runtime/README.md +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/@runtime/module.json +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/@runtime/pack.png +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/@suite/README.md +5 -0
- mcbookshelf-3.0.0/bookshelf/modules/@suite/module.json +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/@suite/pack.png +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.bitwise/README.md +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.bitwise/data/bs.bitwise/function/__load__.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.bitwise/data/bs.bitwise/function/__unload__.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.bitwise/data/bs.bitwise/function/and/and.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.bitwise/data/bs.bitwise/function/and/compute.mcfunction +110 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.bitwise/data/bs.bitwise/function/bit_count.mcfunction +81 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.bitwise/data/bs.bitwise/function/bit_length/bit_length.mcfunction +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.bitwise/data/bs.bitwise/function/bit_length/group_1.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.bitwise/data/bs.bitwise/function/bit_length/group_2.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.bitwise/data/bs.bitwise/function/bit_length/group_3.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.bitwise/data/bs.bitwise/function/bit_length/group_4.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.bitwise/data/bs.bitwise/function/not.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.bitwise/data/bs.bitwise/function/or.mcfunction +26 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.bitwise/data/bs.bitwise/function/two_complement.mcfunction +29 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.bitwise/data/bs.bitwise/function/xor.mcfunction +27 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.bitwise/data/bs.bitwise/tags/function/and.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.bitwise/data/bs.bitwise/tags/function/bit_count.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.bitwise/data/bs.bitwise/tags/function/bit_length.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.bitwise/data/bs.bitwise/tags/function/not.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.bitwise/data/bs.bitwise/tags/function/or.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.bitwise/data/bs.bitwise/tags/function/two_complement.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.bitwise/data/bs.bitwise/tags/function/xor.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.bitwise/data/bs.bitwise/test/and.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.bitwise/data/bs.bitwise/test/bit_count.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.bitwise/data/bs.bitwise/test/bit_length.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.bitwise/data/bs.bitwise/test/not.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.bitwise/data/bs.bitwise/test/or.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.bitwise/data/bs.bitwise/test/two_complement.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.bitwise/data/bs.bitwise/test/xor.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.bitwise/module.json +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.bitwise/pack.png +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/README.md +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/__load__.mcfunction +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/__unload__.mcfunction +28 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/fill/events/on_finished.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/fill/fill_block.mcfunction +27 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/fill/fill_random.mcfunction +28 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/fill/fill_type.mcfunction +27 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/fill/process/pause.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/fill/process/resume.mcfunction +39 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/fill/process/scheduled.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/fill/recurse/init.mcfunction +38 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/fill/recurse/next.mcfunction +32 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/fill/strategy/set_block.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/fill/strategy/set_random.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/fill/strategy/set_type.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/get/compile/block.mcfunction +30 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/get/compile/concat/block/nbt.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/get/compile/concat/block/state.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/get/compile/concat/state.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/get/compile/nbt.mcfunction +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/get/compile/state.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/get/compile/type.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/get/get_block.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/get/get_type.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/import/mapping_registry.mcfunction +1028 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/lookup/lookup_item.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/lookup/lookup_type.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/match/check.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/match/match.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/produce/block_display/run.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/produce/block_display/spawn_block_display.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/produce/block_display/spawn_solid_block_display.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/produce/block_particle/emit_block_particle.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/produce/block_particle/run.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/produce/block_sound/play_block_sound.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/produce/block_sound/run.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/produce/falling_block/run.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/produce/falling_block/spawn_falling_block.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/set/run.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/set/set_block.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/set/set_type.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/transform/keep_properties/keep_properties.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/transform/keep_properties/recurse/get_by_value.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/transform/keep_properties/recurse/get_default.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/transform/keep_properties/recurse/next.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/transform/lookup_group.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/transform/merge_properties/merge_properties.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/transform/merge_properties/recurse/get_by_value.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/transform/merge_properties/recurse/next.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/transform/remove_properties/recurse/next.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/transform/remove_properties/recurse/remove.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/transform/remove_properties/remove_properties.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/transform/replace_properties/recurse/next.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/transform/replace_properties/replace_properties.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/transform/replace_type.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/transform/shift_properties/recurse/index.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/transform/shift_properties/recurse/next.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/transform/shift_properties/recurse/shift_property.mcfunction +27 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/transform/shift_properties/recurse/update_property.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/transform/shift_properties/shift_properties.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/transform/type_mappings/filter_set.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/transform/type_mappings/filter_type.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/transform/type_mappings/find_match.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/transform/type_mappings/keep_best.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/transform/type_mappings/map_type.mcfunction +35 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/transform/type_mappings/mix_type.mcfunction +40 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/transform/type_mappings/remove_type.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/transform/type_mappings/with_registry.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/utils/get_custom_dimension.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/utils/get_dimension.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/utils/masks/compile.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/utils/masks/loop.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/utils/random/compile.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/utils/random/loop.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/utils/resolve_from_pos.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/function/utils/resolve_to_pos.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/tags/block/has_state.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/tags/function/emit_block_particle.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/tags/function/fill_block.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/tags/function/fill_random.json +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/tags/function/fill_type.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/tags/function/get_block.json +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/tags/function/get_type.json +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/tags/function/keep_properties.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/tags/function/lookup_item.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/tags/function/lookup_type.json +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/tags/function/map_type.json +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/tags/function/match.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/tags/function/merge_properties.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/tags/function/mix_type.json +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/tags/function/play_block_sound.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/tags/function/remove_properties.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/tags/function/replace_properties.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/tags/function/replace_type.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/tags/function/set_block.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/tags/function/set_type.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/tags/function/shift_properties.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/tags/function/spawn_block_display.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/tags/function/spawn_falling_block.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/tags/function/spawn_solid_block_display.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/test/fill/async.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/test/fill/block.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/test/fill/masks.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/test/fill/on_finished.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/test/fill/random.mcfunction +42 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/test/fill/type.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/test/get/block.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/test/get/type.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/test/lookup/item.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/test/lookup/type.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/test/match.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/test/produce/block_display.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/test/produce/emit_block_particle.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/test/produce/falling_block.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/test/produce/solid_block_display.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/test/set/block.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/test/set/type.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/test/transform/keep_properties.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/test/transform/map_type.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/test/transform/merge_properties.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/test/transform/mix_type.mcfunction +26 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/test/transform/remove_properties.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/test/transform/replace_properties.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/test/transform/replace_type.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/data/bs.block/test/transform/shift_properties.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/gen_blocks.py +375 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/module.json +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/pack.png +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/templates/groups_table.jinja +3 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/templates/items_table.jinja +3 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.block/templates/types_table.jinja +3 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.color/README.md +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.color/data/bs.color/function/__load__.mcfunction +27 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.color/data/bs.color/function/__unload__.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.color/data/bs.color/function/hex_to_int/convert_hexes.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.color/data/bs.color/function/hex_to_int/hex_to_int.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.color/data/bs.color/function/hex_to_rgb/convert_hexes.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.color/data/bs.color/function/hex_to_rgb/hex_to_rgb.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.color/data/bs.color/function/int_to_hex/concat_hexes.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.color/data/bs.color/function/int_to_hex/get_hexes.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.color/data/bs.color/function/int_to_hex/int_to_hex.mcfunction +29 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.color/data/bs.color/function/int_to_rgb.mcfunction +26 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.color/data/bs.color/function/rgb_to_hex/concat_hexes.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.color/data/bs.color/function/rgb_to_hex/get_hexes.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.color/data/bs.color/function/rgb_to_hex/rgb_to_hex.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.color/data/bs.color/function/rgb_to_int.mcfunction +27 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.color/data/bs.color/tags/function/hex_to_int.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.color/data/bs.color/tags/function/hex_to_rgb.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.color/data/bs.color/tags/function/int_to_hex.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.color/data/bs.color/tags/function/int_to_rgb.json +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.color/data/bs.color/tags/function/rgb_to_hex.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.color/data/bs.color/tags/function/rgb_to_int.json +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.color/data/bs.color/test/hex_to_int.mcfunction +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.color/data/bs.color/test/hex_to_rgb.mcfunction +26 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.color/data/bs.color/test/int_to_hex.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.color/data/bs.color/test/int_to_rgb.mcfunction +26 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.color/data/bs.color/test/rgb_to_hex.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.color/data/bs.color/test/rgb_to_int.mcfunction +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.color/module.json +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.color/pack.png +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/README.md +10 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/__load__.mcfunction +32 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/__unload__.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/expand.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/format/any.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/format/array/array.mcfunction +31 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/format/array/collapse.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/format/array/compact/compact.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/format/array/compact/loop.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/format/array/empty.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/format/array/loop.mcfunction +27 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/format/brace/close.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/format/brace/open.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/format/bracket/close.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/format/bracket/open.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/format/collapse/collapse.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/format/collapse/escape.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/format/collapse/event.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/format/compound/collapse.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/format/compound/compound.mcfunction +28 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/format/compound/empty.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/format/compound/key.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/format/compound/loop.mcfunction +30 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/format/number.mcfunction +26 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/format/score.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/format/string.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/format/undefined.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/interpret/any.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/interpret/array/array.mcfunction +29 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/interpret/array/compact/compact.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/interpret/array/compact/loop.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/interpret/array/loop.mcfunction +26 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/interpret/compound/compound.mcfunction +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/interpret/compound/loop.mcfunction +29 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/interpret/nbt/expand/cast.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/interpret/nbt/expand/default.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/interpret/nbt/expand/parse/init.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/interpret/nbt/expand/parse/next.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/interpret/nbt/expand/parse/terminate.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/interpret/nbt/nbt.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/interpret/nbt/populate.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/interpret/score.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/key/get.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/key/parse/quoted/double.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/key/parse/quoted/single.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/key/parse/terminate.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/key/parse/unquoted.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/function/var.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/tags/function/var.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/data/bs.dump/test/var.mcfunction +26 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/module.json +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.dump/pack.png +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.environment/README.md +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.environment/data/bs.environment/function/__load__.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.environment/data/bs.environment/function/__unload__.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.environment/data/bs.environment/function/get/biome/get_biome.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.environment/data/bs.environment/function/get/temperature/get_temperature.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.environment/data/bs.environment/function/get/temperature/variation.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.environment/data/bs.environment/predicate/can_rain.json +31 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.environment/data/bs.environment/predicate/is_raining.json +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.environment/data/bs.environment/predicate/is_thundering.json +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.environment/data/bs.environment/tags/function/get_biome.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.environment/data/bs.environment/tags/function/get_temperature.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.environment/gen_biomes.py +106 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.environment/module.json +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.environment/pack.png +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.generation/README.md +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.generation/data/bs.generation/function/__load__.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.generation/data/bs.generation/function/__unload__.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.generation/data/bs.generation/function/shape_2d/gen_fractal_shape_2d.mcfunction +34 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.generation/data/bs.generation/function/shape_2d/gen_shape_2d.mcfunction +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.generation/data/bs.generation/function/shape_2d/gen_simplex_shape_2d.mcfunction +31 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.generation/data/bs.generation/function/shape_2d/process/pause.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.generation/data/bs.generation/function/shape_2d/process/resume.mcfunction +28 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.generation/data/bs.generation/function/shape_2d/process/scheduled.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.generation/data/bs.generation/function/shape_2d/recurse/init.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.generation/data/bs.generation/function/shape_2d/recurse/next.mcfunction +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.generation/data/bs.generation/function/shape_2d/strategy/dummy/run.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.generation/data/bs.generation/function/shape_2d/strategy/dummy/setup.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.generation/data/bs.generation/function/shape_2d/strategy/fractal_noise_2d/run.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.generation/data/bs.generation/function/shape_2d/strategy/fractal_noise_2d/setup.mcfunction +26 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.generation/data/bs.generation/function/shape_2d/strategy/simplex_noise_2d/run.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.generation/data/bs.generation/function/shape_2d/strategy/simplex_noise_2d/setup.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.generation/data/bs.generation/function/utils/get_custom_dimension.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.generation/data/bs.generation/function/utils/get_dimension.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.generation/data/bs.generation/function/utils/get_location.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.generation/data/bs.generation/tags/function/gen_fractal_shape_2d.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.generation/data/bs.generation/tags/function/gen_shape_2d.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.generation/data/bs.generation/tags/function/gen_simplex_shape_2d.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.generation/data/bs.generation/test/shape_2d/async.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.generation/data/bs.generation/test/shape_2d/fractal.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.generation/data/bs.generation/test/shape_2d/plane_xy.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.generation/data/bs.generation/test/shape_2d/plane_xz.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.generation/data/bs.generation/test/shape_2d/plane_zy.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.generation/data/bs.generation/test/shape_2d/simplex.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.generation/module.json +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.generation/pack.png +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/README.md +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/advancement/on_before_heal.json +37 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/advancement/on_heal.json +51 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/function/__load__.mcfunction +30 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/function/__unload__.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/function/add/health.mcfunction +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/function/add/max_health.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/function/get/health.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/function/get/max_health.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/function/set/health.mcfunction +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/function/set/max_health.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/function/ttl/next_tick.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/function/ttl/normalize_unit.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/function/ttl/register_callback.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/function/ttl/register_unit.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/function/ttl/run_callback.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/function/ttl/time_out.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/function/ttl/time_to_live.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/function/utils/apply_health.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/function/utils/decrease_health.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/function/utils/increase_health.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/function/utils/on_before_heal.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/function/utils/on_heal.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/function/utils/set_max_health.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/tags/function/add_health.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/tags/function/add_max_health.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/tags/function/get_health.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/tags/function/get_max_health.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/tags/function/set_health.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/tags/function/set_max_health.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/tags/function/time_to_live.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/test/add/both.mcfunction +26 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/test/add/health.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/test/add/max_health.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/test/get/health.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/test/get/max_health.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/test/set/both.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/test/set/health.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/test/set/max_health.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/data/bs.health/test/time_to_live.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/module.json +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.health/pack.png +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/README.md +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/__load__.mcfunction +37 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/__unload__.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_block/get_block.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_block/offset/clamp.mcfunction +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_block/offset/compute.mcfunction +90 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_block/offset/fetch.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_block/offset/get.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/dispatch.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/get_entity.mcfunction +29 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/0.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/1.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/10.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/11.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/12.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/13.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/14.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/15.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/16.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/17.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/18.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/19.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/2.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/20.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/21.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/22.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/23.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/24.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/25.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/26.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/27.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/28.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/29.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/3.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/30.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/31.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/32.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/33.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/34.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/35.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/36.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/37.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/38.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/39.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/4.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/40.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/41.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/42.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/43.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/44.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/45.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/46.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/47.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/48.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/49.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/5.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/50.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/51.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/52.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/53.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/54.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/55.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/56.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/57.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/58.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/59.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/6.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/60.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/61.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/62.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/63.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/64.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/65.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/66.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/67.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/68.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/69.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/7.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/70.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/71.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/72.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/8.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/9.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/is_entity_in_block/check/check.mcfunction +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/is_entity_in_block/check/shape.mcfunction +40 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/is_entity_in_block/collision.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/is_entity_in_block/entity/shaped.mcfunction +34 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/is_entity_in_block/entity/sized.mcfunction +32 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/is_entity_in_block/interaction.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/is_entity_in_blocks/check/check.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/is_entity_in_blocks/check/shape.mcfunction +39 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/is_entity_in_blocks/collision.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/is_entity_in_blocks/entity/shaped.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/is_entity_in_blocks/entity/sized.mcfunction +30 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/is_entity_in_blocks/interaction.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/is_entity_in_blocks/recurse/init.mcfunction +31 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/is_entity_in_blocks/recurse/x.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/is_entity_in_blocks/recurse/y.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/is_entity_in_blocks/recurse/z.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/is_in_block/check/check.mcfunction +26 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/is_in_block/check/shape.mcfunction +39 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/is_in_block/collision.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/is_in_block/interaction.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/is_in_entity.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/utils/get_fract_pos.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/utils/get_negative_pos.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/function/utils/get_relative_pos.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/predicate/is_baby.json +9 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/predicate/salmon/large.json +9 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/predicate/salmon/small.json +9 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/block/can_pass_through.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/block/has_offset.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/block/intangible.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/block/is_full_cube.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/intangible.json +44 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/is_shaped.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/is_sized.json +89 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/arrow_like.json +8 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/bat_like.json +6 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/boat.json +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/cat_like.json +7 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/cow_like.json +6 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/falling_block_like.json +6 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/group_1.json +40 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/group_16.json +36 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/group_2.json +40 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/group_32.json +36 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/group_4.json +40 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/group_64.json +13 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/group_8.json +37 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/hoglin.json +6 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/horse_like.json +8 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/item_frame.json +6 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/item_like.json +15 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/llama.json +6 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/minecart.json +11 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/shulker_like.json +7 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/silverfish_like.json +6 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/skeleton.json +7 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/slime_like.json +6 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/small_fireball_like.json +8 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/zombie_like.json +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/function/get_block.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/function/get_entity.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/function/is_entity_in_block_collision.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/function/is_entity_in_block_interaction.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/function/is_entity_in_blocks_collision.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/function/is_entity_in_blocks_interaction.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/function/is_in_block_collision.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/function/is_in_block_interaction.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/tags/function/is_in_entity.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/test/block_offset.mcfunction +26 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/test/block_shape.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/test/entity_in_block.mcfunction +34 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/test/entity_in_blocks.mcfunction +27 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/test/entity_scale.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/test/entity_size.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/test/in_block.mcfunction +39 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/data/bs.hitbox/test/in_entity.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/gen_shapes.py +218 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/module.json +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.hitbox/pack.png +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.id/README.md +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.id/data/bs.id/function/__load__.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.id/data/bs.id/function/__unload__.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.id/data/bs.id/function/give_cuid.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.id/data/bs.id/function/give_suid.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.id/data/bs.id/function/update_cuids/loop.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.id/data/bs.id/function/update_cuids/shift.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.id/data/bs.id/function/update_cuids/update_cuids.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.id/data/bs.id/predicate/cuid_equal.json +39 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.id/data/bs.id/predicate/cuid_lower.json +31 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.id/data/bs.id/predicate/cuid_match.json +39 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.id/data/bs.id/predicate/cuid_upper.json +31 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.id/data/bs.id/predicate/has_cuid.json +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.id/data/bs.id/predicate/has_suid.json +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.id/data/bs.id/predicate/suid_equal.json +39 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.id/data/bs.id/predicate/suid_lower.json +31 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.id/data/bs.id/predicate/suid_match.json +39 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.id/data/bs.id/predicate/suid_upper.json +31 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.id/data/bs.id/tags/function/give_cuid.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.id/data/bs.id/tags/function/give_suid.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.id/data/bs.id/tags/function/update_cuids.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.id/data/bs.id/test/update_cuids.mcfunction +34 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.id/module.json +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.id/pack.png +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/README.md +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/advancement/left_click.json +27 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/advancement/right_click.json +27 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/__load__.mcfunction +26 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/__unload__.mcfunction +28 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/callback/glow.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/callback/unglow.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/clear_events.mcfunction +32 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/on_event/hover/as_target.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/on_event/hover/hover.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/on_event/hover/reset.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/on_event/hover/run.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/on_event/hover_enter/as_target.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/on_event/hover_enter/get_target/filter.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/on_event/hover_enter/get_target/mask.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/on_event/hover_enter/hover_enter.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/on_event/hover_enter/run.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/on_event/hover_enter/try_enter.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/on_event/hover_leave/as_target.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/on_event/hover_leave/hover_leave.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/on_event/hover_leave/run.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/on_event/hover_leave/try_leave.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/on_event/is_target.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/on_event/left_click/as_target.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/on_event/left_click/left_click.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/on_event/process.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/on_event/process_hover.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/on_event/right_click/as_target.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/on_event/right_click/right_click.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/on_event/run.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/register/errors/command.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/register/errors/entity.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/register/errors/executor.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/register/hover.mcfunction +36 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/register/hover_enter.mcfunction +36 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/register/hover_leave.mcfunction +36 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/register/left_click.mcfunction +34 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/register/right_click.mcfunction +34 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/register/utils/check_command.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/register/utils/executor/check.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/register/utils/executor/interpret.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/register/utils/executor/setup.mcfunction +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/function/register/utils/setup_listener.mcfunction +32 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/predicate/hover_equal.json +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/tags/function/callback/glow.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/tags/function/callback/none.json +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/tags/function/callback/unglow.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/tags/function/clear_events.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/tags/function/on_hover.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/tags/function/on_hover_enter.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/tags/function/on_hover_leave.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/tags/function/on_left_click.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/tags/function/on_right_click.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/test/clear_events.mcfunction +91 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/test/on_hover.mcfunction +73 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/test/on_hover_enter.mcfunction +70 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/test/on_hover_leave.mcfunction +70 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/test/on_hover_logout.mcfunction +30 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/test/on_hover_once.mcfunction +33 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/test/on_hover_swap.mcfunction +31 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/test/on_left_click.mcfunction +51 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/data/bs.interaction/test/on_right_click.mcfunction +53 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/module.json +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.interaction/pack.png +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/README.md +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/function/__load__.mcfunction +29 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/function/__unload__.mcfunction +30 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/function/as_children.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/function/as_parent.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/function/at_children.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/function/at_parent.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/function/behaviors/apply.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/function/behaviors/imitate_pos_x.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/function/behaviors/imitate_pos_y.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/function/behaviors/imitate_pos_z.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/function/behaviors/imitate_rot_h.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/function/behaviors/imitate_rot_v.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/function/behaviors/reverse_pos_x.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/function/behaviors/reverse_pos_y.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/function/behaviors/reverse_pos_z.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/function/behaviors/reverse_rot_h.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/function/behaviors/reverse_rot_v.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/function/behaviors/setup.mcfunction +29 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/function/create_link_ata.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/function/keep_local_pos/apply.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/function/keep_local_pos/keep_local_pos.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/function/mirror_point_ata/apply.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/function/mirror_point_ata/as_origin.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/function/mirror_point_ata/mirror_point_ata.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/function/remove_link.mcfunction +27 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/function/update_link/at_parent.mcfunction +30 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/function/update_link/update_link.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/predicate/has_link.json +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/predicate/link_equal.json +39 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/as_children.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/as_parent.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/at_children.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/at_parent.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/behaviors/apply.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/behaviors/imitate_pos_x.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/behaviors/imitate_pos_y.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/behaviors/imitate_pos_z.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/behaviors/imitate_rot_h.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/behaviors/imitate_rot_v.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/behaviors/reverse_pos_x.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/behaviors/reverse_pos_y.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/behaviors/reverse_pos_z.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/behaviors/reverse_rot_h.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/behaviors/reverse_rot_v.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/behaviors/setup.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/create_link_ata.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/imitate_pos.json +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/imitate_pos_and_rot.json +27 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/imitate_pos_x.json +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/imitate_pos_y.json +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/imitate_pos_z.json +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/imitate_rot.json +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/imitate_rot_h.json +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/imitate_rot_v.json +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/keep_local_pos.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/mirror_point_ata.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/mirror_x_plane.json +26 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/mirror_z_plane.json +26 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/remove_link.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/reverse_pos.json +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/reverse_pos_and_rot.json +27 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/reverse_pos_x.json +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/reverse_pos_y.json +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/reverse_pos_z.json +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/reverse_rot.json +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/reverse_rot_h.json +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/reverse_rot_v.json +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/tags/function/update_link.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/test/as_children.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/test/as_parent.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/test/at_children.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/test/at_parent.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/test/create_link_ata.mcfunction +30 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/test/imitate_pos_and_rot.mcfunction +47 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/test/keep_local_pos.mcfunction +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/test/mirror_point_ata.mcfunction +34 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/test/remove_link.mcfunction +27 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/test/reverse_pos_and_rot.mcfunction +36 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/data/bs.link/test/update_link.mcfunction +30 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/module.json +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.link/pack.png +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.log/README.md +10 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.log/data/bs.log/function/__load__.mcfunction +43 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.log/data/bs.log/function/__unload__.mcfunction +26 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.log/data/bs.log/function/history/clear.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.log/data/bs.log/function/history/record.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.log/data/bs.log/function/history/show.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.log/data/bs.log/function/severity/debug.mcfunction +30 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.log/data/bs.log/function/severity/error.mcfunction +42 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.log/data/bs.log/function/severity/info.mcfunction +34 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.log/data/bs.log/function/severity/warn.mcfunction +38 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.log/data/bs.log/function/time/get.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.log/data/bs.log/function/time/tick.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.log/data/bs.log/function/time/ticks/format.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.log/data/bs.log/function/time/ticks/stringify.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.log/data/bs.log/tags/function/clear_history.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.log/data/bs.log/tags/function/debug.json +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.log/data/bs.log/tags/function/error.json +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.log/data/bs.log/tags/function/history.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.log/data/bs.log/tags/function/info.json +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.log/data/bs.log/tags/function/warn.json +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.log/data/bs.log/test/debug/hidden.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.log/data/bs.log/test/debug/visible.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.log/data/bs.log/test/debug/wildcards.mcfunction +35 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.log/data/bs.log/test/error/hidden.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.log/data/bs.log/test/error/visible.mcfunction +35 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.log/data/bs.log/test/error/wildcards.mcfunction +35 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.log/data/bs.log/test/history/clear.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.log/data/bs.log/test/history/show.mcfunction +26 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.log/data/bs.log/test/info/hidden.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.log/data/bs.log/test/info/visible.mcfunction +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.log/data/bs.log/test/info/wildcards.mcfunction +35 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.log/data/bs.log/test/warn/hidden.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.log/data/bs.log/test/warn/visible.mcfunction +30 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.log/data/bs.log/test/warn/wildcards.mcfunction +35 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.log/module.json +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.log/pack.png +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/README.md +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/__load__.mcfunction +42 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/__unload__.mcfunction +26 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/acos.mcfunction +44 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/asin.mcfunction +44 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/atan/atan.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/atan/run.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/atan2/atan2.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/atan2/run.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/combine/combine.mcfunction +32 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/combine/recurse/init.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/combine/recurse/next.mcfunction +27 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/cos.mcfunction +29 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/divide.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/exp.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/exp2/exp2.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/exp2/fract.mcfunction +35 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/exp2/run.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/factorial/factorial.mcfunction +34 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/factorial/loop.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/frexp/e_neg.mcfunction +37 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/frexp/e_pos/chunk.mcfunction +30 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/frexp/e_pos/range_1.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/frexp/e_pos/range_2.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/frexp/e_pos/range_3.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/frexp/e_pos/range_4.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/frexp/e_pos/split.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/frexp/frexp.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/frexp/run.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/gcd/gcd.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/gcd/loop.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/ipow.mcfunction +34 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/isqrt.mcfunction +37 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/ldexp/ldexp.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/ldexp/mul.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/ldexp/run.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/ldexp/table.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/log.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/log10.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/log2/fract.mcfunction +44 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/log2/log2.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/log2/run.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/loga/loga.mcfunction +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/loga/mul.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/pow/mul.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/pow/pow.mcfunction +27 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/sin.mcfunction +29 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/sincos/run.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/sincos/sincos.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/sqrt.mcfunction +46 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/tan/run.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/function/tan/tan.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/tags/function/acos.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/tags/function/asin.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/tags/function/atan.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/tags/function/atan2.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/tags/function/combine.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/tags/function/cos.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/tags/function/divide.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/tags/function/exp.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/tags/function/exp2.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/tags/function/factorial.json +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/tags/function/frexp.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/tags/function/gcd.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/tags/function/ipow.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/tags/function/isqrt.json +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/tags/function/ldexp.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/tags/function/log.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/tags/function/log10.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/tags/function/log2.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/tags/function/loga.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/tags/function/pow.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/tags/function/sin.json +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/tags/function/sincos.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/tags/function/sqrt.json +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/tags/function/tan.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/test/acos.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/test/asin.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/test/atan.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/test/atan2.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/test/combine.mcfunction +29 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/test/cos.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/test/divide.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/test/exp.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/test/exp2.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/test/factorial.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/test/frexp.mcfunction +28 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/test/gcd.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/test/ipow.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/test/isqrt.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/test/ldexp.mcfunction +29 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/test/log.mcfunction +29 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/test/log10.mcfunction +29 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/test/log2.mcfunction +29 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/test/loga.mcfunction +29 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/test/pow.mcfunction +29 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/test/sin.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/test/sincos.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/test/sqrt.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/data/bs.math/test/tan.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/module.json +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.math/pack.png +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/README.md +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/__load__.mcfunction +38 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/__unload__.mcfunction +29 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/collision/check/block/any.mcfunction +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/collision/check/block/cube.mcfunction +54 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/collision/check/block/shape.mcfunction +65 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/collision/check/entity/any.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/collision/check/entity/shape.mcfunction +65 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/collision/check/entity/size.mcfunction +64 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/collision/collide.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/collision/handle.mcfunction +53 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/collision/recurse/run.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/collision/recurse/setup/init.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/collision/recurse/setup/xn.mcfunction +27 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/collision/recurse/setup/xp.mcfunction +26 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/collision/recurse/setup/yn.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/collision/recurse/setup/yp.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/collision/recurse/setup/zn.mcfunction +27 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/collision/recurse/setup/zp.mcfunction +26 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/collision/recurse/xn.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/collision/recurse/xp.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/collision/recurse/yn.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/collision/recurse/yp.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/collision/recurse/zn.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/collision/recurse/zp.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/collision/resolvers/any.mcfunction +29 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/collision/resolvers/behaviors/bounce.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/collision/resolvers/behaviors/damped_bounce.mcfunction +27 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/collision/resolvers/behaviors/slide.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/collision/resolvers/behaviors/stick.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/collision/resolvers/canonical.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/collision/resolvers/local.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/collision/utils/get_bounding_box.mcfunction +34 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/collision/utils/get_relative_entity_pos.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/collision/utils/get_relative_pos.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/collision/utils/tp_relative.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/convert/canonical_to_local/canonical_to_local.mcfunction +49 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/convert/canonical_to_local/sincos.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/convert/local_to_canonical/compute.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/convert/local_to_canonical/local_to_canonical.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/set_motion.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/teleport/canonical/apply_vel.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/teleport/canonical/run.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/teleport/local/apply_local_vel.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/teleport/local/run.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/function/teleport/with.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/predicate/has_vel.json +74 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/tags/function/apply_local_vel.json +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/tags/function/apply_vel.json +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/tags/function/callback/bounce.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/tags/function/callback/damped_bounce.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/tags/function/callback/slide.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/tags/function/callback/stick.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/tags/function/canonical_to_local.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/tags/function/local_to_canonical.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/tags/function/set_motion.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/test/collision/with_block.mcfunction +33 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/test/collision/with_entity.mcfunction +33 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/test/convert/canonical_to_local.mcfunction +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/test/convert/local_to_canonical.mcfunction +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/test/set_motion.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/test/teleport/canonical.mcfunction +43 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/data/bs.move/test/teleport/local.mcfunction +43 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/module.json +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.move/pack.png +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/README.md +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/__load__.mcfunction +32 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/__unload__.mcfunction +28 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/add/position/all/all.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/add/position/all/run.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/add/position/x/run.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/add/position/x/x.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/add/position/y/run.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/add/position/y/y.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/add/position/z/run.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/add/position/z/z.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/add/rotation/all/all.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/add/rotation/all/run.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/add/rotation/h/h.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/add/rotation/h/run.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/add/rotation/v/run.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/add/rotation/v/v.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/convert/canonical_to_local/canonical_to_local.mcfunction +49 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/convert/canonical_to_local/sincos.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/convert/local_to_canonical/compute.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/convert/local_to_canonical/local_to_canonical.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/get/distance/compute.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/get/distance/distance_ata.mcfunction +28 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/get/distance/distance_squared_ata.mcfunction +32 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/get/position/all.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/get/position/ctx.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/get/position/x.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/get/position/y.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/get/position/z.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/get/relative/relative_ata.mcfunction +26 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/get/relative/relative_from_dir/ctx.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/get/relative/relative_from_dir/relative_from_dir.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/get/rotation/all.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/get/rotation/h.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/get/rotation/v.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/set/position/all/all.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/set/position/all/run.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/set/position/x/run.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/set/position/x/x.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/set/position/y/run.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/set/position/y/y.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/set/position/z/run.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/set/position/z/z.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/set/rotation/all/all.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/set/rotation/all/run.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/set/rotation/h/h.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/set/rotation/h/run.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/set/rotation/v/run.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/function/set/rotation/v/v.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/tags/function/add_pos.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/tags/function/add_pos_and_rot.json +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/tags/function/add_pos_x.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/tags/function/add_pos_y.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/tags/function/add_pos_z.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/tags/function/add_rot.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/tags/function/add_rot_h.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/tags/function/add_rot_v.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/tags/function/canonical_to_local.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/tags/function/get_distance_ata.json +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/tags/function/get_distance_squared_ata.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/tags/function/get_pos.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/tags/function/get_pos_and_rot.json +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/tags/function/get_pos_x.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/tags/function/get_pos_y.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/tags/function/get_pos_z.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/tags/function/get_relative_ata.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/tags/function/get_relative_from_dir.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/tags/function/get_rot.json +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/tags/function/get_rot_h.json +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/tags/function/get_rot_v.json +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/tags/function/local_to_canonical.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/tags/function/set_pos.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/tags/function/set_pos_and_rot.json +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/tags/function/set_pos_x.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/tags/function/set_pos_y.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/tags/function/set_pos_z.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/tags/function/set_rot.json +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/tags/function/set_rot_h.json +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/tags/function/set_rot_v.json +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/test/add/pos.mcfunction +34 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/test/add/pos_and_rot.mcfunction +43 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/test/add/pos_x.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/test/add/pos_y.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/test/add/pos_z.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/test/add/rot.mcfunction +31 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/test/add/rot_h.mcfunction +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/test/add/rot_v.mcfunction +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/test/convert/canonical_to_local.mcfunction +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/test/convert/local_to_canonical.mcfunction +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/test/get/distance_ata.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/test/get/distance_squared_ata.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/test/get/pos.mcfunction +29 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/test/get/pos_and_rot.mcfunction +35 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/test/get/pos_x.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/test/get/pos_y.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/test/get/pos_z.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/test/get/relative_ata.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/test/get/relative_from_dir.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/test/get/rot.mcfunction +26 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/test/get/rot_h.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/test/get/rot_v.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/test/set/pos.mcfunction +32 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/test/set/pos_and_rot.mcfunction +43 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/test/set/pos_x.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/test/set/pos_y.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/test/set/pos_z.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/test/set/rot.mcfunction +31 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/test/set/rot_h.mcfunction +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/data/bs.position/test/set/rot_v.mcfunction +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/module.json +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.position/pack.png +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/README.md +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/function/__load__.mcfunction +46 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/function/__unload__.mcfunction +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/function/choice/choice.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/function/choice/get.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/function/distributions/binomial/binomial.mcfunction +37 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/function/distributions/binomial/loop.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/function/distributions/geometric/geometric.mcfunction +29 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/function/distributions/geometric/loop.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/function/distributions/poisson/loop.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/function/distributions/poisson/poisson.mcfunction +64 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/function/distributions/uniform.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/function/noise/fractal_noise_2d/fractal_noise_2d.mcfunction +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/function/noise/fractal_noise_2d/loop.mcfunction +38 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/function/noise/fractal_noise_mat_2d/fractal_noise_mat_2d.mcfunction +34 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/function/noise/fractal_noise_mat_2d/xloop.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/function/noise/fractal_noise_mat_2d/yloop.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/function/noise/simplex_noise_2d/gradient.mcfunction +43 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/function/noise/simplex_noise_2d/simplex_noise_2d.mcfunction +84 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/function/noise/simplex_noise_mat_2d/simplex_noise_mat_2d.mcfunction +31 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/function/noise/simplex_noise_mat_2d/xloop.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/function/noise/simplex_noise_mat_2d/yloop.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/function/noise/white_noise_mat_1d/loop.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/function/noise/white_noise_mat_1d/white_noise_mat_1d.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/function/noise/white_noise_mat_2d/white_noise_mat_2d.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/function/noise/white_noise_mat_2d/xloop.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/function/noise/white_noise_mat_2d/yloop.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/function/weighted_choice/loop.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/function/weighted_choice/run.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/function/weighted_choice/weighted_choice.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/tags/function/binomial.json +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/tags/function/choice.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/tags/function/fractal_noise_2d.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/tags/function/fractal_noise_mat_2d.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/tags/function/geometric.json +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/tags/function/poisson.json +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/tags/function/simplex_noise_2d.json +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/tags/function/simplex_noise_mat_2d.json +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/tags/function/uniform.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/tags/function/weighted_choice.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/tags/function/white_noise_mat_1d.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/tags/function/white_noise_mat_2d.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/test/choice.mcfunction +32 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/test/distributions/binomial.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/test/distributions/geometric.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/test/distributions/poisson.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/test/distributions/uniform.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/test/noise/fractal_noise_2d.mcfunction +50 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/test/noise/fractal_noise_mat_2d.mcfunction +30 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/test/noise/simplex_noise_2d.mcfunction +38 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/test/noise/simplex_noise_mat_2d.mcfunction +30 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/test/noise/white_noise_mat_1d.mcfunction +30 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/test/noise/white_noise_mat_2d.mcfunction +38 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/data/bs.random/test/weighted_choice.mcfunction +30 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/module.json +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.random/pack.png +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/README.md +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/function/__load__.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/function/__unload__.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/function/check/block/any.mcfunction +32 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/function/check/block/shape.mcfunction +63 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/function/check/entity/any.mcfunction +27 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/function/check/entity/shape.mcfunction +57 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/function/check/entity/size.mcfunction +65 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/function/collide/block.mcfunction +27 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/function/collide/cube.mcfunction +33 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/function/collide/entity.mcfunction +26 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/function/collide/shape.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/function/collide/size.mcfunction +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/function/compute/entity_rpos.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/function/compute/hit_point.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/function/compute/init_rpos.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/function/react/hit_point.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/function/react/targeted_block.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/function/react/targeted_entity.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/function/recurse/init.mcfunction +54 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/function/recurse/next.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/function/recurse/x.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/function/recurse/y.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/function/recurse/z.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/function/run.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/function/with.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/tags/function/run.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/test/block/check_shape.mcfunction +27 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/test/block/ignored_blocks.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/test/block/max_distance.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/test/block/recurse_nnn.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/test/block/recurse_nnp.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/test/block/recurse_npn.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/test/block/recurse_npp.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/test/block/recurse_pnp.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/test/block/recurse_ppn.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/test/block/recurse_ppp.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/test/block/recuse_pnn.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/test/entity/check_shape.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/test/entity/check_size.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/test/entity/ignored_entities.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/test/entity/max_distance.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/data/bs.raycast/test/entity/tagged_entities.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/module.json +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.raycast/pack.png +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.schedule/README.md +10 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.schedule/data/bs.schedule/function/__load__.mcfunction +32 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.schedule/data/bs.schedule/function/__unload__.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.schedule/data/bs.schedule/function/cancel/cancel_all.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.schedule/data/bs.schedule/function/cancel/cancel_one.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.schedule/data/bs.schedule/function/cancel/remove_one.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.schedule/data/bs.schedule/function/clear.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.schedule/data/bs.schedule/function/execute/callback.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.schedule/data/bs.schedule/function/execute/loop.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.schedule/data/bs.schedule/function/execute/run/with_entity.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.schedule/data/bs.schedule/function/execute/run/without_entity.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.schedule/data/bs.schedule/function/execute/slice.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.schedule/data/bs.schedule/function/schedule/callback.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.schedule/data/bs.schedule/function/schedule/context/get_custom_dimension.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.schedule/data/bs.schedule/function/schedule/context/get_dimension.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.schedule/data/bs.schedule/function/schedule/context/get_position.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.schedule/data/bs.schedule/function/schedule/schedule.mcfunction +38 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.schedule/data/bs.schedule/function/schedule/unit/handle.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.schedule/data/bs.schedule/function/schedule/unit/normalize.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.schedule/data/bs.schedule/predicate/target.json +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.schedule/data/bs.schedule/tags/function/cancel_all.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.schedule/data/bs.schedule/tags/function/cancel_one.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.schedule/data/bs.schedule/tags/function/clear.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.schedule/data/bs.schedule/tags/function/schedule.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.schedule/data/bs.schedule/test/cancel/all.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.schedule/data/bs.schedule/test/cancel/one.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.schedule/data/bs.schedule/test/schedule/context.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.schedule/data/bs.schedule/test/schedule/stack.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.schedule/data/bs.schedule/test/schedule/time.mcfunction +32 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.schedule/data/bs.schedule/test/units/error.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.schedule/data/bs.schedule/test/units/success.mcfunction +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.schedule/module.json +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.schedule/pack.png +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.sidebar/README.md +10 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.sidebar/data/bs.sidebar/function/__load__.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.sidebar/data/bs.sidebar/function/__unload__.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.sidebar/data/bs.sidebar/function/create/check/name.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.sidebar/data/bs.sidebar/function/create/check/objective.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.sidebar/data/bs.sidebar/function/create/create.mcfunction +47 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.sidebar/data/bs.sidebar/function/create/recurse/abort.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.sidebar/data/bs.sidebar/function/create/recurse/init.mcfunction +34 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.sidebar/data/bs.sidebar/function/create/recurse/next.mcfunction +41 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.sidebar/data/bs.sidebar/function/refresh/loop.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.sidebar/data/bs.sidebar/function/refresh/refresh.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.sidebar/data/bs.sidebar/tags/function/create.json +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.sidebar/data/bs.sidebar/tags/function/refresh.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.sidebar/module.json +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.sidebar/pack.png +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/README.md +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/function/__load__.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/function/__unload__.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/function/evaluate/evaluate.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/function/evaluate/evaluate_bezier.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/function/evaluate/evaluate_bspline.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/function/evaluate/evaluate_catmull_rom.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/function/evaluate/evaluate_hermite.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/function/sample/sample.mcfunction +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/function/sample/sample_bezier.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/function/sample/sample_bspline.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/function/sample/sample_catmull_rom.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/function/sample/sample_hermite.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/function/stream/process/process.mcfunction +30 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/function/stream/process/resume.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/function/stream/process/schedule.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/function/stream/process/tick.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/function/stream/stream_bezier.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/function/stream/stream_bspline.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/function/stream/stream_catmull_rom.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/function/stream/stream_hermite.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/function/utils/bezier/lookup_coefficients.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/function/utils/bezier/next_segment.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/function/utils/bspline/lookup_coefficients.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/function/utils/bspline/next_segment.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/function/utils/callback.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/function/utils/catmull_rom/lookup_coefficients.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/function/utils/catmull_rom/next_segment.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/function/utils/compute.mcfunction +28 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/function/utils/hermite/lookup_coefficients.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/function/utils/hermite/next_segment.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/tags/function/evaluate_bezier.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/tags/function/evaluate_bspline.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/tags/function/evaluate_catmull_rom.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/tags/function/evaluate_hermite.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/tags/function/sample_bezier.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/tags/function/sample_bspline.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/tags/function/sample_catmull_rom.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/tags/function/sample_hermite.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/tags/function/stream_bezier.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/tags/function/stream_bspline.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/tags/function/stream_catmull_rom.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/tags/function/stream_hermite.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/test/evaluate_bezier.mcfunction +70 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/test/evaluate_bspline.mcfunction +70 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/test/evaluate_catmull_rom.mcfunction +70 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/test/evaluate_hermite.mcfunction +70 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/test/sample_bezier.mcfunction +95 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/test/sample_bspline.mcfunction +95 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/test/sample_catmull_rom.mcfunction +95 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/test/sample_hermite.mcfunction +95 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/test/stream_bezier.mcfunction +61 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/test/stream_bspline.mcfunction +61 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/test/stream_catmull_rom.mcfunction +61 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/data/bs.spline/test/stream_hermite.mcfunction +61 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/gen_tables.py +62 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/module.json +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/pack.png +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.spline/templates/lookup_table.jinja +3 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/README.md +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/__load__.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/__unload__.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/concat/concat.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/concat/dispatch/0.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/concat/dispatch/1.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/concat/dispatch/2.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/concat/dispatch/3.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/concat/dispatch/4.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/concat/dispatch/5.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/concat/dispatch/6.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/concat/dispatch/7.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/concat/dispatch/chunked.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/concat/dispatch/fixed.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/concat/run.mcfunction +26 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/find/find.mcfunction +34 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/find/find_all.mcfunction +35 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/find/recurse/found.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/find/recurse/next.mcfunction +29 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/find/recurse/substr.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/lower/loop.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/lower/lower.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/replace/recurse/found.mcfunction +29 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/replace/recurse/next.mcfunction +30 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/replace/recurse/substr.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/replace/replace.mcfunction +36 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/replace_range/concat.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/replace_range/replace_range.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/replace_range/split.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/reverse/loop.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/reverse/reverse.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/split/recurse/found.mcfunction +28 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/split/recurse/next.mcfunction +31 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/split/recurse/substr.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/split/split.mcfunction +36 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/type/parse/macro.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/type/parse/parse.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/type/to_list/loop.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/type/to_list/to_list.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/type/to_string/macro.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/type/to_string/to_string.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/upper/loop.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/upper/upper.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/utils/skip_table/compute.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/utils/skip_table/loop.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/function/utils/skip_table/match.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/tags/function/concat.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/tags/function/find.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/tags/function/find_all.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/tags/function/lower.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/tags/function/parse.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/tags/function/replace.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/tags/function/replace_range.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/tags/function/reverse.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/tags/function/split.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/tags/function/to_list.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/tags/function/to_string.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/tags/function/upper.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/test/concat.mcfunction +31 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/test/find.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/test/find_all.mcfunction +59 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/test/lower.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/test/parse.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/test/replace.mcfunction +64 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/test/replace_range.mcfunction +49 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/test/reverse.mcfunction +39 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/test/split.mcfunction +59 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/test/to_list.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/test/to_string.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/data/bs.string/test/upper.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/gen_files.py +27 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/module.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/pack.png +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/templates/char_table.jinja +4 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/templates/concat/join.jinja +3 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.string/templates/concat/pair.jinja +11 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.time/README.md +10 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.time/data/bs.time/function/__load__.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.time/data/bs.time/function/__unload__.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.time/data/bs.time/function/get/cast.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.time/data/bs.time/function/get/get.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.time/data/bs.time/tags/function/get.json +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.time/data/bs.time/test/format.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.time/module.json +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.time/pack.png +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/README.md +10 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/function/__load__.mcfunction +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/function/__unload__.mcfunction +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/birch_1.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/birch_2.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/birch_3.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/birch_4.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/birch_5.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/cypress_1.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/cypress_2.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/cypress_3.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/cypress_4.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/cypress_5.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/dark_oak_1.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/dark_oak_2.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/dark_oak_3.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/dark_oak_4.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/dark_oak_5.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/dead_spruce_1.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/dead_spruce_2.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/dead_spruce_3.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/dead_spruce_4.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/dead_spruce_5.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/exotic_1.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/exotic_2.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/exotic_3.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/exotic_4.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/exotic_5.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/fir_1.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/fir_2.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/fir_3.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/fir_4.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/fir_5.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/jungle_1.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/jungle_2.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/jungle_3.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/jungle_4.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/jungle_5.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/mushroom_1.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/mushroom_2.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/mushroom_3.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/mushroom_4.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/mushroom_5.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/oak_1.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/oak_2.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/oak_3.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/oak_4.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/oak_5.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/palm_1.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/palm_2.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/palm_3.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/palm_4.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/data/bs.tree/structure/palm_5.nbt +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/module.json +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.tree/pack.png +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/README.md +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/function/__load__.mcfunction +28 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/function/__unload__.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/function/abs_max.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/function/abs_min.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/function/convert/basis_rot_3d/basis_rot_3d.mcfunction +49 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/function/convert/basis_rot_3d/sincos.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/function/convert/cartesian_to_spherical/cartesian_to_spherical.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/function/convert/cartesian_to_spherical/compute.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/function/convert/spherical_to_cartesian/compute.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/function/convert/spherical_to_cartesian/spherical_to_cartesian.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/function/cross_product.mcfunction +40 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/function/dot_product.mcfunction +26 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/function/length/compute.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/function/length/length.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/function/length_squared.mcfunction +26 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/function/normalize/compute.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/function/normalize/normalize.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/function/normalize_max_component.mcfunction +35 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/function/pos_from_vec.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/function/rot_from_vec.mcfunction +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/function/vec_from_pos.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/function/vec_from_rot.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/function/vec_from_vel.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/function/vel_from_vec.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/tags/function/abs_max.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/tags/function/abs_min.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/tags/function/basis_rot_3d.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/tags/function/cartesian_to_spherical.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/tags/function/cross_product.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/tags/function/dot_product.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/tags/function/length.json +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/tags/function/length_squared.json +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/tags/function/normalize.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/tags/function/normalize_max_component.json +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/tags/function/pos_from_vec.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/tags/function/rot_from_vec.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/tags/function/spherical_to_cartesian.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/tags/function/vec_from_pos.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/tags/function/vec_from_rot.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/tags/function/vec_from_vel.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/tags/function/vel_from_vec.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/test/abs_max.mcfunction +26 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/test/abs_min.mcfunction +26 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/test/basis_rot_3d.mcfunction +28 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/test/cartesian_to_spherical.mcfunction +27 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/test/cross_product.mcfunction +28 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/test/dot_product.mcfunction +26 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/test/length.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/test/length_squared.mcfunction +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/test/normalize.mcfunction +26 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/test/normalize_max_component.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/data/bs.vector/test/spherical_to_cartesian.mcfunction +26 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/module.json +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.vector/pack.png +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/README.md +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/function/__load__.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/function/__unload__.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/function/aimed_block/at_aimed_block.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/function/aimed_block/with.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/function/aimed_entity/as_aimed_entity.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/function/aimed_entity/at_aimed_entity.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/function/aimed_entity/with.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/function/aimed_point/at_aimed_point.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/function/aimed_point/with.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/function/block_placement/at_block_placement.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/function/block_placement/compute.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/function/block_placement/displace.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/function/block_placement/with.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/function/can_see_ata/can_see_ata.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/function/can_see_ata/max_distance/compute.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/function/can_see_ata/max_distance/get_rpos.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/function/can_see_ata/with.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/function/in_view_ata/angle.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/function/in_view_ata/check.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/function/in_view_ata/in_view_ata.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/function/looked_entity/as_looked_entity.mcfunction +27 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/function/looked_entity/at_looked_entity.mcfunction +27 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/function/looked_entity/setup.mcfunction +45 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/tags/block/can_see_through.json +94 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/tags/function/as_aimed_entity.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/tags/function/as_looked_entity.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/tags/function/at_aimed_block.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/tags/function/at_aimed_entity.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/tags/function/at_aimed_point.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/tags/function/at_block_placement.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/tags/function/at_looked_entity.json +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/tags/function/can_see_ata.json +22 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/tags/function/in_view_ata.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/test/as_aimed_entity.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/test/as_looked_entity.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/test/at_aimed_block.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/test/at_aimed_entity.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/test/at_aimed_point.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/test/at_block_placement.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/test/at_looked_entity.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/test/can_see_ata.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/data/bs.view/test/in_view_ata.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/module.json +17 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.view/pack.png +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/README.md +10 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/function/__load__.mcfunction +29 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/function/__unload__.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/function/add/levels.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/function/add/points.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/function/add/progress/apply.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/function/add/progress/progress.mcfunction +25 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/function/get/max_points/max_points.mcfunction +19 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/function/get/max_points/range_1.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/function/get/max_points/range_2.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/function/get/max_points/range_3.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/function/get/progress.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/function/get/remaining_points.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/function/get/total_points/range_1.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/function/get/total_points/range_2.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/function/get/total_points/range_3.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/function/get/total_points/total_points.mcfunction +20 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/function/set/levels.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/function/set/points.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/function/set/progress/apply.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/function/set/progress/progress.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/function/set/total_points.mcfunction +18 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/function/utils/restore_levels.mcfunction +16 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/tags/function/add_levels.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/tags/function/add_points.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/tags/function/add_progress.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/tags/function/get_max_points.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/tags/function/get_progress.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/tags/function/get_remaining_points.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/tags/function/get_total_points.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/tags/function/set_levels.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/tags/function/set_points.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/tags/function/set_progress.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/tags/function/set_total_points.json +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/test/add/levels.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/test/add/points.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/test/add/progress.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/test/get/max_points.mcfunction +27 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/test/get/progress.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/test/get/remaining_points.mcfunction +30 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/test/get/total_points.mcfunction +27 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/test/set/levels.mcfunction +21 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/test/set/points.mcfunction +23 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/data/bs.xp/test/set/progress.mcfunction +24 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/module.json +14 -0
- mcbookshelf-3.0.0/bookshelf/modules/bs.xp/pack.png +0 -0
- mcbookshelf-3.0.0/bookshelf/modules/config.json +13 -0
- mcbookshelf-3.0.0/bookshelf/packtest/__init__.py +6 -0
- mcbookshelf-3.0.0/bookshelf/packtest/assets.py +71 -0
- mcbookshelf-3.0.0/bookshelf/packtest/runner.py +96 -0
- mcbookshelf-3.0.0/bookshelf/plugins/__init__.py +1 -0
- mcbookshelf-3.0.0/bookshelf/plugins/auto_import.py +11 -0
- mcbookshelf-3.0.0/bookshelf/plugins/auto_log_format.py +18 -0
- mcbookshelf-3.0.0/bookshelf/plugins/bundle_packs.py +26 -0
- mcbookshelf-3.0.0/bookshelf/plugins/dependencies.py +10 -0
- mcbookshelf-3.0.0/bookshelf/plugins/edit_tags.py +13 -0
- mcbookshelf-3.0.0/bookshelf/plugins/gen_help.py +12 -0
- mcbookshelf-3.0.0/bookshelf/plugins/gen_load.py +91 -0
- mcbookshelf-3.0.0/bookshelf/plugins/load_tests.py +49 -0
- mcbookshelf-3.0.0/bookshelf/plugins/log_build.py +8 -0
- mcbookshelf-3.0.0/bookshelf/plugins/release_pack.py +292 -0
- mcbookshelf-3.0.0/bookshelf/plugins/set_pack_meta.py +48 -0
- mcbookshelf-3.0.0/bookshelf/plugins/setup_templates.py +10 -0
- mcbookshelf-3.0.0/bookshelf/templates/header.jinja +14 -0
- mcbookshelf-3.0.0/bookshelf/templates/help.jinja +2 -0
- mcbookshelf-3.0.0/bookshelf/templates/load/bundle/append.jinja +13 -0
- mcbookshelf-3.0.0/bookshelf/templates/load/bundle/concat.jinja +2 -0
- mcbookshelf-3.0.0/bookshelf/templates/load/process/cleanup.jinja +4 -0
- mcbookshelf-3.0.0/bookshelf/templates/load/process/enumerate.jinja +19 -0
- mcbookshelf-3.0.0/bookshelf/templates/load/process/errors.jinja +17 -0
- mcbookshelf-3.0.0/bookshelf/templates/load/process/resolve.jinja +16 -0
- mcbookshelf-3.0.0/bookshelf/templates/load/process/validate.jinja +26 -0
- mcbookshelf-3.0.0/build.py +10 -0
- mcbookshelf-3.0.0/modules/@dev/README.md +8 -0
- mcbookshelf-3.0.0/modules/@dev/module.json +14 -0
- mcbookshelf-3.0.0/modules/@dev/pack.png +0 -0
- mcbookshelf-3.0.0/modules/@prefabs/README.md +9 -0
- mcbookshelf-3.0.0/modules/@prefabs/module.json +14 -0
- mcbookshelf-3.0.0/modules/@prefabs/pack.png +0 -0
- mcbookshelf-3.0.0/modules/@runtime/README.md +14 -0
- mcbookshelf-3.0.0/modules/@runtime/module.json +14 -0
- mcbookshelf-3.0.0/modules/@runtime/pack.png +0 -0
- mcbookshelf-3.0.0/modules/@suite/README.md +5 -0
- mcbookshelf-3.0.0/modules/@suite/module.json +14 -0
- mcbookshelf-3.0.0/modules/@suite/pack.png +0 -0
- mcbookshelf-3.0.0/modules/bs.bitwise/README.md +14 -0
- mcbookshelf-3.0.0/modules/bs.bitwise/data/bs.bitwise/function/__load__.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.bitwise/data/bs.bitwise/function/__unload__.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.bitwise/data/bs.bitwise/function/and/and.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.bitwise/data/bs.bitwise/function/and/compute.mcfunction +110 -0
- mcbookshelf-3.0.0/modules/bs.bitwise/data/bs.bitwise/function/bit_count.mcfunction +81 -0
- mcbookshelf-3.0.0/modules/bs.bitwise/data/bs.bitwise/function/bit_length/bit_length.mcfunction +25 -0
- mcbookshelf-3.0.0/modules/bs.bitwise/data/bs.bitwise/function/bit_length/group_1.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.bitwise/data/bs.bitwise/function/bit_length/group_2.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.bitwise/data/bs.bitwise/function/bit_length/group_3.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.bitwise/data/bs.bitwise/function/bit_length/group_4.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.bitwise/data/bs.bitwise/function/not.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.bitwise/data/bs.bitwise/function/or.mcfunction +26 -0
- mcbookshelf-3.0.0/modules/bs.bitwise/data/bs.bitwise/function/two_complement.mcfunction +29 -0
- mcbookshelf-3.0.0/modules/bs.bitwise/data/bs.bitwise/function/xor.mcfunction +27 -0
- mcbookshelf-3.0.0/modules/bs.bitwise/data/bs.bitwise/tags/function/and.json +21 -0
- mcbookshelf-3.0.0/modules/bs.bitwise/data/bs.bitwise/tags/function/bit_count.json +20 -0
- mcbookshelf-3.0.0/modules/bs.bitwise/data/bs.bitwise/tags/function/bit_length.json +21 -0
- mcbookshelf-3.0.0/modules/bs.bitwise/data/bs.bitwise/tags/function/not.json +21 -0
- mcbookshelf-3.0.0/modules/bs.bitwise/data/bs.bitwise/tags/function/or.json +21 -0
- mcbookshelf-3.0.0/modules/bs.bitwise/data/bs.bitwise/tags/function/two_complement.json +21 -0
- mcbookshelf-3.0.0/modules/bs.bitwise/data/bs.bitwise/tags/function/xor.json +21 -0
- mcbookshelf-3.0.0/modules/bs.bitwise/data/bs.bitwise/test/and.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.bitwise/data/bs.bitwise/test/bit_count.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.bitwise/data/bs.bitwise/test/bit_length.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.bitwise/data/bs.bitwise/test/not.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.bitwise/data/bs.bitwise/test/or.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.bitwise/data/bs.bitwise/test/two_complement.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.bitwise/data/bs.bitwise/test/xor.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.bitwise/module.json +14 -0
- mcbookshelf-3.0.0/modules/bs.bitwise/pack.png +0 -0
- mcbookshelf-3.0.0/modules/bs.block/README.md +14 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/__load__.mcfunction +25 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/__unload__.mcfunction +28 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/fill/events/on_finished.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/fill/fill_block.mcfunction +27 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/fill/fill_random.mcfunction +28 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/fill/fill_type.mcfunction +27 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/fill/process/pause.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/fill/process/resume.mcfunction +39 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/fill/process/scheduled.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/fill/recurse/init.mcfunction +38 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/fill/recurse/next.mcfunction +32 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/fill/strategy/set_block.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/fill/strategy/set_random.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/fill/strategy/set_type.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/get/compile/block.mcfunction +30 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/get/compile/concat/block/nbt.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/get/compile/concat/block/state.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/get/compile/concat/state.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/get/compile/nbt.mcfunction +25 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/get/compile/state.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/get/compile/type.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/get/get_block.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/get/get_type.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/import/mapping_registry.mcfunction +1028 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/lookup/lookup_item.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/lookup/lookup_type.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/match/check.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/match/match.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/produce/block_display/run.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/produce/block_display/spawn_block_display.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/produce/block_display/spawn_solid_block_display.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/produce/block_particle/emit_block_particle.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/produce/block_particle/run.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/produce/block_sound/play_block_sound.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/produce/block_sound/run.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/produce/falling_block/run.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/produce/falling_block/spawn_falling_block.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/set/run.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/set/set_block.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/set/set_type.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/transform/keep_properties/keep_properties.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/transform/keep_properties/recurse/get_by_value.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/transform/keep_properties/recurse/get_default.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/transform/keep_properties/recurse/next.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/transform/lookup_group.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/transform/merge_properties/merge_properties.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/transform/merge_properties/recurse/get_by_value.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/transform/merge_properties/recurse/next.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/transform/remove_properties/recurse/next.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/transform/remove_properties/recurse/remove.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/transform/remove_properties/remove_properties.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/transform/replace_properties/recurse/next.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/transform/replace_properties/replace_properties.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/transform/replace_type.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/transform/shift_properties/recurse/index.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/transform/shift_properties/recurse/next.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/transform/shift_properties/recurse/shift_property.mcfunction +27 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/transform/shift_properties/recurse/update_property.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/transform/shift_properties/shift_properties.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/transform/type_mappings/filter_set.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/transform/type_mappings/filter_type.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/transform/type_mappings/find_match.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/transform/type_mappings/keep_best.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/transform/type_mappings/map_type.mcfunction +35 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/transform/type_mappings/mix_type.mcfunction +40 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/transform/type_mappings/remove_type.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/transform/type_mappings/with_registry.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/utils/get_custom_dimension.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/utils/get_dimension.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/utils/masks/compile.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/utils/masks/loop.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/utils/random/compile.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/utils/random/loop.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/utils/resolve_from_pos.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/function/utils/resolve_to_pos.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/tags/block/has_state.json +20 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/tags/function/emit_block_particle.json +20 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/tags/function/fill_block.json +20 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/tags/function/fill_random.json +23 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/tags/function/fill_type.json +20 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/tags/function/get_block.json +22 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/tags/function/get_type.json +22 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/tags/function/keep_properties.json +21 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/tags/function/lookup_item.json +21 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/tags/function/lookup_type.json +22 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/tags/function/map_type.json +24 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/tags/function/match.json +21 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/tags/function/merge_properties.json +21 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/tags/function/mix_type.json +24 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/tags/function/play_block_sound.json +20 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/tags/function/remove_properties.json +21 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/tags/function/replace_properties.json +21 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/tags/function/replace_type.json +21 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/tags/function/set_block.json +21 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/tags/function/set_type.json +21 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/tags/function/shift_properties.json +21 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/tags/function/spawn_block_display.json +21 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/tags/function/spawn_falling_block.json +21 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/tags/function/spawn_solid_block_display.json +21 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/test/fill/async.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/test/fill/block.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/test/fill/masks.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/test/fill/on_finished.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/test/fill/random.mcfunction +42 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/test/fill/type.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/test/get/block.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/test/get/type.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/test/lookup/item.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/test/lookup/type.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/test/match.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/test/produce/block_display.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/test/produce/emit_block_particle.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/test/produce/falling_block.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/test/produce/solid_block_display.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/test/set/block.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/test/set/type.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/test/transform/keep_properties.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/test/transform/map_type.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/test/transform/merge_properties.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/test/transform/mix_type.mcfunction +26 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/test/transform/remove_properties.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/test/transform/replace_properties.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/test/transform/replace_type.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.block/data/bs.block/test/transform/shift_properties.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.block/gen_blocks.py +375 -0
- mcbookshelf-3.0.0/modules/bs.block/module.json +17 -0
- mcbookshelf-3.0.0/modules/bs.block/pack.png +0 -0
- mcbookshelf-3.0.0/modules/bs.block/templates/groups_table.jinja +3 -0
- mcbookshelf-3.0.0/modules/bs.block/templates/items_table.jinja +3 -0
- mcbookshelf-3.0.0/modules/bs.block/templates/types_table.jinja +3 -0
- mcbookshelf-3.0.0/modules/bs.color/README.md +14 -0
- mcbookshelf-3.0.0/modules/bs.color/data/bs.color/function/__load__.mcfunction +27 -0
- mcbookshelf-3.0.0/modules/bs.color/data/bs.color/function/__unload__.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.color/data/bs.color/function/hex_to_int/convert_hexes.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.color/data/bs.color/function/hex_to_int/hex_to_int.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.color/data/bs.color/function/hex_to_rgb/convert_hexes.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.color/data/bs.color/function/hex_to_rgb/hex_to_rgb.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.color/data/bs.color/function/int_to_hex/concat_hexes.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.color/data/bs.color/function/int_to_hex/get_hexes.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.color/data/bs.color/function/int_to_hex/int_to_hex.mcfunction +29 -0
- mcbookshelf-3.0.0/modules/bs.color/data/bs.color/function/int_to_rgb.mcfunction +26 -0
- mcbookshelf-3.0.0/modules/bs.color/data/bs.color/function/rgb_to_hex/concat_hexes.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.color/data/bs.color/function/rgb_to_hex/get_hexes.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.color/data/bs.color/function/rgb_to_hex/rgb_to_hex.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.color/data/bs.color/function/rgb_to_int.mcfunction +27 -0
- mcbookshelf-3.0.0/modules/bs.color/data/bs.color/tags/function/hex_to_int.json +20 -0
- mcbookshelf-3.0.0/modules/bs.color/data/bs.color/tags/function/hex_to_rgb.json +20 -0
- mcbookshelf-3.0.0/modules/bs.color/data/bs.color/tags/function/int_to_hex.json +20 -0
- mcbookshelf-3.0.0/modules/bs.color/data/bs.color/tags/function/int_to_rgb.json +23 -0
- mcbookshelf-3.0.0/modules/bs.color/data/bs.color/tags/function/rgb_to_hex.json +20 -0
- mcbookshelf-3.0.0/modules/bs.color/data/bs.color/tags/function/rgb_to_int.json +23 -0
- mcbookshelf-3.0.0/modules/bs.color/data/bs.color/test/hex_to_int.mcfunction +25 -0
- mcbookshelf-3.0.0/modules/bs.color/data/bs.color/test/hex_to_rgb.mcfunction +26 -0
- mcbookshelf-3.0.0/modules/bs.color/data/bs.color/test/int_to_hex.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.color/data/bs.color/test/int_to_rgb.mcfunction +26 -0
- mcbookshelf-3.0.0/modules/bs.color/data/bs.color/test/rgb_to_hex.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.color/data/bs.color/test/rgb_to_int.mcfunction +25 -0
- mcbookshelf-3.0.0/modules/bs.color/module.json +14 -0
- mcbookshelf-3.0.0/modules/bs.color/pack.png +0 -0
- mcbookshelf-3.0.0/modules/bs.dump/README.md +10 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/__load__.mcfunction +32 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/__unload__.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/expand.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/format/any.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/format/array/array.mcfunction +31 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/format/array/collapse.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/format/array/compact/compact.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/format/array/compact/loop.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/format/array/empty.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/format/array/loop.mcfunction +27 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/format/brace/close.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/format/brace/open.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/format/bracket/close.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/format/bracket/open.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/format/collapse/collapse.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/format/collapse/escape.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/format/collapse/event.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/format/compound/collapse.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/format/compound/compound.mcfunction +28 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/format/compound/empty.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/format/compound/key.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/format/compound/loop.mcfunction +30 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/format/number.mcfunction +26 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/format/score.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/format/string.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/format/undefined.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/interpret/any.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/interpret/array/array.mcfunction +29 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/interpret/array/compact/compact.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/interpret/array/compact/loop.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/interpret/array/loop.mcfunction +26 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/interpret/compound/compound.mcfunction +25 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/interpret/compound/loop.mcfunction +29 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/interpret/nbt/expand/cast.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/interpret/nbt/expand/default.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/interpret/nbt/expand/parse/init.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/interpret/nbt/expand/parse/next.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/interpret/nbt/expand/parse/terminate.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/interpret/nbt/nbt.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/interpret/nbt/populate.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/interpret/score.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/key/get.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/key/parse/quoted/double.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/key/parse/quoted/single.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/key/parse/terminate.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/key/parse/unquoted.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/function/var.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/tags/function/var.json +20 -0
- mcbookshelf-3.0.0/modules/bs.dump/data/bs.dump/test/var.mcfunction +26 -0
- mcbookshelf-3.0.0/modules/bs.dump/module.json +14 -0
- mcbookshelf-3.0.0/modules/bs.dump/pack.png +0 -0
- mcbookshelf-3.0.0/modules/bs.environment/README.md +14 -0
- mcbookshelf-3.0.0/modules/bs.environment/data/bs.environment/function/__load__.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.environment/data/bs.environment/function/__unload__.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.environment/data/bs.environment/function/get/biome/get_biome.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.environment/data/bs.environment/function/get/temperature/get_temperature.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.environment/data/bs.environment/function/get/temperature/variation.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.environment/data/bs.environment/predicate/can_rain.json +31 -0
- mcbookshelf-3.0.0/modules/bs.environment/data/bs.environment/predicate/is_raining.json +19 -0
- mcbookshelf-3.0.0/modules/bs.environment/data/bs.environment/predicate/is_thundering.json +19 -0
- mcbookshelf-3.0.0/modules/bs.environment/data/bs.environment/tags/function/get_biome.json +20 -0
- mcbookshelf-3.0.0/modules/bs.environment/data/bs.environment/tags/function/get_temperature.json +21 -0
- mcbookshelf-3.0.0/modules/bs.environment/gen_biomes.py +106 -0
- mcbookshelf-3.0.0/modules/bs.environment/module.json +17 -0
- mcbookshelf-3.0.0/modules/bs.environment/pack.png +0 -0
- mcbookshelf-3.0.0/modules/bs.generation/README.md +14 -0
- mcbookshelf-3.0.0/modules/bs.generation/data/bs.generation/function/__load__.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.generation/data/bs.generation/function/__unload__.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.generation/data/bs.generation/function/shape_2d/gen_fractal_shape_2d.mcfunction +34 -0
- mcbookshelf-3.0.0/modules/bs.generation/data/bs.generation/function/shape_2d/gen_shape_2d.mcfunction +25 -0
- mcbookshelf-3.0.0/modules/bs.generation/data/bs.generation/function/shape_2d/gen_simplex_shape_2d.mcfunction +31 -0
- mcbookshelf-3.0.0/modules/bs.generation/data/bs.generation/function/shape_2d/process/pause.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.generation/data/bs.generation/function/shape_2d/process/resume.mcfunction +28 -0
- mcbookshelf-3.0.0/modules/bs.generation/data/bs.generation/function/shape_2d/process/scheduled.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.generation/data/bs.generation/function/shape_2d/recurse/init.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.generation/data/bs.generation/function/shape_2d/recurse/next.mcfunction +25 -0
- mcbookshelf-3.0.0/modules/bs.generation/data/bs.generation/function/shape_2d/strategy/dummy/run.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.generation/data/bs.generation/function/shape_2d/strategy/dummy/setup.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.generation/data/bs.generation/function/shape_2d/strategy/fractal_noise_2d/run.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.generation/data/bs.generation/function/shape_2d/strategy/fractal_noise_2d/setup.mcfunction +26 -0
- mcbookshelf-3.0.0/modules/bs.generation/data/bs.generation/function/shape_2d/strategy/simplex_noise_2d/run.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.generation/data/bs.generation/function/shape_2d/strategy/simplex_noise_2d/setup.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.generation/data/bs.generation/function/utils/get_custom_dimension.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.generation/data/bs.generation/function/utils/get_dimension.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.generation/data/bs.generation/function/utils/get_location.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.generation/data/bs.generation/tags/function/gen_fractal_shape_2d.json +20 -0
- mcbookshelf-3.0.0/modules/bs.generation/data/bs.generation/tags/function/gen_shape_2d.json +20 -0
- mcbookshelf-3.0.0/modules/bs.generation/data/bs.generation/tags/function/gen_simplex_shape_2d.json +20 -0
- mcbookshelf-3.0.0/modules/bs.generation/data/bs.generation/test/shape_2d/async.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.generation/data/bs.generation/test/shape_2d/fractal.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.generation/data/bs.generation/test/shape_2d/plane_xy.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.generation/data/bs.generation/test/shape_2d/plane_xz.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.generation/data/bs.generation/test/shape_2d/plane_zy.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.generation/data/bs.generation/test/shape_2d/simplex.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.generation/module.json +17 -0
- mcbookshelf-3.0.0/modules/bs.generation/pack.png +0 -0
- mcbookshelf-3.0.0/modules/bs.health/README.md +14 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/advancement/on_before_heal.json +37 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/advancement/on_heal.json +51 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/function/__load__.mcfunction +30 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/function/__unload__.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/function/add/health.mcfunction +25 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/function/add/max_health.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/function/get/health.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/function/get/max_health.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/function/set/health.mcfunction +25 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/function/set/max_health.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/function/ttl/next_tick.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/function/ttl/normalize_unit.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/function/ttl/register_callback.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/function/ttl/register_unit.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/function/ttl/run_callback.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/function/ttl/time_out.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/function/ttl/time_to_live.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/function/utils/apply_health.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/function/utils/decrease_health.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/function/utils/increase_health.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/function/utils/on_before_heal.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/function/utils/on_heal.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/function/utils/set_max_health.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/tags/function/add_health.json +20 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/tags/function/add_max_health.json +20 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/tags/function/get_health.json +20 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/tags/function/get_max_health.json +20 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/tags/function/set_health.json +20 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/tags/function/set_max_health.json +20 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/tags/function/time_to_live.json +21 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/test/add/both.mcfunction +26 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/test/add/health.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/test/add/max_health.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/test/get/health.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/test/get/max_health.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/test/set/both.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/test/set/health.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/test/set/max_health.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.health/data/bs.health/test/time_to_live.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.health/module.json +17 -0
- mcbookshelf-3.0.0/modules/bs.health/pack.png +0 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/README.md +14 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/__load__.mcfunction +37 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/__unload__.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_block/get_block.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_block/offset/clamp.mcfunction +25 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_block/offset/compute.mcfunction +90 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_block/offset/fetch.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_block/offset/get.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/dispatch.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/get_entity.mcfunction +29 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/0.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/1.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/10.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/11.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/12.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/13.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/14.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/15.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/16.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/17.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/18.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/19.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/2.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/20.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/21.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/22.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/23.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/24.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/25.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/26.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/27.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/28.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/29.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/3.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/30.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/31.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/32.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/33.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/34.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/35.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/36.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/37.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/38.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/39.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/4.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/40.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/41.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/42.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/43.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/44.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/45.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/46.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/47.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/48.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/49.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/5.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/50.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/51.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/52.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/53.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/54.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/55.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/56.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/57.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/58.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/59.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/6.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/60.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/61.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/62.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/63.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/64.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/65.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/66.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/67.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/68.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/69.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/7.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/70.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/71.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/72.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/8.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/get_entity/registry/9.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/is_entity_in_block/check/check.mcfunction +25 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/is_entity_in_block/check/shape.mcfunction +40 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/is_entity_in_block/collision.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/is_entity_in_block/entity/shaped.mcfunction +34 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/is_entity_in_block/entity/sized.mcfunction +32 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/is_entity_in_block/interaction.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/is_entity_in_blocks/check/check.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/is_entity_in_blocks/check/shape.mcfunction +39 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/is_entity_in_blocks/collision.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/is_entity_in_blocks/entity/shaped.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/is_entity_in_blocks/entity/sized.mcfunction +30 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/is_entity_in_blocks/interaction.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/is_entity_in_blocks/recurse/init.mcfunction +31 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/is_entity_in_blocks/recurse/x.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/is_entity_in_blocks/recurse/y.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/is_entity_in_blocks/recurse/z.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/is_in_block/check/check.mcfunction +26 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/is_in_block/check/shape.mcfunction +39 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/is_in_block/collision.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/is_in_block/interaction.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/is_in_entity.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/utils/get_fract_pos.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/utils/get_negative_pos.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/function/utils/get_relative_pos.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/predicate/is_baby.json +9 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/predicate/salmon/large.json +9 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/predicate/salmon/small.json +9 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/block/can_pass_through.json +20 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/block/has_offset.json +20 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/block/intangible.json +20 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/block/is_full_cube.json +20 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/intangible.json +44 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/is_shaped.json +21 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/is_sized.json +89 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/arrow_like.json +8 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/bat_like.json +6 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/boat.json +24 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/cat_like.json +7 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/cow_like.json +6 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/falling_block_like.json +6 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/group_1.json +40 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/group_16.json +36 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/group_2.json +40 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/group_32.json +36 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/group_4.json +40 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/group_64.json +13 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/group_8.json +37 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/hoglin.json +6 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/horse_like.json +8 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/item_frame.json +6 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/item_like.json +15 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/llama.json +6 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/minecart.json +11 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/shulker_like.json +7 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/silverfish_like.json +6 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/skeleton.json +7 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/slime_like.json +6 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/small_fireball_like.json +8 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/entity_type/size/zombie_like.json +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/function/get_block.json +20 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/function/get_entity.json +20 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/function/is_entity_in_block_collision.json +20 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/function/is_entity_in_block_interaction.json +20 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/function/is_entity_in_blocks_collision.json +20 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/function/is_entity_in_blocks_interaction.json +20 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/function/is_in_block_collision.json +20 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/function/is_in_block_interaction.json +20 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/tags/function/is_in_entity.json +20 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/test/block_offset.mcfunction +26 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/test/block_shape.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/test/entity_in_block.mcfunction +34 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/test/entity_in_blocks.mcfunction +27 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/test/entity_scale.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/test/entity_size.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/test/in_block.mcfunction +39 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/data/bs.hitbox/test/in_entity.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/gen_shapes.py +218 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/module.json +17 -0
- mcbookshelf-3.0.0/modules/bs.hitbox/pack.png +0 -0
- mcbookshelf-3.0.0/modules/bs.id/README.md +14 -0
- mcbookshelf-3.0.0/modules/bs.id/data/bs.id/function/__load__.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.id/data/bs.id/function/__unload__.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.id/data/bs.id/function/give_cuid.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.id/data/bs.id/function/give_suid.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.id/data/bs.id/function/update_cuids/loop.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.id/data/bs.id/function/update_cuids/shift.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.id/data/bs.id/function/update_cuids/update_cuids.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.id/data/bs.id/predicate/cuid_equal.json +39 -0
- mcbookshelf-3.0.0/modules/bs.id/data/bs.id/predicate/cuid_lower.json +31 -0
- mcbookshelf-3.0.0/modules/bs.id/data/bs.id/predicate/cuid_match.json +39 -0
- mcbookshelf-3.0.0/modules/bs.id/data/bs.id/predicate/cuid_upper.json +31 -0
- mcbookshelf-3.0.0/modules/bs.id/data/bs.id/predicate/has_cuid.json +22 -0
- mcbookshelf-3.0.0/modules/bs.id/data/bs.id/predicate/has_suid.json +22 -0
- mcbookshelf-3.0.0/modules/bs.id/data/bs.id/predicate/suid_equal.json +39 -0
- mcbookshelf-3.0.0/modules/bs.id/data/bs.id/predicate/suid_lower.json +31 -0
- mcbookshelf-3.0.0/modules/bs.id/data/bs.id/predicate/suid_match.json +39 -0
- mcbookshelf-3.0.0/modules/bs.id/data/bs.id/predicate/suid_upper.json +31 -0
- mcbookshelf-3.0.0/modules/bs.id/data/bs.id/tags/function/give_cuid.json +21 -0
- mcbookshelf-3.0.0/modules/bs.id/data/bs.id/tags/function/give_suid.json +21 -0
- mcbookshelf-3.0.0/modules/bs.id/data/bs.id/tags/function/update_cuids.json +21 -0
- mcbookshelf-3.0.0/modules/bs.id/data/bs.id/test/update_cuids.mcfunction +34 -0
- mcbookshelf-3.0.0/modules/bs.id/module.json +14 -0
- mcbookshelf-3.0.0/modules/bs.id/pack.png +0 -0
- mcbookshelf-3.0.0/modules/bs.interaction/README.md +14 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/advancement/left_click.json +27 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/advancement/right_click.json +27 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/__load__.mcfunction +26 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/__unload__.mcfunction +28 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/callback/glow.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/callback/unglow.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/clear_events.mcfunction +32 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/on_event/hover/as_target.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/on_event/hover/hover.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/on_event/hover/reset.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/on_event/hover/run.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/on_event/hover_enter/as_target.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/on_event/hover_enter/get_target/filter.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/on_event/hover_enter/get_target/mask.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/on_event/hover_enter/hover_enter.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/on_event/hover_enter/run.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/on_event/hover_enter/try_enter.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/on_event/hover_leave/as_target.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/on_event/hover_leave/hover_leave.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/on_event/hover_leave/run.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/on_event/hover_leave/try_leave.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/on_event/is_target.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/on_event/left_click/as_target.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/on_event/left_click/left_click.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/on_event/process.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/on_event/process_hover.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/on_event/right_click/as_target.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/on_event/right_click/right_click.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/on_event/run.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/register/errors/command.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/register/errors/entity.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/register/errors/executor.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/register/hover.mcfunction +36 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/register/hover_enter.mcfunction +36 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/register/hover_leave.mcfunction +36 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/register/left_click.mcfunction +34 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/register/right_click.mcfunction +34 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/register/utils/check_command.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/register/utils/executor/check.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/register/utils/executor/interpret.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/register/utils/executor/setup.mcfunction +25 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/function/register/utils/setup_listener.mcfunction +32 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/predicate/hover_equal.json +24 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/tags/function/callback/glow.json +20 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/tags/function/callback/none.json +18 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/tags/function/callback/unglow.json +20 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/tags/function/clear_events.json +20 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/tags/function/on_hover.json +21 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/tags/function/on_hover_enter.json +21 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/tags/function/on_hover_leave.json +21 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/tags/function/on_left_click.json +21 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/tags/function/on_right_click.json +21 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/test/clear_events.mcfunction +91 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/test/on_hover.mcfunction +73 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/test/on_hover_enter.mcfunction +70 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/test/on_hover_leave.mcfunction +70 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/test/on_hover_logout.mcfunction +30 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/test/on_hover_once.mcfunction +33 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/test/on_hover_swap.mcfunction +31 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/test/on_left_click.mcfunction +51 -0
- mcbookshelf-3.0.0/modules/bs.interaction/data/bs.interaction/test/on_right_click.mcfunction +53 -0
- mcbookshelf-3.0.0/modules/bs.interaction/module.json +17 -0
- mcbookshelf-3.0.0/modules/bs.interaction/pack.png +0 -0
- mcbookshelf-3.0.0/modules/bs.link/README.md +14 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/function/__load__.mcfunction +29 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/function/__unload__.mcfunction +30 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/function/as_children.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/function/as_parent.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/function/at_children.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/function/at_parent.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/function/behaviors/apply.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/function/behaviors/imitate_pos_x.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/function/behaviors/imitate_pos_y.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/function/behaviors/imitate_pos_z.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/function/behaviors/imitate_rot_h.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/function/behaviors/imitate_rot_v.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/function/behaviors/reverse_pos_x.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/function/behaviors/reverse_pos_y.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/function/behaviors/reverse_pos_z.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/function/behaviors/reverse_rot_h.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/function/behaviors/reverse_rot_v.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/function/behaviors/setup.mcfunction +29 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/function/create_link_ata.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/function/keep_local_pos/apply.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/function/keep_local_pos/keep_local_pos.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/function/mirror_point_ata/apply.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/function/mirror_point_ata/as_origin.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/function/mirror_point_ata/mirror_point_ata.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/function/remove_link.mcfunction +27 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/function/update_link/at_parent.mcfunction +30 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/function/update_link/update_link.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/predicate/has_link.json +22 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/predicate/link_equal.json +39 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/as_children.json +20 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/as_parent.json +20 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/at_children.json +20 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/at_parent.json +20 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/behaviors/apply.json +21 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/behaviors/imitate_pos_x.json +21 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/behaviors/imitate_pos_y.json +21 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/behaviors/imitate_pos_z.json +21 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/behaviors/imitate_rot_h.json +21 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/behaviors/imitate_rot_v.json +21 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/behaviors/reverse_pos_x.json +21 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/behaviors/reverse_pos_y.json +21 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/behaviors/reverse_pos_z.json +21 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/behaviors/reverse_rot_h.json +21 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/behaviors/reverse_rot_v.json +21 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/behaviors/setup.json +21 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/create_link_ata.json +21 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/imitate_pos.json +25 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/imitate_pos_and_rot.json +27 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/imitate_pos_x.json +23 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/imitate_pos_y.json +23 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/imitate_pos_z.json +23 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/imitate_rot.json +24 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/imitate_rot_h.json +23 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/imitate_rot_v.json +23 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/keep_local_pos.json +21 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/mirror_point_ata.json +20 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/mirror_x_plane.json +26 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/mirror_z_plane.json +26 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/remove_link.json +20 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/reverse_pos.json +25 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/reverse_pos_and_rot.json +27 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/reverse_pos_x.json +23 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/reverse_pos_y.json +23 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/reverse_pos_z.json +23 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/reverse_rot.json +24 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/reverse_rot_h.json +23 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/reverse_rot_v.json +23 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/tags/function/update_link.json +21 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/test/as_children.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/test/as_parent.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/test/at_children.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/test/at_parent.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/test/create_link_ata.mcfunction +30 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/test/imitate_pos_and_rot.mcfunction +47 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/test/keep_local_pos.mcfunction +25 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/test/mirror_point_ata.mcfunction +34 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/test/remove_link.mcfunction +27 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/test/reverse_pos_and_rot.mcfunction +36 -0
- mcbookshelf-3.0.0/modules/bs.link/data/bs.link/test/update_link.mcfunction +30 -0
- mcbookshelf-3.0.0/modules/bs.link/module.json +18 -0
- mcbookshelf-3.0.0/modules/bs.link/pack.png +0 -0
- mcbookshelf-3.0.0/modules/bs.log/README.md +10 -0
- mcbookshelf-3.0.0/modules/bs.log/data/bs.log/function/__load__.mcfunction +43 -0
- mcbookshelf-3.0.0/modules/bs.log/data/bs.log/function/__unload__.mcfunction +26 -0
- mcbookshelf-3.0.0/modules/bs.log/data/bs.log/function/history/clear.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.log/data/bs.log/function/history/record.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.log/data/bs.log/function/history/show.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.log/data/bs.log/function/severity/debug.mcfunction +30 -0
- mcbookshelf-3.0.0/modules/bs.log/data/bs.log/function/severity/error.mcfunction +42 -0
- mcbookshelf-3.0.0/modules/bs.log/data/bs.log/function/severity/info.mcfunction +34 -0
- mcbookshelf-3.0.0/modules/bs.log/data/bs.log/function/severity/warn.mcfunction +38 -0
- mcbookshelf-3.0.0/modules/bs.log/data/bs.log/function/time/get.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.log/data/bs.log/function/time/tick.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.log/data/bs.log/function/time/ticks/format.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.log/data/bs.log/function/time/ticks/stringify.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.log/data/bs.log/tags/function/clear_history.json +20 -0
- mcbookshelf-3.0.0/modules/bs.log/data/bs.log/tags/function/debug.json +25 -0
- mcbookshelf-3.0.0/modules/bs.log/data/bs.log/tags/function/error.json +25 -0
- mcbookshelf-3.0.0/modules/bs.log/data/bs.log/tags/function/history.json +20 -0
- mcbookshelf-3.0.0/modules/bs.log/data/bs.log/tags/function/info.json +25 -0
- mcbookshelf-3.0.0/modules/bs.log/data/bs.log/tags/function/warn.json +25 -0
- mcbookshelf-3.0.0/modules/bs.log/data/bs.log/test/debug/hidden.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.log/data/bs.log/test/debug/visible.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.log/data/bs.log/test/debug/wildcards.mcfunction +35 -0
- mcbookshelf-3.0.0/modules/bs.log/data/bs.log/test/error/hidden.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.log/data/bs.log/test/error/visible.mcfunction +35 -0
- mcbookshelf-3.0.0/modules/bs.log/data/bs.log/test/error/wildcards.mcfunction +35 -0
- mcbookshelf-3.0.0/modules/bs.log/data/bs.log/test/history/clear.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.log/data/bs.log/test/history/show.mcfunction +26 -0
- mcbookshelf-3.0.0/modules/bs.log/data/bs.log/test/info/hidden.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.log/data/bs.log/test/info/visible.mcfunction +25 -0
- mcbookshelf-3.0.0/modules/bs.log/data/bs.log/test/info/wildcards.mcfunction +35 -0
- mcbookshelf-3.0.0/modules/bs.log/data/bs.log/test/warn/hidden.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.log/data/bs.log/test/warn/visible.mcfunction +30 -0
- mcbookshelf-3.0.0/modules/bs.log/data/bs.log/test/warn/wildcards.mcfunction +35 -0
- mcbookshelf-3.0.0/modules/bs.log/module.json +14 -0
- mcbookshelf-3.0.0/modules/bs.log/pack.png +0 -0
- mcbookshelf-3.0.0/modules/bs.math/README.md +14 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/__load__.mcfunction +42 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/__unload__.mcfunction +26 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/acos.mcfunction +44 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/asin.mcfunction +44 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/atan/atan.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/atan/run.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/atan2/atan2.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/atan2/run.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/combine/combine.mcfunction +32 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/combine/recurse/init.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/combine/recurse/next.mcfunction +27 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/cos.mcfunction +29 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/divide.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/exp.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/exp2/exp2.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/exp2/fract.mcfunction +35 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/exp2/run.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/factorial/factorial.mcfunction +34 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/factorial/loop.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/frexp/e_neg.mcfunction +37 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/frexp/e_pos/chunk.mcfunction +30 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/frexp/e_pos/range_1.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/frexp/e_pos/range_2.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/frexp/e_pos/range_3.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/frexp/e_pos/range_4.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/frexp/e_pos/split.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/frexp/frexp.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/frexp/run.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/gcd/gcd.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/gcd/loop.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/ipow.mcfunction +34 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/isqrt.mcfunction +37 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/ldexp/ldexp.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/ldexp/mul.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/ldexp/run.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/ldexp/table.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/log.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/log10.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/log2/fract.mcfunction +44 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/log2/log2.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/log2/run.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/loga/loga.mcfunction +25 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/loga/mul.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/pow/mul.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/pow/pow.mcfunction +27 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/sin.mcfunction +29 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/sincos/run.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/sincos/sincos.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/sqrt.mcfunction +46 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/tan/run.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/function/tan/tan.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/tags/function/acos.json +21 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/tags/function/asin.json +21 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/tags/function/atan.json +21 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/tags/function/atan2.json +21 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/tags/function/combine.json +20 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/tags/function/cos.json +21 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/tags/function/divide.json +21 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/tags/function/exp.json +21 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/tags/function/exp2.json +20 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/tags/function/factorial.json +25 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/tags/function/frexp.json +20 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/tags/function/gcd.json +21 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/tags/function/ipow.json +21 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/tags/function/isqrt.json +22 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/tags/function/ldexp.json +20 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/tags/function/log.json +21 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/tags/function/log10.json +21 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/tags/function/log2.json +21 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/tags/function/loga.json +21 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/tags/function/pow.json +20 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/tags/function/sin.json +23 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/tags/function/sincos.json +20 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/tags/function/sqrt.json +22 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/tags/function/tan.json +21 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/test/acos.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/test/asin.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/test/atan.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/test/atan2.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/test/combine.mcfunction +29 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/test/cos.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/test/divide.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/test/exp.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/test/exp2.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/test/factorial.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/test/frexp.mcfunction +28 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/test/gcd.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/test/ipow.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/test/isqrt.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/test/ldexp.mcfunction +29 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/test/log.mcfunction +29 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/test/log10.mcfunction +29 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/test/log2.mcfunction +29 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/test/loga.mcfunction +29 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/test/pow.mcfunction +29 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/test/sin.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/test/sincos.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/test/sqrt.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.math/data/bs.math/test/tan.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.math/module.json +14 -0
- mcbookshelf-3.0.0/modules/bs.math/pack.png +0 -0
- mcbookshelf-3.0.0/modules/bs.move/README.md +14 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/__load__.mcfunction +38 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/__unload__.mcfunction +29 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/collision/check/block/any.mcfunction +25 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/collision/check/block/cube.mcfunction +54 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/collision/check/block/shape.mcfunction +65 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/collision/check/entity/any.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/collision/check/entity/shape.mcfunction +65 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/collision/check/entity/size.mcfunction +64 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/collision/collide.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/collision/handle.mcfunction +53 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/collision/recurse/run.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/collision/recurse/setup/init.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/collision/recurse/setup/xn.mcfunction +27 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/collision/recurse/setup/xp.mcfunction +26 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/collision/recurse/setup/yn.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/collision/recurse/setup/yp.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/collision/recurse/setup/zn.mcfunction +27 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/collision/recurse/setup/zp.mcfunction +26 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/collision/recurse/xn.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/collision/recurse/xp.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/collision/recurse/yn.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/collision/recurse/yp.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/collision/recurse/zn.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/collision/recurse/zp.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/collision/resolvers/any.mcfunction +29 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/collision/resolvers/behaviors/bounce.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/collision/resolvers/behaviors/damped_bounce.mcfunction +27 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/collision/resolvers/behaviors/slide.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/collision/resolvers/behaviors/stick.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/collision/resolvers/canonical.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/collision/resolvers/local.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/collision/utils/get_bounding_box.mcfunction +34 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/collision/utils/get_relative_entity_pos.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/collision/utils/get_relative_pos.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/collision/utils/tp_relative.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/convert/canonical_to_local/canonical_to_local.mcfunction +49 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/convert/canonical_to_local/sincos.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/convert/local_to_canonical/compute.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/convert/local_to_canonical/local_to_canonical.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/set_motion.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/teleport/canonical/apply_vel.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/teleport/canonical/run.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/teleport/local/apply_local_vel.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/teleport/local/run.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/function/teleport/with.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/predicate/has_vel.json +74 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/tags/function/apply_local_vel.json +22 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/tags/function/apply_vel.json +22 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/tags/function/callback/bounce.json +20 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/tags/function/callback/damped_bounce.json +20 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/tags/function/callback/slide.json +20 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/tags/function/callback/stick.json +20 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/tags/function/canonical_to_local.json +20 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/tags/function/local_to_canonical.json +20 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/tags/function/set_motion.json +21 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/test/collision/with_block.mcfunction +33 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/test/collision/with_entity.mcfunction +33 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/test/convert/canonical_to_local.mcfunction +25 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/test/convert/local_to_canonical.mcfunction +25 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/test/set_motion.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/test/teleport/canonical.mcfunction +43 -0
- mcbookshelf-3.0.0/modules/bs.move/data/bs.move/test/teleport/local.mcfunction +43 -0
- mcbookshelf-3.0.0/modules/bs.move/module.json +17 -0
- mcbookshelf-3.0.0/modules/bs.move/pack.png +0 -0
- mcbookshelf-3.0.0/modules/bs.position/README.md +14 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/__load__.mcfunction +32 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/__unload__.mcfunction +28 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/add/position/all/all.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/add/position/all/run.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/add/position/x/run.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/add/position/x/x.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/add/position/y/run.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/add/position/y/y.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/add/position/z/run.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/add/position/z/z.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/add/rotation/all/all.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/add/rotation/all/run.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/add/rotation/h/h.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/add/rotation/h/run.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/add/rotation/v/run.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/add/rotation/v/v.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/convert/canonical_to_local/canonical_to_local.mcfunction +49 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/convert/canonical_to_local/sincos.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/convert/local_to_canonical/compute.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/convert/local_to_canonical/local_to_canonical.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/get/distance/compute.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/get/distance/distance_ata.mcfunction +28 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/get/distance/distance_squared_ata.mcfunction +32 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/get/position/all.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/get/position/ctx.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/get/position/x.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/get/position/y.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/get/position/z.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/get/relative/relative_ata.mcfunction +26 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/get/relative/relative_from_dir/ctx.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/get/relative/relative_from_dir/relative_from_dir.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/get/rotation/all.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/get/rotation/h.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/get/rotation/v.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/set/position/all/all.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/set/position/all/run.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/set/position/x/run.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/set/position/x/x.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/set/position/y/run.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/set/position/y/y.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/set/position/z/run.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/set/position/z/z.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/set/rotation/all/all.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/set/rotation/all/run.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/set/rotation/h/h.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/set/rotation/h/run.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/set/rotation/v/run.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/function/set/rotation/v/v.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/tags/function/add_pos.json +21 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/tags/function/add_pos_and_rot.json +22 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/tags/function/add_pos_x.json +21 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/tags/function/add_pos_y.json +21 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/tags/function/add_pos_z.json +21 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/tags/function/add_rot.json +21 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/tags/function/add_rot_h.json +21 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/tags/function/add_rot_v.json +21 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/tags/function/canonical_to_local.json +20 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/tags/function/get_distance_ata.json +24 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/tags/function/get_distance_squared_ata.json +21 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/tags/function/get_pos.json +21 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/tags/function/get_pos_and_rot.json +22 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/tags/function/get_pos_x.json +21 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/tags/function/get_pos_y.json +21 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/tags/function/get_pos_z.json +21 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/tags/function/get_relative_ata.json +21 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/tags/function/get_relative_from_dir.json +20 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/tags/function/get_rot.json +22 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/tags/function/get_rot_h.json +22 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/tags/function/get_rot_v.json +22 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/tags/function/local_to_canonical.json +20 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/tags/function/set_pos.json +21 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/tags/function/set_pos_and_rot.json +22 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/tags/function/set_pos_x.json +21 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/tags/function/set_pos_y.json +21 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/tags/function/set_pos_z.json +21 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/tags/function/set_rot.json +22 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/tags/function/set_rot_h.json +22 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/tags/function/set_rot_v.json +22 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/test/add/pos.mcfunction +34 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/test/add/pos_and_rot.mcfunction +43 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/test/add/pos_x.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/test/add/pos_y.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/test/add/pos_z.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/test/add/rot.mcfunction +31 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/test/add/rot_h.mcfunction +25 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/test/add/rot_v.mcfunction +25 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/test/convert/canonical_to_local.mcfunction +25 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/test/convert/local_to_canonical.mcfunction +25 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/test/get/distance_ata.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/test/get/distance_squared_ata.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/test/get/pos.mcfunction +29 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/test/get/pos_and_rot.mcfunction +35 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/test/get/pos_x.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/test/get/pos_y.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/test/get/pos_z.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/test/get/relative_ata.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/test/get/relative_from_dir.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/test/get/rot.mcfunction +26 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/test/get/rot_h.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/test/get/rot_v.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/test/set/pos.mcfunction +32 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/test/set/pos_and_rot.mcfunction +43 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/test/set/pos_x.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/test/set/pos_y.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/test/set/pos_z.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/test/set/rot.mcfunction +31 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/test/set/rot_h.mcfunction +25 -0
- mcbookshelf-3.0.0/modules/bs.position/data/bs.position/test/set/rot_v.mcfunction +25 -0
- mcbookshelf-3.0.0/modules/bs.position/module.json +14 -0
- mcbookshelf-3.0.0/modules/bs.position/pack.png +0 -0
- mcbookshelf-3.0.0/modules/bs.random/README.md +14 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/function/__load__.mcfunction +46 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/function/__unload__.mcfunction +25 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/function/choice/choice.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/function/choice/get.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/function/distributions/binomial/binomial.mcfunction +37 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/function/distributions/binomial/loop.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/function/distributions/geometric/geometric.mcfunction +29 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/function/distributions/geometric/loop.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/function/distributions/poisson/loop.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/function/distributions/poisson/poisson.mcfunction +64 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/function/distributions/uniform.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/function/noise/fractal_noise_2d/fractal_noise_2d.mcfunction +25 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/function/noise/fractal_noise_2d/loop.mcfunction +38 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/function/noise/fractal_noise_mat_2d/fractal_noise_mat_2d.mcfunction +34 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/function/noise/fractal_noise_mat_2d/xloop.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/function/noise/fractal_noise_mat_2d/yloop.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/function/noise/simplex_noise_2d/gradient.mcfunction +43 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/function/noise/simplex_noise_2d/simplex_noise_2d.mcfunction +84 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/function/noise/simplex_noise_mat_2d/simplex_noise_mat_2d.mcfunction +31 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/function/noise/simplex_noise_mat_2d/xloop.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/function/noise/simplex_noise_mat_2d/yloop.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/function/noise/white_noise_mat_1d/loop.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/function/noise/white_noise_mat_1d/white_noise_mat_1d.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/function/noise/white_noise_mat_2d/white_noise_mat_2d.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/function/noise/white_noise_mat_2d/xloop.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/function/noise/white_noise_mat_2d/yloop.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/function/weighted_choice/loop.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/function/weighted_choice/run.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/function/weighted_choice/weighted_choice.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/tags/function/binomial.json +23 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/tags/function/choice.json +20 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/tags/function/fractal_noise_2d.json +20 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/tags/function/fractal_noise_mat_2d.json +20 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/tags/function/geometric.json +23 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/tags/function/poisson.json +23 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/tags/function/simplex_noise_2d.json +23 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/tags/function/simplex_noise_mat_2d.json +23 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/tags/function/uniform.json +20 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/tags/function/weighted_choice.json +20 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/tags/function/white_noise_mat_1d.json +21 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/tags/function/white_noise_mat_2d.json +21 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/test/choice.mcfunction +32 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/test/distributions/binomial.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/test/distributions/geometric.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/test/distributions/poisson.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/test/distributions/uniform.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/test/noise/fractal_noise_2d.mcfunction +50 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/test/noise/fractal_noise_mat_2d.mcfunction +30 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/test/noise/simplex_noise_2d.mcfunction +38 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/test/noise/simplex_noise_mat_2d.mcfunction +30 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/test/noise/white_noise_mat_1d.mcfunction +30 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/test/noise/white_noise_mat_2d.mcfunction +38 -0
- mcbookshelf-3.0.0/modules/bs.random/data/bs.random/test/weighted_choice.mcfunction +30 -0
- mcbookshelf-3.0.0/modules/bs.random/module.json +14 -0
- mcbookshelf-3.0.0/modules/bs.random/pack.png +0 -0
- mcbookshelf-3.0.0/modules/bs.raycast/README.md +14 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/function/__load__.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/function/__unload__.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/function/check/block/any.mcfunction +32 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/function/check/block/shape.mcfunction +63 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/function/check/entity/any.mcfunction +27 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/function/check/entity/shape.mcfunction +57 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/function/check/entity/size.mcfunction +65 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/function/collide/block.mcfunction +27 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/function/collide/cube.mcfunction +33 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/function/collide/entity.mcfunction +26 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/function/collide/shape.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/function/collide/size.mcfunction +25 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/function/compute/entity_rpos.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/function/compute/hit_point.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/function/compute/init_rpos.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/function/react/hit_point.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/function/react/targeted_block.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/function/react/targeted_entity.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/function/recurse/init.mcfunction +54 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/function/recurse/next.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/function/recurse/x.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/function/recurse/y.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/function/recurse/z.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/function/run.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/function/with.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/tags/function/run.json +21 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/test/block/check_shape.mcfunction +27 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/test/block/ignored_blocks.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/test/block/max_distance.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/test/block/recurse_nnn.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/test/block/recurse_nnp.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/test/block/recurse_npn.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/test/block/recurse_npp.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/test/block/recurse_pnp.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/test/block/recurse_ppn.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/test/block/recurse_ppp.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/test/block/recuse_pnn.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/test/entity/check_shape.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/test/entity/check_size.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/test/entity/ignored_entities.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/test/entity/max_distance.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.raycast/data/bs.raycast/test/entity/tagged_entities.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.raycast/module.json +17 -0
- mcbookshelf-3.0.0/modules/bs.raycast/pack.png +0 -0
- mcbookshelf-3.0.0/modules/bs.schedule/README.md +10 -0
- mcbookshelf-3.0.0/modules/bs.schedule/data/bs.schedule/function/__load__.mcfunction +32 -0
- mcbookshelf-3.0.0/modules/bs.schedule/data/bs.schedule/function/__unload__.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.schedule/data/bs.schedule/function/cancel/cancel_all.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.schedule/data/bs.schedule/function/cancel/cancel_one.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.schedule/data/bs.schedule/function/cancel/remove_one.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.schedule/data/bs.schedule/function/clear.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.schedule/data/bs.schedule/function/execute/callback.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.schedule/data/bs.schedule/function/execute/loop.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.schedule/data/bs.schedule/function/execute/run/with_entity.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.schedule/data/bs.schedule/function/execute/run/without_entity.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.schedule/data/bs.schedule/function/execute/slice.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.schedule/data/bs.schedule/function/schedule/callback.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.schedule/data/bs.schedule/function/schedule/context/get_custom_dimension.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.schedule/data/bs.schedule/function/schedule/context/get_dimension.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.schedule/data/bs.schedule/function/schedule/context/get_position.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.schedule/data/bs.schedule/function/schedule/schedule.mcfunction +38 -0
- mcbookshelf-3.0.0/modules/bs.schedule/data/bs.schedule/function/schedule/unit/handle.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.schedule/data/bs.schedule/function/schedule/unit/normalize.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.schedule/data/bs.schedule/predicate/target.json +18 -0
- mcbookshelf-3.0.0/modules/bs.schedule/data/bs.schedule/tags/function/cancel_all.json +21 -0
- mcbookshelf-3.0.0/modules/bs.schedule/data/bs.schedule/tags/function/cancel_one.json +21 -0
- mcbookshelf-3.0.0/modules/bs.schedule/data/bs.schedule/tags/function/clear.json +21 -0
- mcbookshelf-3.0.0/modules/bs.schedule/data/bs.schedule/tags/function/schedule.json +21 -0
- mcbookshelf-3.0.0/modules/bs.schedule/data/bs.schedule/test/cancel/all.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.schedule/data/bs.schedule/test/cancel/one.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.schedule/data/bs.schedule/test/schedule/context.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.schedule/data/bs.schedule/test/schedule/stack.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.schedule/data/bs.schedule/test/schedule/time.mcfunction +32 -0
- mcbookshelf-3.0.0/modules/bs.schedule/data/bs.schedule/test/units/error.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.schedule/data/bs.schedule/test/units/success.mcfunction +25 -0
- mcbookshelf-3.0.0/modules/bs.schedule/module.json +17 -0
- mcbookshelf-3.0.0/modules/bs.schedule/pack.png +0 -0
- mcbookshelf-3.0.0/modules/bs.sidebar/README.md +10 -0
- mcbookshelf-3.0.0/modules/bs.sidebar/data/bs.sidebar/function/__load__.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.sidebar/data/bs.sidebar/function/__unload__.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.sidebar/data/bs.sidebar/function/create/check/name.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.sidebar/data/bs.sidebar/function/create/check/objective.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.sidebar/data/bs.sidebar/function/create/create.mcfunction +47 -0
- mcbookshelf-3.0.0/modules/bs.sidebar/data/bs.sidebar/function/create/recurse/abort.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.sidebar/data/bs.sidebar/function/create/recurse/init.mcfunction +34 -0
- mcbookshelf-3.0.0/modules/bs.sidebar/data/bs.sidebar/function/create/recurse/next.mcfunction +41 -0
- mcbookshelf-3.0.0/modules/bs.sidebar/data/bs.sidebar/function/refresh/loop.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.sidebar/data/bs.sidebar/function/refresh/refresh.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.sidebar/data/bs.sidebar/tags/function/create.json +23 -0
- mcbookshelf-3.0.0/modules/bs.sidebar/data/bs.sidebar/tags/function/refresh.json +20 -0
- mcbookshelf-3.0.0/modules/bs.sidebar/module.json +17 -0
- mcbookshelf-3.0.0/modules/bs.sidebar/pack.png +0 -0
- mcbookshelf-3.0.0/modules/bs.spline/README.md +14 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/function/__load__.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/function/__unload__.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/function/evaluate/evaluate.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/function/evaluate/evaluate_bezier.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/function/evaluate/evaluate_bspline.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/function/evaluate/evaluate_catmull_rom.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/function/evaluate/evaluate_hermite.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/function/sample/sample.mcfunction +25 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/function/sample/sample_bezier.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/function/sample/sample_bspline.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/function/sample/sample_catmull_rom.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/function/sample/sample_hermite.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/function/stream/process/process.mcfunction +30 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/function/stream/process/resume.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/function/stream/process/schedule.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/function/stream/process/tick.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/function/stream/stream_bezier.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/function/stream/stream_bspline.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/function/stream/stream_catmull_rom.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/function/stream/stream_hermite.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/function/utils/bezier/lookup_coefficients.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/function/utils/bezier/next_segment.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/function/utils/bspline/lookup_coefficients.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/function/utils/bspline/next_segment.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/function/utils/callback.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/function/utils/catmull_rom/lookup_coefficients.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/function/utils/catmull_rom/next_segment.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/function/utils/compute.mcfunction +28 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/function/utils/hermite/lookup_coefficients.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/function/utils/hermite/next_segment.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/tags/function/evaluate_bezier.json +20 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/tags/function/evaluate_bspline.json +20 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/tags/function/evaluate_catmull_rom.json +20 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/tags/function/evaluate_hermite.json +20 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/tags/function/sample_bezier.json +20 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/tags/function/sample_bspline.json +20 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/tags/function/sample_catmull_rom.json +20 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/tags/function/sample_hermite.json +20 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/tags/function/stream_bezier.json +20 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/tags/function/stream_bspline.json +20 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/tags/function/stream_catmull_rom.json +20 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/tags/function/stream_hermite.json +20 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/test/evaluate_bezier.mcfunction +70 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/test/evaluate_bspline.mcfunction +70 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/test/evaluate_catmull_rom.mcfunction +70 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/test/evaluate_hermite.mcfunction +70 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/test/sample_bezier.mcfunction +95 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/test/sample_bspline.mcfunction +95 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/test/sample_catmull_rom.mcfunction +95 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/test/sample_hermite.mcfunction +95 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/test/stream_bezier.mcfunction +61 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/test/stream_bspline.mcfunction +61 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/test/stream_catmull_rom.mcfunction +61 -0
- mcbookshelf-3.0.0/modules/bs.spline/data/bs.spline/test/stream_hermite.mcfunction +61 -0
- mcbookshelf-3.0.0/modules/bs.spline/gen_tables.py +62 -0
- mcbookshelf-3.0.0/modules/bs.spline/module.json +17 -0
- mcbookshelf-3.0.0/modules/bs.spline/pack.png +0 -0
- mcbookshelf-3.0.0/modules/bs.spline/templates/lookup_table.jinja +3 -0
- mcbookshelf-3.0.0/modules/bs.string/README.md +14 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/__load__.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/__unload__.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/concat/concat.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/concat/dispatch/0.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/concat/dispatch/1.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/concat/dispatch/2.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/concat/dispatch/3.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/concat/dispatch/4.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/concat/dispatch/5.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/concat/dispatch/6.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/concat/dispatch/7.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/concat/dispatch/chunked.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/concat/dispatch/fixed.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/concat/run.mcfunction +26 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/find/find.mcfunction +34 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/find/find_all.mcfunction +35 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/find/recurse/found.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/find/recurse/next.mcfunction +29 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/find/recurse/substr.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/lower/loop.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/lower/lower.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/replace/recurse/found.mcfunction +29 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/replace/recurse/next.mcfunction +30 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/replace/recurse/substr.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/replace/replace.mcfunction +36 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/replace_range/concat.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/replace_range/replace_range.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/replace_range/split.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/reverse/loop.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/reverse/reverse.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/split/recurse/found.mcfunction +28 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/split/recurse/next.mcfunction +31 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/split/recurse/substr.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/split/split.mcfunction +36 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/type/parse/macro.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/type/parse/parse.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/type/to_list/loop.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/type/to_list/to_list.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/type/to_string/macro.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/type/to_string/to_string.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/upper/loop.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/upper/upper.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/utils/skip_table/compute.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/utils/skip_table/loop.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/function/utils/skip_table/match.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/tags/function/concat.json +20 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/tags/function/find.json +20 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/tags/function/find_all.json +20 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/tags/function/lower.json +20 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/tags/function/parse.json +20 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/tags/function/replace.json +20 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/tags/function/replace_range.json +20 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/tags/function/reverse.json +20 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/tags/function/split.json +20 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/tags/function/to_list.json +20 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/tags/function/to_string.json +20 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/tags/function/upper.json +20 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/test/concat.mcfunction +31 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/test/find.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/test/find_all.mcfunction +59 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/test/lower.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/test/parse.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/test/replace.mcfunction +64 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/test/replace_range.mcfunction +49 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/test/reverse.mcfunction +39 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/test/split.mcfunction +59 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/test/to_list.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/test/to_string.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.string/data/bs.string/test/upper.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.string/gen_files.py +27 -0
- mcbookshelf-3.0.0/modules/bs.string/module.json +20 -0
- mcbookshelf-3.0.0/modules/bs.string/pack.png +0 -0
- mcbookshelf-3.0.0/modules/bs.string/templates/char_table.jinja +4 -0
- mcbookshelf-3.0.0/modules/bs.string/templates/concat/join.jinja +3 -0
- mcbookshelf-3.0.0/modules/bs.string/templates/concat/pair.jinja +11 -0
- mcbookshelf-3.0.0/modules/bs.time/README.md +10 -0
- mcbookshelf-3.0.0/modules/bs.time/data/bs.time/function/__load__.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.time/data/bs.time/function/__unload__.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.time/data/bs.time/function/get/cast.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.time/data/bs.time/function/get/get.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.time/data/bs.time/tags/function/get.json +24 -0
- mcbookshelf-3.0.0/modules/bs.time/data/bs.time/test/format.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.time/module.json +14 -0
- mcbookshelf-3.0.0/modules/bs.time/pack.png +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/README.md +10 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/function/__load__.mcfunction +14 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/function/__unload__.mcfunction +14 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/birch_1.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/birch_2.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/birch_3.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/birch_4.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/birch_5.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/cypress_1.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/cypress_2.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/cypress_3.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/cypress_4.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/cypress_5.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/dark_oak_1.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/dark_oak_2.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/dark_oak_3.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/dark_oak_4.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/dark_oak_5.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/dead_spruce_1.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/dead_spruce_2.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/dead_spruce_3.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/dead_spruce_4.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/dead_spruce_5.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/exotic_1.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/exotic_2.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/exotic_3.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/exotic_4.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/exotic_5.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/fir_1.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/fir_2.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/fir_3.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/fir_4.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/fir_5.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/jungle_1.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/jungle_2.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/jungle_3.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/jungle_4.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/jungle_5.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/mushroom_1.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/mushroom_2.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/mushroom_3.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/mushroom_4.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/mushroom_5.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/oak_1.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/oak_2.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/oak_3.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/oak_4.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/oak_5.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/palm_1.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/palm_2.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/palm_3.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/palm_4.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/data/bs.tree/structure/palm_5.nbt +0 -0
- mcbookshelf-3.0.0/modules/bs.tree/module.json +14 -0
- mcbookshelf-3.0.0/modules/bs.tree/pack.png +0 -0
- mcbookshelf-3.0.0/modules/bs.vector/README.md +14 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/function/__load__.mcfunction +28 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/function/__unload__.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/function/abs_max.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/function/abs_min.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/function/convert/basis_rot_3d/basis_rot_3d.mcfunction +49 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/function/convert/basis_rot_3d/sincos.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/function/convert/cartesian_to_spherical/cartesian_to_spherical.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/function/convert/cartesian_to_spherical/compute.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/function/convert/spherical_to_cartesian/compute.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/function/convert/spherical_to_cartesian/spherical_to_cartesian.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/function/cross_product.mcfunction +40 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/function/dot_product.mcfunction +26 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/function/length/compute.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/function/length/length.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/function/length_squared.mcfunction +26 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/function/normalize/compute.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/function/normalize/normalize.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/function/normalize_max_component.mcfunction +35 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/function/pos_from_vec.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/function/rot_from_vec.mcfunction +17 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/function/vec_from_pos.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/function/vec_from_rot.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/function/vec_from_vel.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/function/vel_from_vec.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/tags/function/abs_max.json +21 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/tags/function/abs_min.json +20 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/tags/function/basis_rot_3d.json +21 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/tags/function/cartesian_to_spherical.json +21 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/tags/function/cross_product.json +21 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/tags/function/dot_product.json +21 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/tags/function/length.json +22 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/tags/function/length_squared.json +22 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/tags/function/normalize.json +21 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/tags/function/normalize_max_component.json +22 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/tags/function/pos_from_vec.json +20 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/tags/function/rot_from_vec.json +20 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/tags/function/spherical_to_cartesian.json +20 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/tags/function/vec_from_pos.json +20 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/tags/function/vec_from_rot.json +20 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/tags/function/vec_from_vel.json +20 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/tags/function/vel_from_vec.json +20 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/test/abs_max.mcfunction +26 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/test/abs_min.mcfunction +26 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/test/basis_rot_3d.mcfunction +28 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/test/cartesian_to_spherical.mcfunction +27 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/test/cross_product.mcfunction +28 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/test/dot_product.mcfunction +26 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/test/length.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/test/length_squared.mcfunction +22 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/test/normalize.mcfunction +26 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/test/normalize_max_component.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.vector/data/bs.vector/test/spherical_to_cartesian.mcfunction +26 -0
- mcbookshelf-3.0.0/modules/bs.vector/module.json +14 -0
- mcbookshelf-3.0.0/modules/bs.vector/pack.png +0 -0
- mcbookshelf-3.0.0/modules/bs.view/README.md +14 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/function/__load__.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/function/__unload__.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/function/aimed_block/at_aimed_block.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/function/aimed_block/with.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/function/aimed_entity/as_aimed_entity.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/function/aimed_entity/at_aimed_entity.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/function/aimed_entity/with.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/function/aimed_point/at_aimed_point.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/function/aimed_point/with.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/function/block_placement/at_block_placement.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/function/block_placement/compute.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/function/block_placement/displace.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/function/block_placement/with.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/function/can_see_ata/can_see_ata.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/function/can_see_ata/max_distance/compute.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/function/can_see_ata/max_distance/get_rpos.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/function/can_see_ata/with.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/function/in_view_ata/angle.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/function/in_view_ata/check.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/function/in_view_ata/in_view_ata.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/function/looked_entity/as_looked_entity.mcfunction +27 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/function/looked_entity/at_looked_entity.mcfunction +27 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/function/looked_entity/setup.mcfunction +45 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/tags/block/can_see_through.json +94 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/tags/function/as_aimed_entity.json +21 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/tags/function/as_looked_entity.json +20 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/tags/function/at_aimed_block.json +21 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/tags/function/at_aimed_entity.json +21 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/tags/function/at_aimed_point.json +21 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/tags/function/at_block_placement.json +21 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/tags/function/at_looked_entity.json +20 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/tags/function/can_see_ata.json +22 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/tags/function/in_view_ata.json +21 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/test/as_aimed_entity.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/test/as_looked_entity.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/test/at_aimed_block.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/test/at_aimed_entity.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/test/at_aimed_point.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/test/at_block_placement.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/test/at_looked_entity.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/test/can_see_ata.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.view/data/bs.view/test/in_view_ata.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.view/module.json +17 -0
- mcbookshelf-3.0.0/modules/bs.view/pack.png +0 -0
- mcbookshelf-3.0.0/modules/bs.xp/README.md +10 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/function/__load__.mcfunction +29 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/function/__unload__.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/function/add/levels.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/function/add/points.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/function/add/progress/apply.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/function/add/progress/progress.mcfunction +25 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/function/get/max_points/max_points.mcfunction +19 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/function/get/max_points/range_1.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/function/get/max_points/range_2.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/function/get/max_points/range_3.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/function/get/progress.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/function/get/remaining_points.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/function/get/total_points/range_1.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/function/get/total_points/range_2.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/function/get/total_points/range_3.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/function/get/total_points/total_points.mcfunction +20 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/function/set/levels.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/function/set/points.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/function/set/progress/apply.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/function/set/progress/progress.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/function/set/total_points.mcfunction +18 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/function/utils/restore_levels.mcfunction +16 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/tags/function/add_levels.json +21 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/tags/function/add_points.json +21 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/tags/function/add_progress.json +21 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/tags/function/get_max_points.json +21 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/tags/function/get_progress.json +21 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/tags/function/get_remaining_points.json +21 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/tags/function/get_total_points.json +21 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/tags/function/set_levels.json +21 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/tags/function/set_points.json +21 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/tags/function/set_progress.json +21 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/tags/function/set_total_points.json +21 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/test/add/levels.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/test/add/points.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/test/add/progress.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/test/get/max_points.mcfunction +27 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/test/get/progress.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/test/get/remaining_points.mcfunction +30 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/test/get/total_points.mcfunction +27 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/test/set/levels.mcfunction +21 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/test/set/points.mcfunction +23 -0
- mcbookshelf-3.0.0/modules/bs.xp/data/bs.xp/test/set/progress.mcfunction +24 -0
- mcbookshelf-3.0.0/modules/bs.xp/module.json +14 -0
- mcbookshelf-3.0.0/modules/bs.xp/pack.png +0 -0
- mcbookshelf-3.0.0/modules/config.json +13 -0
- mcbookshelf-3.0.0/pyproject.toml +93 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
*
|
|
@@ -0,0 +1,373 @@
|
|
|
1
|
+
Mozilla Public License Version 2.0
|
|
2
|
+
==================================
|
|
3
|
+
|
|
4
|
+
1. Definitions
|
|
5
|
+
--------------
|
|
6
|
+
|
|
7
|
+
1.1. "Contributor"
|
|
8
|
+
means each individual or legal entity that creates, contributes to
|
|
9
|
+
the creation of, or owns Covered Software.
|
|
10
|
+
|
|
11
|
+
1.2. "Contributor Version"
|
|
12
|
+
means the combination of the Contributions of others (if any) used
|
|
13
|
+
by a Contributor and that particular Contributor's Contribution.
|
|
14
|
+
|
|
15
|
+
1.3. "Contribution"
|
|
16
|
+
means Covered Software of a particular Contributor.
|
|
17
|
+
|
|
18
|
+
1.4. "Covered Software"
|
|
19
|
+
means Source Code Form to which the initial Contributor has attached
|
|
20
|
+
the notice in Exhibit A, the Executable Form of such Source Code
|
|
21
|
+
Form, and Modifications of such Source Code Form, in each case
|
|
22
|
+
including portions thereof.
|
|
23
|
+
|
|
24
|
+
1.5. "Incompatible With Secondary Licenses"
|
|
25
|
+
means
|
|
26
|
+
|
|
27
|
+
(a) that the initial Contributor has attached the notice described
|
|
28
|
+
in Exhibit B to the Covered Software; or
|
|
29
|
+
|
|
30
|
+
(b) that the Covered Software was made available under the terms of
|
|
31
|
+
version 1.1 or earlier of the License, but not also under the
|
|
32
|
+
terms of a Secondary License.
|
|
33
|
+
|
|
34
|
+
1.6. "Executable Form"
|
|
35
|
+
means any form of the work other than Source Code Form.
|
|
36
|
+
|
|
37
|
+
1.7. "Larger Work"
|
|
38
|
+
means a work that combines Covered Software with other material, in
|
|
39
|
+
a separate file or files, that is not Covered Software.
|
|
40
|
+
|
|
41
|
+
1.8. "License"
|
|
42
|
+
means this document.
|
|
43
|
+
|
|
44
|
+
1.9. "Licensable"
|
|
45
|
+
means having the right to grant, to the maximum extent possible,
|
|
46
|
+
whether at the time of the initial grant or subsequently, any and
|
|
47
|
+
all of the rights conveyed by this License.
|
|
48
|
+
|
|
49
|
+
1.10. "Modifications"
|
|
50
|
+
means any of the following:
|
|
51
|
+
|
|
52
|
+
(a) any file in Source Code Form that results from an addition to,
|
|
53
|
+
deletion from, or modification of the contents of Covered
|
|
54
|
+
Software; or
|
|
55
|
+
|
|
56
|
+
(b) any new file in Source Code Form that contains any Covered
|
|
57
|
+
Software.
|
|
58
|
+
|
|
59
|
+
1.11. "Patent Claims" of a Contributor
|
|
60
|
+
means any patent claim(s), including without limitation, method,
|
|
61
|
+
process, and apparatus claims, in any patent Licensable by such
|
|
62
|
+
Contributor that would be infringed, but for the grant of the
|
|
63
|
+
License, by the making, using, selling, offering for sale, having
|
|
64
|
+
made, import, or transfer of either its Contributions or its
|
|
65
|
+
Contributor Version.
|
|
66
|
+
|
|
67
|
+
1.12. "Secondary License"
|
|
68
|
+
means either the GNU General Public License, Version 2.0, the GNU
|
|
69
|
+
Lesser General Public License, Version 2.1, the GNU Affero General
|
|
70
|
+
Public License, Version 3.0, or any later versions of those
|
|
71
|
+
licenses.
|
|
72
|
+
|
|
73
|
+
1.13. "Source Code Form"
|
|
74
|
+
means the form of the work preferred for making modifications.
|
|
75
|
+
|
|
76
|
+
1.14. "You" (or "Your")
|
|
77
|
+
means an individual or a legal entity exercising rights under this
|
|
78
|
+
License. For legal entities, "You" includes any entity that
|
|
79
|
+
controls, is controlled by, or is under common control with You. For
|
|
80
|
+
purposes of this definition, "control" means (a) the power, direct
|
|
81
|
+
or indirect, to cause the direction or management of such entity,
|
|
82
|
+
whether by contract or otherwise, or (b) ownership of more than
|
|
83
|
+
fifty percent (50%) of the outstanding shares or beneficial
|
|
84
|
+
ownership of such entity.
|
|
85
|
+
|
|
86
|
+
2. License Grants and Conditions
|
|
87
|
+
--------------------------------
|
|
88
|
+
|
|
89
|
+
2.1. Grants
|
|
90
|
+
|
|
91
|
+
Each Contributor hereby grants You a world-wide, royalty-free,
|
|
92
|
+
non-exclusive license:
|
|
93
|
+
|
|
94
|
+
(a) under intellectual property rights (other than patent or trademark)
|
|
95
|
+
Licensable by such Contributor to use, reproduce, make available,
|
|
96
|
+
modify, display, perform, distribute, and otherwise exploit its
|
|
97
|
+
Contributions, either on an unmodified basis, with Modifications, or
|
|
98
|
+
as part of a Larger Work; and
|
|
99
|
+
|
|
100
|
+
(b) under Patent Claims of such Contributor to make, use, sell, offer
|
|
101
|
+
for sale, have made, import, and otherwise transfer either its
|
|
102
|
+
Contributions or its Contributor Version.
|
|
103
|
+
|
|
104
|
+
2.2. Effective Date
|
|
105
|
+
|
|
106
|
+
The licenses granted in Section 2.1 with respect to any Contribution
|
|
107
|
+
become effective for each Contribution on the date the Contributor first
|
|
108
|
+
distributes such Contribution.
|
|
109
|
+
|
|
110
|
+
2.3. Limitations on Grant Scope
|
|
111
|
+
|
|
112
|
+
The licenses granted in this Section 2 are the only rights granted under
|
|
113
|
+
this License. No additional rights or licenses will be implied from the
|
|
114
|
+
distribution or licensing of Covered Software under this License.
|
|
115
|
+
Notwithstanding Section 2.1(b) above, no patent license is granted by a
|
|
116
|
+
Contributor:
|
|
117
|
+
|
|
118
|
+
(a) for any code that a Contributor has removed from Covered Software;
|
|
119
|
+
or
|
|
120
|
+
|
|
121
|
+
(b) for infringements caused by: (i) Your and any other third party's
|
|
122
|
+
modifications of Covered Software, or (ii) the combination of its
|
|
123
|
+
Contributions with other software (except as part of its Contributor
|
|
124
|
+
Version); or
|
|
125
|
+
|
|
126
|
+
(c) under Patent Claims infringed by Covered Software in the absence of
|
|
127
|
+
its Contributions.
|
|
128
|
+
|
|
129
|
+
This License does not grant any rights in the trademarks, service marks,
|
|
130
|
+
or logos of any Contributor (except as may be necessary to comply with
|
|
131
|
+
the notice requirements in Section 3.4).
|
|
132
|
+
|
|
133
|
+
2.4. Subsequent Licenses
|
|
134
|
+
|
|
135
|
+
No Contributor makes additional grants as a result of Your choice to
|
|
136
|
+
distribute the Covered Software under a subsequent version of this
|
|
137
|
+
License (see Section 10.2) or under the terms of a Secondary License (if
|
|
138
|
+
permitted under the terms of Section 3.3).
|
|
139
|
+
|
|
140
|
+
2.5. Representation
|
|
141
|
+
|
|
142
|
+
Each Contributor represents that the Contributor believes its
|
|
143
|
+
Contributions are its original creation(s) or it has sufficient rights
|
|
144
|
+
to grant the rights to its Contributions conveyed by this License.
|
|
145
|
+
|
|
146
|
+
2.6. Fair Use
|
|
147
|
+
|
|
148
|
+
This License is not intended to limit any rights You have under
|
|
149
|
+
applicable copyright doctrines of fair use, fair dealing, or other
|
|
150
|
+
equivalents.
|
|
151
|
+
|
|
152
|
+
2.7. Conditions
|
|
153
|
+
|
|
154
|
+
Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted
|
|
155
|
+
in Section 2.1.
|
|
156
|
+
|
|
157
|
+
3. Responsibilities
|
|
158
|
+
-------------------
|
|
159
|
+
|
|
160
|
+
3.1. Distribution of Source Form
|
|
161
|
+
|
|
162
|
+
All distribution of Covered Software in Source Code Form, including any
|
|
163
|
+
Modifications that You create or to which You contribute, must be under
|
|
164
|
+
the terms of this License. You must inform recipients that the Source
|
|
165
|
+
Code Form of the Covered Software is governed by the terms of this
|
|
166
|
+
License, and how they can obtain a copy of this License. You may not
|
|
167
|
+
attempt to alter or restrict the recipients' rights in the Source Code
|
|
168
|
+
Form.
|
|
169
|
+
|
|
170
|
+
3.2. Distribution of Executable Form
|
|
171
|
+
|
|
172
|
+
If You distribute Covered Software in Executable Form then:
|
|
173
|
+
|
|
174
|
+
(a) such Covered Software must also be made available in Source Code
|
|
175
|
+
Form, as described in Section 3.1, and You must inform recipients of
|
|
176
|
+
the Executable Form how they can obtain a copy of such Source Code
|
|
177
|
+
Form by reasonable means in a timely manner, at a charge no more
|
|
178
|
+
than the cost of distribution to the recipient; and
|
|
179
|
+
|
|
180
|
+
(b) You may distribute such Executable Form under the terms of this
|
|
181
|
+
License, or sublicense it under different terms, provided that the
|
|
182
|
+
license for the Executable Form does not attempt to limit or alter
|
|
183
|
+
the recipients' rights in the Source Code Form under this License.
|
|
184
|
+
|
|
185
|
+
3.3. Distribution of a Larger Work
|
|
186
|
+
|
|
187
|
+
You may create and distribute a Larger Work under terms of Your choice,
|
|
188
|
+
provided that You also comply with the requirements of this License for
|
|
189
|
+
the Covered Software. If the Larger Work is a combination of Covered
|
|
190
|
+
Software with a work governed by one or more Secondary Licenses, and the
|
|
191
|
+
Covered Software is not Incompatible With Secondary Licenses, this
|
|
192
|
+
License permits You to additionally distribute such Covered Software
|
|
193
|
+
under the terms of such Secondary License(s), so that the recipient of
|
|
194
|
+
the Larger Work may, at their option, further distribute the Covered
|
|
195
|
+
Software under the terms of either this License or such Secondary
|
|
196
|
+
License(s).
|
|
197
|
+
|
|
198
|
+
3.4. Notices
|
|
199
|
+
|
|
200
|
+
You may not remove or alter the substance of any license notices
|
|
201
|
+
(including copyright notices, patent notices, disclaimers of warranty,
|
|
202
|
+
or limitations of liability) contained within the Source Code Form of
|
|
203
|
+
the Covered Software, except that You may alter any license notices to
|
|
204
|
+
the extent required to remedy known factual inaccuracies.
|
|
205
|
+
|
|
206
|
+
3.5. Application of Additional Terms
|
|
207
|
+
|
|
208
|
+
You may choose to offer, and to charge a fee for, warranty, support,
|
|
209
|
+
indemnity or liability obligations to one or more recipients of Covered
|
|
210
|
+
Software. However, You may do so only on Your own behalf, and not on
|
|
211
|
+
behalf of any Contributor. You must make it absolutely clear that any
|
|
212
|
+
such warranty, support, indemnity, or liability obligation is offered by
|
|
213
|
+
You alone, and You hereby agree to indemnify every Contributor for any
|
|
214
|
+
liability incurred by such Contributor as a result of warranty, support,
|
|
215
|
+
indemnity or liability terms You offer. You may include additional
|
|
216
|
+
disclaimers of warranty and limitations of liability specific to any
|
|
217
|
+
jurisdiction.
|
|
218
|
+
|
|
219
|
+
4. Inability to Comply Due to Statute or Regulation
|
|
220
|
+
---------------------------------------------------
|
|
221
|
+
|
|
222
|
+
If it is impossible for You to comply with any of the terms of this
|
|
223
|
+
License with respect to some or all of the Covered Software due to
|
|
224
|
+
statute, judicial order, or regulation then You must: (a) comply with
|
|
225
|
+
the terms of this License to the maximum extent possible; and (b)
|
|
226
|
+
describe the limitations and the code they affect. Such description must
|
|
227
|
+
be placed in a text file included with all distributions of the Covered
|
|
228
|
+
Software under this License. Except to the extent prohibited by statute
|
|
229
|
+
or regulation, such description must be sufficiently detailed for a
|
|
230
|
+
recipient of ordinary skill to be able to understand it.
|
|
231
|
+
|
|
232
|
+
5. Termination
|
|
233
|
+
--------------
|
|
234
|
+
|
|
235
|
+
5.1. The rights granted under this License will terminate automatically
|
|
236
|
+
if You fail to comply with any of its terms. However, if You become
|
|
237
|
+
compliant, then the rights granted under this License from a particular
|
|
238
|
+
Contributor are reinstated (a) provisionally, unless and until such
|
|
239
|
+
Contributor explicitly and finally terminates Your grants, and (b) on an
|
|
240
|
+
ongoing basis, if such Contributor fails to notify You of the
|
|
241
|
+
non-compliance by some reasonable means prior to 60 days after You have
|
|
242
|
+
come back into compliance. Moreover, Your grants from a particular
|
|
243
|
+
Contributor are reinstated on an ongoing basis if such Contributor
|
|
244
|
+
notifies You of the non-compliance by some reasonable means, this is the
|
|
245
|
+
first time You have received notice of non-compliance with this License
|
|
246
|
+
from such Contributor, and You become compliant prior to 30 days after
|
|
247
|
+
Your receipt of the notice.
|
|
248
|
+
|
|
249
|
+
5.2. If You initiate litigation against any entity by asserting a patent
|
|
250
|
+
infringement claim (excluding declaratory judgment actions,
|
|
251
|
+
counter-claims, and cross-claims) alleging that a Contributor Version
|
|
252
|
+
directly or indirectly infringes any patent, then the rights granted to
|
|
253
|
+
You by any and all Contributors for the Covered Software under Section
|
|
254
|
+
2.1 of this License shall terminate.
|
|
255
|
+
|
|
256
|
+
5.3. In the event of termination under Sections 5.1 or 5.2 above, all
|
|
257
|
+
end user license agreements (excluding distributors and resellers) which
|
|
258
|
+
have been validly granted by You or Your distributors under this License
|
|
259
|
+
prior to termination shall survive termination.
|
|
260
|
+
|
|
261
|
+
************************************************************************
|
|
262
|
+
* *
|
|
263
|
+
* 6. Disclaimer of Warranty *
|
|
264
|
+
* ------------------------- *
|
|
265
|
+
* *
|
|
266
|
+
* Covered Software is provided under this License on an "as is" *
|
|
267
|
+
* basis, without warranty of any kind, either expressed, implied, or *
|
|
268
|
+
* statutory, including, without limitation, warranties that the *
|
|
269
|
+
* Covered Software is free of defects, merchantable, fit for a *
|
|
270
|
+
* particular purpose or non-infringing. The entire risk as to the *
|
|
271
|
+
* quality and performance of the Covered Software is with You. *
|
|
272
|
+
* Should any Covered Software prove defective in any respect, You *
|
|
273
|
+
* (not any Contributor) assume the cost of any necessary servicing, *
|
|
274
|
+
* repair, or correction. This disclaimer of warranty constitutes an *
|
|
275
|
+
* essential part of this License. No use of any Covered Software is *
|
|
276
|
+
* authorized under this License except under this disclaimer. *
|
|
277
|
+
* *
|
|
278
|
+
************************************************************************
|
|
279
|
+
|
|
280
|
+
************************************************************************
|
|
281
|
+
* *
|
|
282
|
+
* 7. Limitation of Liability *
|
|
283
|
+
* -------------------------- *
|
|
284
|
+
* *
|
|
285
|
+
* Under no circumstances and under no legal theory, whether tort *
|
|
286
|
+
* (including negligence), contract, or otherwise, shall any *
|
|
287
|
+
* Contributor, or anyone who distributes Covered Software as *
|
|
288
|
+
* permitted above, be liable to You for any direct, indirect, *
|
|
289
|
+
* special, incidental, or consequential damages of any character *
|
|
290
|
+
* including, without limitation, damages for lost profits, loss of *
|
|
291
|
+
* goodwill, work stoppage, computer failure or malfunction, or any *
|
|
292
|
+
* and all other commercial damages or losses, even if such party *
|
|
293
|
+
* shall have been informed of the possibility of such damages. This *
|
|
294
|
+
* limitation of liability shall not apply to liability for death or *
|
|
295
|
+
* personal injury resulting from such party's negligence to the *
|
|
296
|
+
* extent applicable law prohibits such limitation. Some *
|
|
297
|
+
* jurisdictions do not allow the exclusion or limitation of *
|
|
298
|
+
* incidental or consequential damages, so this exclusion and *
|
|
299
|
+
* limitation may not apply to You. *
|
|
300
|
+
* *
|
|
301
|
+
************************************************************************
|
|
302
|
+
|
|
303
|
+
8. Litigation
|
|
304
|
+
-------------
|
|
305
|
+
|
|
306
|
+
Any litigation relating to this License may be brought only in the
|
|
307
|
+
courts of a jurisdiction where the defendant maintains its principal
|
|
308
|
+
place of business and such litigation shall be governed by laws of that
|
|
309
|
+
jurisdiction, without reference to its conflict-of-law provisions.
|
|
310
|
+
Nothing in this Section shall prevent a party's ability to bring
|
|
311
|
+
cross-claims or counter-claims.
|
|
312
|
+
|
|
313
|
+
9. Miscellaneous
|
|
314
|
+
----------------
|
|
315
|
+
|
|
316
|
+
This License represents the complete agreement concerning the subject
|
|
317
|
+
matter hereof. If any provision of this License is held to be
|
|
318
|
+
unenforceable, such provision shall be reformed only to the extent
|
|
319
|
+
necessary to make it enforceable. Any law or regulation which provides
|
|
320
|
+
that the language of a contract shall be construed against the drafter
|
|
321
|
+
shall not be used to construe this License against a Contributor.
|
|
322
|
+
|
|
323
|
+
10. Versions of the License
|
|
324
|
+
---------------------------
|
|
325
|
+
|
|
326
|
+
10.1. New Versions
|
|
327
|
+
|
|
328
|
+
Mozilla Foundation is the license steward. Except as provided in Section
|
|
329
|
+
10.3, no one other than the license steward has the right to modify or
|
|
330
|
+
publish new versions of this License. Each version will be given a
|
|
331
|
+
distinguishing version number.
|
|
332
|
+
|
|
333
|
+
10.2. Effect of New Versions
|
|
334
|
+
|
|
335
|
+
You may distribute the Covered Software under the terms of the version
|
|
336
|
+
of the License under which You originally received the Covered Software,
|
|
337
|
+
or under the terms of any subsequent version published by the license
|
|
338
|
+
steward.
|
|
339
|
+
|
|
340
|
+
10.3. Modified Versions
|
|
341
|
+
|
|
342
|
+
If you create software not governed by this License, and you want to
|
|
343
|
+
create a new license for such software, you may create and use a
|
|
344
|
+
modified version of this License if you rename the license and remove
|
|
345
|
+
any references to the name of the license steward (except to note that
|
|
346
|
+
such modified license differs from this License).
|
|
347
|
+
|
|
348
|
+
10.4. Distributing Source Code Form that is Incompatible With Secondary
|
|
349
|
+
Licenses
|
|
350
|
+
|
|
351
|
+
If You choose to distribute Source Code Form that is Incompatible With
|
|
352
|
+
Secondary Licenses under the terms of this version of the License, the
|
|
353
|
+
notice described in Exhibit B of this License must be attached.
|
|
354
|
+
|
|
355
|
+
Exhibit A - Source Code Form License Notice
|
|
356
|
+
-------------------------------------------
|
|
357
|
+
|
|
358
|
+
This Source Code Form is subject to the terms of the Mozilla Public
|
|
359
|
+
License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
360
|
+
file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
361
|
+
|
|
362
|
+
If it is not possible or desirable to put the notice in a particular
|
|
363
|
+
file, then You may include the notice in a location (such as a LICENSE
|
|
364
|
+
file in a relevant directory) where a recipient would be likely to look
|
|
365
|
+
for such a notice.
|
|
366
|
+
|
|
367
|
+
You may add additional accurate notices of copyright ownership.
|
|
368
|
+
|
|
369
|
+
Exhibit B - "Incompatible With Secondary Licenses" Notice
|
|
370
|
+
---------------------------------------------------------
|
|
371
|
+
|
|
372
|
+
This Source Code Form is "Incompatible With Secondary Licenses", as
|
|
373
|
+
defined by the Mozilla Public License, v. 2.0.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: mcbookshelf
|
|
3
|
+
Version: 3.0.0
|
|
4
|
+
Summary: Scripts for Bookshelf and the Github pipeline.
|
|
5
|
+
Author-Email: Bookshelf Contributors <contact@gunivers.net>
|
|
6
|
+
License: MPL-2.0
|
|
7
|
+
Requires-Python: >=3.12
|
|
8
|
+
Requires-Dist: beet>=0.109.4
|
|
9
|
+
Requires-Dist: click>=8.1.8
|
|
10
|
+
Requires-Dist: colorama>=0.4.6
|
|
11
|
+
Requires-Dist: pydantic>=2.11.1
|
|
12
|
+
Requires-Dist: requests>=2.32.3
|
|
13
|
+
Requires-Dist: lectern>=0.34.0
|
|
14
|
+
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"""Bookshelf is a modular library for building Minecraft datapacks.
|
|
2
|
+
|
|
3
|
+
It provides a wide range of modules that can be used individually,
|
|
4
|
+
giving developers the flexibility to pick only the features they need.
|
|
5
|
+
"""
|
|
6
|
+
from bookshelf.definitions import MC_VERSIONS, VERSION
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
def version() -> str:
|
|
10
|
+
"""Get the current version of Bookshelf."""
|
|
11
|
+
return VERSION
|
|
12
|
+
|
|
13
|
+
def mc_versions() -> str:
|
|
14
|
+
"""Get Minecraft versions compatible with the current Bookshelf version."""
|
|
15
|
+
return MC_VERSIONS[0] \
|
|
16
|
+
if len(MC_VERSIONS) == 1 \
|
|
17
|
+
else f"{MC_VERSIONS[0]}-{MC_VERSIONS[-1]}"
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
from collections.abc import Callable
|
|
2
|
+
from functools import cache
|
|
3
|
+
|
|
4
|
+
from beet import Context, subproject
|
|
5
|
+
|
|
6
|
+
from bookshelf.definitions import MODULES_DIR
|
|
7
|
+
|
|
8
|
+
__path__ = ""
|
|
9
|
+
|
|
10
|
+
@cache
|
|
11
|
+
def __getattr__(name: str) -> Callable[[Context], None]:
|
|
12
|
+
def plugin(ctx: Context) -> None:
|
|
13
|
+
"""Require a bundle of modules."""
|
|
14
|
+
config = {"directory": f"{MODULES_DIR}/@{name}", "extend": "module.json"}
|
|
15
|
+
ctx.require(subproject(config))
|
|
16
|
+
return plugin
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Commands for the Bookshelf Library."""
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import shutil
|
|
2
|
+
import subprocess
|
|
3
|
+
|
|
4
|
+
import click
|
|
5
|
+
|
|
6
|
+
from bookshelf.definitions import DOC_DIR, EXAMPLES_DIR
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
@click.group()
|
|
10
|
+
def docs() -> None:
|
|
11
|
+
"""Documentation-related commands."""
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
@docs.command()
|
|
15
|
+
@click.argument("output", required=False)
|
|
16
|
+
def build(output: str | None = None) -> None:
|
|
17
|
+
"""Build static HTML documentation."""
|
|
18
|
+
sphinx = shutil.which("sphinx-build")
|
|
19
|
+
if not sphinx:
|
|
20
|
+
error_msg = "The 'sphinx-build' command was not found."
|
|
21
|
+
raise FileNotFoundError(error_msg)
|
|
22
|
+
|
|
23
|
+
subprocess.run(
|
|
24
|
+
[sphinx, ".", output if output else "_build"],
|
|
25
|
+
check=True,
|
|
26
|
+
cwd=DOC_DIR,
|
|
27
|
+
)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
@docs.command()
|
|
31
|
+
@click.argument("output", required=False)
|
|
32
|
+
def watch(output: str | None = None) -> None:
|
|
33
|
+
"""Build and serve live documentation."""
|
|
34
|
+
try:
|
|
35
|
+
sphinx = shutil.which("sphinx-autobuild")
|
|
36
|
+
if not sphinx:
|
|
37
|
+
error_msg = "The 'sphinx-autobuild' command was not found."
|
|
38
|
+
raise FileNotFoundError(error_msg)
|
|
39
|
+
|
|
40
|
+
subprocess.run(
|
|
41
|
+
[sphinx, ".", output if output else "_build", "--watch", f"{EXAMPLES_DIR}"],
|
|
42
|
+
check=True,
|
|
43
|
+
cwd=DOC_DIR,
|
|
44
|
+
)
|
|
45
|
+
|
|
46
|
+
except KeyboardInterrupt:
|
|
47
|
+
click.echo("\nExiting sphinx-autobuild…")
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
import time
|
|
2
|
+
from pathlib import Path
|
|
3
|
+
|
|
4
|
+
import click
|
|
5
|
+
from beet import PackConfig, Project, ProjectConfig
|
|
6
|
+
from beet.toolchain.commands import error_handler
|
|
7
|
+
|
|
8
|
+
from bookshelf.definitions import (
|
|
9
|
+
BUILD_DIR,
|
|
10
|
+
EXAMPLES_DIR,
|
|
11
|
+
ROOT_DIR,
|
|
12
|
+
)
|
|
13
|
+
from bookshelf.logger import log_step
|
|
14
|
+
|
|
15
|
+
original_read_text = Path.read_text
|
|
16
|
+
|
|
17
|
+
def utf8_safe_read_text(
|
|
18
|
+
self: Path,
|
|
19
|
+
encoding: str | None = "utf-8",
|
|
20
|
+
errors: str | None = "replace",
|
|
21
|
+
) -> str:
|
|
22
|
+
"""Safely read UTF8 files."""
|
|
23
|
+
return original_read_text(self, encoding=encoding, errors=errors)
|
|
24
|
+
|
|
25
|
+
Path.read_text = utf8_safe_read_text # type: ignore[method-assign]
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
@click.group()
|
|
29
|
+
def examples() -> None:
|
|
30
|
+
"""Examples-related commands."""
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
@examples.command()
|
|
34
|
+
@click.argument("examples", nargs=-1)
|
|
35
|
+
def build(examples: tuple[str, ...]) -> None:
|
|
36
|
+
"""Build the specified examples."""
|
|
37
|
+
with log_step("🔨 Building project…"):
|
|
38
|
+
Project(create_config(
|
|
39
|
+
examples=examples,
|
|
40
|
+
output=BUILD_DIR,
|
|
41
|
+
)).build()
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
@examples.command()
|
|
45
|
+
@click.argument("examples", nargs=-1)
|
|
46
|
+
def watch(examples: tuple[str, ...]) -> None:
|
|
47
|
+
"""Watch for changes in specified examples and rebuild them."""
|
|
48
|
+
with log_step("🔨 Watching project…") as logger:
|
|
49
|
+
config = create_config(
|
|
50
|
+
examples=examples,
|
|
51
|
+
output=BUILD_DIR,
|
|
52
|
+
)
|
|
53
|
+
project = Project(config.copy().resolve(ROOT_DIR))
|
|
54
|
+
|
|
55
|
+
for changes in project.watch(0.5):
|
|
56
|
+
filename, action = next(iter(changes.items()))
|
|
57
|
+
|
|
58
|
+
logger.info("%s %s", click.style(
|
|
59
|
+
time.strftime("%H:%M:%S"),
|
|
60
|
+
fg="green",
|
|
61
|
+
bold=True,
|
|
62
|
+
), (
|
|
63
|
+
f"{action.capitalize()}: {filename}"
|
|
64
|
+
if changes == {filename: action} else
|
|
65
|
+
f"{len(changes)} changes detected…"
|
|
66
|
+
))
|
|
67
|
+
|
|
68
|
+
with error_handler(format_padding=1):
|
|
69
|
+
project.resolved_config = config.resolve(ROOT_DIR)
|
|
70
|
+
project.build()
|
|
71
|
+
|
|
72
|
+
logger.info("%s Finished build!", click.style(
|
|
73
|
+
time.strftime("%H:%M:%S"),
|
|
74
|
+
fg="green",
|
|
75
|
+
bold=True,
|
|
76
|
+
))
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
def create_config(
|
|
80
|
+
examples: tuple[str, ...] | None = None,
|
|
81
|
+
output: Path | None = None,
|
|
82
|
+
) -> ProjectConfig:
|
|
83
|
+
"""Create a configuration for the project."""
|
|
84
|
+
return ProjectConfig(
|
|
85
|
+
broadcast=[EXAMPLES_DIR / f"{example}.md" for example in examples or ["*"]], # type: ignore[arg-type]
|
|
86
|
+
data_pack=PackConfig(),
|
|
87
|
+
resource_pack=PackConfig(),
|
|
88
|
+
require=["lectern.contrib.require"],
|
|
89
|
+
pipeline=["lectern"],
|
|
90
|
+
meta={
|
|
91
|
+
"lectern": {
|
|
92
|
+
"load": ".",
|
|
93
|
+
},
|
|
94
|
+
},
|
|
95
|
+
output=output,
|
|
96
|
+
).resolve(ROOT_DIR)
|