minecraft-datapack-language 15.4.28__tar.gz → 15.4.29__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.
- minecraft_datapack_language-15.4.29/.cursor/rules/aispec.mdc +9 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/.github/workflows/ci.yml +49 -44
- minecraft_datapack_language-15.4.29/PKG-INFO +266 -0
- minecraft_datapack_language-15.4.29/README.md +245 -0
- minecraft_datapack_language-15.4.29/dist.zip +0 -0
- minecraft_datapack_language-15.4.29/docs/_data/version.yml +3 -0
- minecraft_datapack_language-15.4.29/docs/_docs/language-reference.md +1477 -0
- minecraft_datapack_language-15.4.29/minecraft_datapack_language/__init__.py +27 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/minecraft_datapack_language/_version.py +3 -3
- minecraft_datapack_language-15.4.29/minecraft_datapack_language/ast_nodes.py +179 -0
- minecraft_datapack_language-15.4.29/minecraft_datapack_language/mdl_compiler.py +470 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/minecraft_datapack_language/mdl_errors.py +14 -0
- minecraft_datapack_language-15.4.29/minecraft_datapack_language/mdl_lexer.py +624 -0
- minecraft_datapack_language-15.4.29/minecraft_datapack_language/mdl_parser.py +573 -0
- minecraft_datapack_language-15.4.29/minecraft_datapack_language.egg-info/PKG-INFO +266 -0
- minecraft_datapack_language-15.4.29/minecraft_datapack_language.egg-info/SOURCES.txt +347 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/pyproject.toml +1 -1
- minecraft_datapack_language-15.4.29/test_complex_scenarios.py +238 -0
- minecraft_datapack_language-15.4.29/test_comprehensive_end_to_end.py +426 -0
- minecraft_datapack_language-15.4.29/vscode-extension/README.md +250 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/vscode-extension/language-configuration.json +3 -5
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/vscode-extension/package.json +5 -5
- minecraft_datapack_language-15.4.29/vscode-extension/snippets/mdl.json +247 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/vscode-extension/src/extension.ts +82 -71
- minecraft_datapack_language-15.4.29/vscode-extension/syntaxes/mdl.tmLanguage.json +303 -0
- minecraft_datapack_language-15.4.28/.cursor/rules/aispec.mdc +0 -12
- minecraft_datapack_language-15.4.28/CORE_FEATURES_GUIDE.md +0 -209
- minecraft_datapack_language-15.4.28/DEVELOPMENT.md +0 -199
- minecraft_datapack_language-15.4.28/MDL_AI_SPEC_SHEET.md +0 -257
- minecraft_datapack_language-15.4.28/MDL_LANGUAGE_SPEC.md +0 -408
- minecraft_datapack_language-15.4.28/PKG-INFO +0 -1274
- minecraft_datapack_language-15.4.28/README.md +0 -1253
- minecraft_datapack_language-15.4.28/dist.zip +0 -0
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/conditional_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/conditional_demo_else_3.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/conditional_demo_if_3.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/conditional_demo_if_3_else_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/conditional_demo_if_3_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/countdown.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/custom_commands.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/hello.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/increment_global.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/increment_player.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/inner.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/load.mcfunction +0 -14
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/loop_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/main.mcfunction +0 -8
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/phase_2.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/reset.mcfunction +0 -5
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/scoreboard_demo.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/show_scores.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/start_game.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/start_game_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/start_game_if_5.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/test_countdown_while_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/test_loop_demo_while_2.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/test_main_while_2.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/test_scoreboard_demo_while_3.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/test_start_game_while_4.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/tick.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/tick_if_1.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/variable_demo.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/weapon_effects.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/weapon_effects_else_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/basic_hello/function/weapon_effects_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/conditional_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/conditional_demo_else_3.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/conditional_demo_if_3.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/conditional_demo_if_3_else_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/conditional_demo_if_3_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/countdown.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/custom_commands.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/hello.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/increment_global.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/increment_player.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/inner.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/load.mcfunction +0 -14
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/loop_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/main.mcfunction +0 -8
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/phase_2.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/reset.mcfunction +0 -5
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/scoreboard_demo.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/show_scores.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/start_game.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/start_game_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/start_game_if_5.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/test_countdown_while_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/test_loop_demo_while_2.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/test_main_while_2.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/test_scoreboard_demo_while_3.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/test_start_game_while_4.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/tick.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/tick_if_1.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/variable_demo.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/weapon_effects.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/weapon_effects_else_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/comprehensive/function/weapon_effects_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/conditional_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/conditional_demo_else_3.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/conditional_demo_if_3.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/conditional_demo_if_3_else_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/conditional_demo_if_3_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/countdown.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/custom_commands.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/hello.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/increment_global.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/increment_player.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/inner.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/load.mcfunction +0 -14
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/loop_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/main.mcfunction +0 -8
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/phase_2.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/reset.mcfunction +0 -5
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/scoreboard_demo.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/show_scores.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/start_game.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/start_game_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/start_game_if_5.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/test_countdown_while_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/test_loop_demo_while_2.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/test_main_while_2.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/test_scoreboard_demo_while_3.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/test_start_game_while_4.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/tick.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/tick_if_1.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/variable_demo.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/weapon_effects.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/weapon_effects_else_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/example/function/weapon_effects_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/conditional_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/conditional_demo_else_3.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/conditional_demo_if_3.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/conditional_demo_if_3_else_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/conditional_demo_if_3_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/countdown.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/custom_commands.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/hello.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/increment_global.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/increment_player.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/inner.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/load.mcfunction +0 -14
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/loop_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/main.mcfunction +0 -8
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/phase_2.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/reset.mcfunction +0 -5
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/scoreboard_demo.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/show_scores.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/start_game.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/start_game_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/start_game_if_5.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/test_countdown_while_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/test_loop_demo_while_2.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/test_main_while_2.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/test_scoreboard_demo_while_3.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/test_start_game_while_4.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/tick.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/tick_if_1.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/variable_demo.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/weapon_effects.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/weapon_effects_else_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/hello_world/function/weapon_effects_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/minecraft/tags/function/load.json +0 -14
- minecraft_datapack_language-15.4.28/dist_final/data/minecraft/tags/function/tick.json +0 -5
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/conditional_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/conditional_demo_else_3.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/conditional_demo_if_3.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/conditional_demo_if_3_else_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/conditional_demo_if_3_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/countdown.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/custom_commands.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/hello.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/increment_global.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/increment_player.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/inner.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/load.mcfunction +0 -14
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/loop_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/main.mcfunction +0 -8
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/phase_2.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/reset.mcfunction +0 -5
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/scoreboard_demo.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/show_scores.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/start_game.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/start_game_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/start_game_if_5.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/test_countdown_while_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/test_loop_demo_while_2.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/test_main_while_2.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/test_scoreboard_demo_while_3.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/test_start_game_while_4.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/tick.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/tick_if_1.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/variable_demo.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/weapon_effects.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/weapon_effects_else_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/raw_commands/function/weapon_effects_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/conditional_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/conditional_demo_else_3.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/conditional_demo_if_3.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/conditional_demo_if_3_else_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/conditional_demo_if_3_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/countdown.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/custom_commands.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/hello.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/increment_global.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/increment_player.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/inner.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/load.mcfunction +0 -14
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/loop_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/main.mcfunction +0 -8
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/phase_2.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/reset.mcfunction +0 -5
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/scoreboard_demo.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/show_scores.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/start_game.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/start_game_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/start_game_if_5.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/test_countdown_while_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/test_loop_demo_while_2.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/test_main_while_2.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/test_scoreboard_demo_while_3.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/test_start_game_while_4.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/tick.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/tick_if_1.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/variable_demo.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/weapon_effects.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/weapon_effects_else_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/registry/function/weapon_effects_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/conditional_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/conditional_demo_else_3.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/conditional_demo_if_3.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/conditional_demo_if_3_else_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/conditional_demo_if_3_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/countdown.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/custom_commands.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/hello.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/increment_global.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/increment_player.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/inner.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/load.mcfunction +0 -14
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/loop_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/main.mcfunction +0 -8
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/phase_2.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/reset.mcfunction +0 -5
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/scoreboard_demo.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/show_scores.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/start_game.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/start_game_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/start_game_if_5.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/test_countdown_while_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/test_loop_demo_while_2.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/test_main_while_2.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/test_scoreboard_demo_while_3.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/test_start_game_while_4.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/tick.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/tick_if_1.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/variable_demo.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/weapon_effects.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/weapon_effects_else_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/scoped_calls/function/weapon_effects_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/conditional_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/conditional_demo_else_3.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/conditional_demo_if_3.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/conditional_demo_if_3_else_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/conditional_demo_if_3_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/countdown.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/custom_commands.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/hello.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/increment_global.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/increment_player.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/inner.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/load.mcfunction +0 -14
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/loop_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/main.mcfunction +0 -8
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/phase_2.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/reset.mcfunction +0 -5
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/scoreboard_demo.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/show_scores.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/start_game.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/start_game_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/start_game_if_5.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/test_countdown_while_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/test_loop_demo_while_2.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/test_main_while_2.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/test_scoreboard_demo_while_3.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/test_start_game_while_4.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/tick.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/tick_if_1.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/variable_demo.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/weapon_effects.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/weapon_effects_else_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/test/function/weapon_effects_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/conditional_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/conditional_demo_else_3.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/conditional_demo_if_3.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/conditional_demo_if_3_else_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/conditional_demo_if_3_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/countdown.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/custom_commands.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/hello.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/increment_global.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/increment_player.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/inner.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/load.mcfunction +0 -14
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/loop_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/main.mcfunction +0 -8
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/phase_2.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/reset.mcfunction +0 -5
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/scoreboard_demo.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/show_scores.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/start_game.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/start_game_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/start_game_if_5.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/test_countdown_while_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/test_loop_demo_while_2.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/test_main_while_2.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/test_scoreboard_demo_while_3.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/test_start_game_while_4.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/tick.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/tick_if_1.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/variable_demo.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/weapon_effects.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/weapon_effects_else_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/variables/function/weapon_effects_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/conditional_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/conditional_demo_else_3.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/conditional_demo_if_3.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/conditional_demo_if_3_else_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/conditional_demo_if_3_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/countdown.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/custom_commands.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/hello.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/increment_global.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/increment_player.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/inner.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/load.mcfunction +0 -14
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/loop_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/main.mcfunction +0 -8
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/phase_2.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/reset.mcfunction +0 -5
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/scoreboard_demo.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/show_scores.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/start_game.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/start_game_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/start_game_if_5.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/test_countdown_while_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/test_loop_demo_while_2.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/test_main_while_2.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/test_scoreboard_demo_while_3.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/test_start_game_while_4.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/tick.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/tick_if_1.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/variable_demo.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/weapon_effects.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/weapon_effects_else_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/data/while_loops/function/weapon_effects_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_final/pack.mcmeta +0 -6
- minecraft_datapack_language-15.4.28/dist_final.zip +0 -0
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/conditional_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/conditional_demo_else_3.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/conditional_demo_if_3.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/conditional_demo_if_3_else_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/conditional_demo_if_3_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/countdown.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/custom_commands.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/hello.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/increment_global.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/increment_player.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/init.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/inner.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/load.mcfunction +0 -14
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/loop_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/main.mcfunction +0 -8
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/phase_2.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/reset.mcfunction +0 -5
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/scoreboard_demo.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/show_scores.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/start_game.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/start_game_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/start_game_if_5.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/test_countdown_while_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/test_loop_demo_while_2.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/test_main_while_2.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/test_scoreboard_demo_while_3.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/test_start_game_while_4.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/tick.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/tick_if_1.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/update.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/variable_demo.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/weapon_effects.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/weapon_effects_else_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/basic_hello/function/weapon_effects_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/conditional_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/conditional_demo_else_3.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/conditional_demo_if_3.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/conditional_demo_if_3_else_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/conditional_demo_if_3_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/countdown.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/custom_commands.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/hello.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/increment_global.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/increment_player.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/init.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/inner.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/load.mcfunction +0 -14
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/loop_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/main.mcfunction +0 -8
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/phase_2.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/reset.mcfunction +0 -5
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/scoreboard_demo.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/show_scores.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/start_game.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/start_game_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/start_game_if_5.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/test_countdown_while_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/test_loop_demo_while_2.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/test_main_while_2.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/test_scoreboard_demo_while_3.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/test_start_game_while_4.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/tick.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/tick_if_1.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/update.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/variable_demo.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/weapon_effects.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/weapon_effects_else_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/comprehensive/function/weapon_effects_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/conditional_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/conditional_demo_else_3.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/conditional_demo_if_3.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/conditional_demo_if_3_else_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/conditional_demo_if_3_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/countdown.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/custom_commands.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/hello.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/increment_global.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/increment_player.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/init.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/inner.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/load.mcfunction +0 -14
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/loop_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/main.mcfunction +0 -8
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/phase_2.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/reset.mcfunction +0 -5
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/scoreboard_demo.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/show_scores.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/start_game.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/start_game_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/start_game_if_5.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/test_countdown_while_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/test_loop_demo_while_2.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/test_main_while_2.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/test_scoreboard_demo_while_3.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/test_start_game_while_4.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/tick.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/tick_if_1.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/update.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/variable_demo.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/weapon_effects.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/weapon_effects_else_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/example/function/weapon_effects_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/conditional_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/conditional_demo_else_3.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/conditional_demo_if_3.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/conditional_demo_if_3_else_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/conditional_demo_if_3_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/countdown.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/custom_commands.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/hello.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/increment_global.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/increment_player.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/init.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/inner.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/load.mcfunction +0 -14
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/loop_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/main.mcfunction +0 -8
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/phase_2.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/reset.mcfunction +0 -5
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/scoreboard_demo.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/show_scores.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/start_game.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/start_game_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/start_game_if_5.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/test_countdown_while_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/test_loop_demo_while_2.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/test_main_while_2.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/test_scoreboard_demo_while_3.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/test_start_game_while_4.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/tick.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/tick_if_1.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/update.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/variable_demo.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/weapon_effects.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/weapon_effects_else_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/hello_world/function/weapon_effects_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/minecraft/tags/function/load.json +0 -14
- minecraft_datapack_language-15.4.28/dist_test/data/minecraft/tags/function/tick.json +0 -5
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/conditional_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/conditional_demo_else_3.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/conditional_demo_if_3.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/conditional_demo_if_3_else_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/conditional_demo_if_3_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/countdown.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/custom_commands.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/hello.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/increment_global.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/increment_player.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/init.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/inner.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/load.mcfunction +0 -14
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/loop_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/main.mcfunction +0 -8
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/phase_2.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/reset.mcfunction +0 -5
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/scoreboard_demo.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/show_scores.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/start_game.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/start_game_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/start_game_if_5.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/test_countdown_while_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/test_loop_demo_while_2.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/test_main_while_2.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/test_scoreboard_demo_while_3.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/test_start_game_while_4.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/tick.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/tick_if_1.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/update.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/variable_demo.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/weapon_effects.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/weapon_effects_else_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/raw_commands/function/weapon_effects_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/conditional_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/conditional_demo_else_3.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/conditional_demo_if_3.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/conditional_demo_if_3_else_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/conditional_demo_if_3_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/countdown.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/custom_commands.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/hello.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/increment_global.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/increment_player.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/init.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/inner.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/load.mcfunction +0 -14
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/loop_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/main.mcfunction +0 -8
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/phase_2.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/reset.mcfunction +0 -5
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/scoreboard_demo.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/show_scores.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/start_game.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/start_game_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/start_game_if_5.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/test_countdown_while_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/test_loop_demo_while_2.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/test_main_while_2.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/test_scoreboard_demo_while_3.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/test_start_game_while_4.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/tick.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/tick_if_1.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/update.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/variable_demo.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/weapon_effects.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/weapon_effects_else_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/registry/function/weapon_effects_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/conditional_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/conditional_demo_else_3.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/conditional_demo_if_3.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/conditional_demo_if_3_else_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/conditional_demo_if_3_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/countdown.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/custom_commands.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/hello.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/increment_global.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/increment_player.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/init.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/inner.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/load.mcfunction +0 -14
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/loop_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/main.mcfunction +0 -8
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/phase_2.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/reset.mcfunction +0 -5
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/scoreboard_demo.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/show_scores.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/start_game.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/start_game_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/start_game_if_5.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/test_countdown_while_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/test_loop_demo_while_2.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/test_main_while_2.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/test_scoreboard_demo_while_3.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/test_start_game_while_4.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/tick.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/tick_if_1.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/update.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/variable_demo.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/weapon_effects.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/weapon_effects_else_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/scoped_calls/function/weapon_effects_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/conditional_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/conditional_demo_else_3.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/conditional_demo_if_3.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/conditional_demo_if_3_else_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/conditional_demo_if_3_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/countdown.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/custom_commands.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/hello.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/increment_global.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/increment_player.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/init.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/inner.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/load.mcfunction +0 -14
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/loop_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/main.mcfunction +0 -8
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/phase_2.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/reset.mcfunction +0 -5
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/scoreboard_demo.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/show_scores.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/start_game.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/start_game_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/start_game_if_5.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/test_countdown_while_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/test_loop_demo_while_2.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/test_main_while_2.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/test_scoreboard_demo_while_3.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/test_start_game_while_4.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/tick.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/tick_if_1.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/update.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/variable_demo.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/weapon_effects.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/weapon_effects_else_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/test/function/weapon_effects_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/conditional_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/conditional_demo_else_3.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/conditional_demo_if_3.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/conditional_demo_if_3_else_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/conditional_demo_if_3_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/countdown.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/custom_commands.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/hello.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/increment_global.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/increment_player.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/init.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/inner.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/load.mcfunction +0 -14
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/loop_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/main.mcfunction +0 -8
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/phase_2.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/reset.mcfunction +0 -5
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/scoreboard_demo.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/show_scores.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/start_game.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/start_game_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/start_game_if_5.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/test_countdown_while_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/test_loop_demo_while_2.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/test_main_while_2.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/test_scoreboard_demo_while_3.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/test_start_game_while_4.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/tick.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/tick_if_1.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/update.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/variable_demo.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/weapon_effects.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/weapon_effects_else_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/variables/function/weapon_effects_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/conditional_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/conditional_demo_else_3.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/conditional_demo_if_3.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/conditional_demo_if_3_else_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/conditional_demo_if_3_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/countdown.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/custom_commands.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/hello.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/increment_global.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/increment_player.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/init.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/inner.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/load.mcfunction +0 -14
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/loop_demo.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/main.mcfunction +0 -8
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/phase_2.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/reset.mcfunction +0 -5
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/scoreboard_demo.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/show_scores.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/start_game.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/start_game_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/start_game_if_5.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/test_countdown_while_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/test_loop_demo_while_2.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/test_main_while_2.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/test_scoreboard_demo_while_3.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/test_start_game_while_4.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/tick.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/tick_if_1.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/update.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/variable_demo.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/weapon_effects.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/weapon_effects_else_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/data/while_loops/function/weapon_effects_if_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/dist_test/pack.mcmeta +0 -6
- minecraft_datapack_language-15.4.28/dist_test.zip +0 -0
- minecraft_datapack_language-15.4.28/docs/_data/version.yml +0 -3
- minecraft_datapack_language-15.4.28/docs/_docs/language-reference.md +0 -389
- minecraft_datapack_language-15.4.28/minecraft_datapack_language/__init__.py +0 -12
- minecraft_datapack_language-15.4.28/minecraft_datapack_language/ast_nodes.py +0 -151
- minecraft_datapack_language-15.4.28/minecraft_datapack_language/cli.py +0 -159
- minecraft_datapack_language-15.4.28/minecraft_datapack_language/cli_build.py +0 -1292
- minecraft_datapack_language-15.4.28/minecraft_datapack_language/cli_check.py +0 -155
- minecraft_datapack_language-15.4.28/minecraft_datapack_language/cli_colors.py +0 -264
- minecraft_datapack_language-15.4.28/minecraft_datapack_language/cli_help.py +0 -508
- minecraft_datapack_language-15.4.28/minecraft_datapack_language/cli_new.py +0 -300
- minecraft_datapack_language-15.4.28/minecraft_datapack_language/cli_utils.py +0 -276
- minecraft_datapack_language-15.4.28/minecraft_datapack_language/expression_processor.py +0 -352
- minecraft_datapack_language-15.4.28/minecraft_datapack_language/linter.py +0 -409
- minecraft_datapack_language-15.4.28/minecraft_datapack_language/mdl_lexer_js.py +0 -754
- minecraft_datapack_language-15.4.28/minecraft_datapack_language/mdl_parser_js.py +0 -1049
- minecraft_datapack_language-15.4.28/minecraft_datapack_language/pack.py +0 -758
- minecraft_datapack_language-15.4.28/minecraft_datapack_language.egg-info/PKG-INFO +0 -1274
- minecraft_datapack_language-15.4.28/minecraft_datapack_language.egg-info/SOURCES.txt +0 -1317
- minecraft_datapack_language-15.4.28/test_color_project/README.md +0 -116
- minecraft_datapack_language-15.4.28/test_color_project/main.mdl +0 -9
- minecraft_datapack_language-15.4.28/test_colors_final/README.md +0 -122
- minecraft_datapack_language-15.4.28/test_colors_final/main.mdl +0 -72
- minecraft_datapack_language-15.4.28/test_complex_output.zip +0 -0
- minecraft_datapack_language-15.4.28/test_examples/01_basic_hello_world.mdl +0 -11
- minecraft_datapack_language-15.4.28/test_examples/02_variables_and_scopes.mdl +0 -28
- minecraft_datapack_language-15.4.28/test_examples/03_scoped_function_calls.mdl +0 -31
- minecraft_datapack_language-15.4.28/test_examples/04_while_loops.mdl +0 -32
- minecraft_datapack_language-15.4.28/test_examples/05_raw_commands.mdl +0 -30
- minecraft_datapack_language-15.4.28/test_examples/06_comprehensive_example.mdl +0 -68
- minecraft_datapack_language-15.4.28/test_examples/test_output/basic_hello/data/basic_hello/function/load.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/test_examples/test_output/basic_hello/data/basic_hello/function/main.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/test_examples/test_output/basic_hello/data/minecraft/tags/function/load.json +0 -7
- minecraft_datapack_language-15.4.28/test_examples/test_output/basic_hello/pack.mcmeta +0 -6
- minecraft_datapack_language-15.4.28/test_examples/test_output/basic_hello.zip +0 -0
- minecraft_datapack_language-15.4.28/test_examples/test_output/raw_commands/data/minecraft/tags/function/load.json +0 -7
- minecraft_datapack_language-15.4.28/test_examples/test_output/raw_commands/data/raw_commands/function/custom_commands.mcfunction +0 -6
- minecraft_datapack_language-15.4.28/test_examples/test_output/raw_commands/data/raw_commands/function/load.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/test_examples/test_output/raw_commands/data/raw_commands/function/main.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/test_examples/test_output/raw_commands/pack.mcmeta +0 -6
- minecraft_datapack_language-15.4.28/test_examples/test_output/raw_commands.zip +0 -0
- minecraft_datapack_language-15.4.28/test_examples/test_output/scoped_calls/data/minecraft/tags/function/load.json +0 -7
- minecraft_datapack_language-15.4.28/test_examples/test_output/scoped_calls/data/scoped_calls/function/increment_global.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/test_examples/test_output/scoped_calls/data/scoped_calls/function/increment_player.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/test_examples/test_output/scoped_calls/data/scoped_calls/function/load.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/test_examples/test_output/scoped_calls/data/scoped_calls/function/main.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/test_examples/test_output/scoped_calls/data/scoped_calls/function/show_scores.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/test_examples/test_output/scoped_calls/pack.mcmeta +0 -6
- minecraft_datapack_language-15.4.28/test_examples/test_output/scoped_calls.zip +0 -0
- minecraft_datapack_language-15.4.28/test_examples/test_output/variables/data/minecraft/tags/function/load.json +0 -7
- minecraft_datapack_language-15.4.28/test_examples/test_output/variables/data/variables/function/load.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/test_examples/test_output/variables/data/variables/function/main.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/test_examples/test_output/variables/data/variables/function/reset.mcfunction +0 -5
- minecraft_datapack_language-15.4.28/test_examples/test_output/variables/pack.mcmeta +0 -6
- minecraft_datapack_language-15.4.28/test_examples/test_output/variables.zip +0 -0
- minecraft_datapack_language-15.4.28/test_examples/test_output/while_loops/data/minecraft/tags/function/load.json +0 -7
- minecraft_datapack_language-15.4.28/test_examples/test_output/while_loops/data/while_loops/function/countdown.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/test_examples/test_output/while_loops/data/while_loops/function/load.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/test_examples/test_output/while_loops/data/while_loops/function/main.mcfunction +0 -5
- minecraft_datapack_language-15.4.28/test_examples/test_output/while_loops/data/while_loops/function/test_countdown_while_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/test_examples/test_output/while_loops/data/while_loops/function/test_main_while_2.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/test_examples/test_output/while_loops/data/while_loops/function/while_loops_countdown_while_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/test_examples/test_output/while_loops/data/while_loops/function/while_loops_main_while_2.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/test_examples/test_output/while_loops/pack.mcmeta +0 -6
- minecraft_datapack_language-15.4.28/test_examples/test_output/while_loops.zip +0 -0
- minecraft_datapack_language-15.4.28/test_examples/test_output_basic_hello_fixed/data/basic_hello/function/load.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/test_examples/test_output_basic_hello_fixed/data/basic_hello/function/main.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/test_examples/test_output_basic_hello_fixed/data/minecraft/tags/function/load.json +0 -7
- minecraft_datapack_language-15.4.28/test_examples/test_output_basic_hello_fixed/pack.mcmeta +0 -6
- minecraft_datapack_language-15.4.28/test_examples/test_output_basic_hello_fixed.zip +0 -0
- minecraft_datapack_language-15.4.28/test_examples/test_output_scoped_fixed/data/minecraft/tags/function/load.json +0 -7
- minecraft_datapack_language-15.4.28/test_examples/test_output_scoped_fixed/data/scoped_calls/function/increment_global.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/test_examples/test_output_scoped_fixed/data/scoped_calls/function/increment_player.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/test_examples/test_output_scoped_fixed/data/scoped_calls/function/load.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/test_examples/test_output_scoped_fixed/data/scoped_calls/function/main.mcfunction +0 -5
- minecraft_datapack_language-15.4.28/test_examples/test_output_scoped_fixed/data/scoped_calls/function/show_scores.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/test_examples/test_output_scoped_fixed/pack.mcmeta +0 -6
- minecraft_datapack_language-15.4.28/test_examples/test_output_scoped_fixed.zip +0 -0
- minecraft_datapack_language-15.4.28/test_examples/test_output_scoped_fixed_v2/data/minecraft/tags/function/load.json +0 -7
- minecraft_datapack_language-15.4.28/test_examples/test_output_scoped_fixed_v2/data/scoped_calls/function/increment_global.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/test_examples/test_output_scoped_fixed_v2/data/scoped_calls/function/increment_player.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/test_examples/test_output_scoped_fixed_v2/data/scoped_calls/function/load.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/test_examples/test_output_scoped_fixed_v2/data/scoped_calls/function/main.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/test_examples/test_output_scoped_fixed_v2/data/scoped_calls/function/show_scores.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/test_examples/test_output_scoped_fixed_v2/pack.mcmeta +0 -6
- minecraft_datapack_language-15.4.28/test_examples/test_output_scoped_fixed_v2.zip +0 -0
- minecraft_datapack_language-15.4.28/test_examples/test_output_validation.py +0 -301
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed/data/minecraft/tags/function/load.json +0 -7
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed/data/variables/function/load.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed/data/variables/function/main.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed/data/variables/function/reset.mcfunction +0 -5
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed/pack.mcmeta +0 -6
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed.zip +0 -0
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v10/data/minecraft/tags/function/load.json +0 -7
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v10/data/variables/function/load.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v10/data/variables/function/main.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v10/data/variables/function/reset.mcfunction +0 -5
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v10/pack.mcmeta +0 -6
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v10.zip +0 -0
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v2/data/minecraft/tags/function/load.json +0 -7
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v2/data/variables/function/load.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v2/data/variables/function/main.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v2/data/variables/function/reset.mcfunction +0 -5
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v2/pack.mcmeta +0 -6
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v2.zip +0 -0
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v3/data/minecraft/tags/function/load.json +0 -7
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v3/data/variables/function/load.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v3/data/variables/function/main.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v3/data/variables/function/reset.mcfunction +0 -5
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v3/pack.mcmeta +0 -6
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v3.zip +0 -0
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v4/data/minecraft/tags/function/load.json +0 -7
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v4/data/variables/function/load.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v4/data/variables/function/main.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v4/data/variables/function/reset.mcfunction +0 -5
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v4/pack.mcmeta +0 -6
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v4.zip +0 -0
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v5/data/minecraft/tags/function/load.json +0 -7
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v5/data/variables/function/load.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v5/data/variables/function/main.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v5/data/variables/function/reset.mcfunction +0 -5
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v5/pack.mcmeta +0 -6
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v5.zip +0 -0
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v6/data/minecraft/tags/function/load.json +0 -7
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v6/data/variables/function/load.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v6/data/variables/function/main.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v6/data/variables/function/reset.mcfunction +0 -5
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v6/pack.mcmeta +0 -6
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v6.zip +0 -0
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v8/data/minecraft/tags/function/load.json +0 -7
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v8/data/variables/function/load.mcfunction +0 -4
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v8/data/variables/function/main.mcfunction +0 -7
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v8/data/variables/function/reset.mcfunction +0 -5
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v8/pack.mcmeta +0 -6
- minecraft_datapack_language-15.4.28/test_examples/test_output_variables_fixed_v8.zip +0 -0
- minecraft_datapack_language-15.4.28/test_examples/test_output_while_loops_fixed/data/minecraft/tags/function/load.json +0 -7
- minecraft_datapack_language-15.4.28/test_examples/test_output_while_loops_fixed/data/while_loops/function/countdown.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/test_examples/test_output_while_loops_fixed/data/while_loops/function/load.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/test_examples/test_output_while_loops_fixed/data/while_loops/function/main.mcfunction +0 -5
- minecraft_datapack_language-15.4.28/test_examples/test_output_while_loops_fixed/data/while_loops/function/test_countdown_while_1.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/test_examples/test_output_while_loops_fixed/data/while_loops/function/test_main_while_2.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/test_examples/test_output_while_loops_fixed/pack.mcmeta +0 -6
- minecraft_datapack_language-15.4.28/test_examples/test_output_while_loops_fixed.zip +0 -0
- minecraft_datapack_language-15.4.28/test_final_explicit_output.zip +0 -0
- minecraft_datapack_language-15.4.28/test_final_output.zip +0 -0
- minecraft_datapack_language-15.4.28/test_output.zip +0 -0
- minecraft_datapack_language-15.4.28/test_output_complex.zip +0 -0
- minecraft_datapack_language-15.4.28/test_output_scope.zip +0 -0
- minecraft_datapack_language-15.4.28/test_project/README.md +0 -122
- minecraft_datapack_language-15.4.28/test_project/main.mdl +0 -72
- minecraft_datapack_language-15.4.28/test_scoped_output.zip +0 -0
- minecraft_datapack_language-15.4.28/test_scoped_output2.zip +0 -0
- minecraft_datapack_language-15.4.28/test_scoped_output_final.zip +0 -0
- minecraft_datapack_language-15.4.28/test_single/data/basic_hello/function/load.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/test_single/data/basic_hello/function/main.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/test_single/data/minecraft/tags/function/load.json +0 -7
- minecraft_datapack_language-15.4.28/test_single/pack.mcmeta +0 -6
- minecraft_datapack_language-15.4.28/test_single.zip +0 -0
- minecraft_datapack_language-15.4.28/test_single_debug/data/basic_hello/function/load.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/test_single_debug/data/basic_hello/function/main.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/test_single_debug/data/minecraft/tags/function/load.json +0 -7
- minecraft_datapack_language-15.4.28/test_single_debug/pack.mcmeta +0 -6
- minecraft_datapack_language-15.4.28/test_single_debug.zip +0 -0
- minecraft_datapack_language-15.4.28/test_single_debug2/data/basic_hello/function/load.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/test_single_debug2/data/basic_hello/function/main.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/test_single_debug2/data/minecraft/tags/function/load.json +0 -7
- minecraft_datapack_language-15.4.28/test_single_debug2/pack.mcmeta +0 -6
- minecraft_datapack_language-15.4.28/test_single_debug2.zip +0 -0
- minecraft_datapack_language-15.4.28/test_single_final/data/basic_hello/function/load.mcfunction +0 -1
- minecraft_datapack_language-15.4.28/test_single_final/data/basic_hello/function/main.mcfunction +0 -3
- minecraft_datapack_language-15.4.28/test_single_final/data/minecraft/tags/function/load.json +0 -6
- minecraft_datapack_language-15.4.28/test_single_final/pack.mcmeta +0 -6
- minecraft_datapack_language-15.4.28/test_single_final.zip +0 -0
- minecraft_datapack_language-15.4.28/test_user_output.zip +0 -0
- minecraft_datapack_language-15.4.28/tests/__init__.py +0 -1
- minecraft_datapack_language-15.4.28/tests/test_basic.py +0 -440
- minecraft_datapack_language-15.4.28/tests/test_cli_comprehensive.py +0 -486
- minecraft_datapack_language-15.4.28/tests/test_comprehensive.py +0 -817
- minecraft_datapack_language-15.4.28/tests/test_comprehensive_edge_cases.py +0 -884
- minecraft_datapack_language-15.4.28/tests/test_comprehensive_features.py +0 -805
- minecraft_datapack_language-15.4.28/tests/test_io.py +0 -387
- minecraft_datapack_language-15.4.28/vscode-extension/README.md +0 -322
- minecraft_datapack_language-15.4.28/vscode-extension/snippets/mdl.json +0 -434
- minecraft_datapack_language-15.4.28/vscode-extension/syntaxes/mdl.tmLanguage.json +0 -148
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/.github/actions/mdl-compile/action.yml +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/.github/workflows/docs.yml +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/.github/workflows/pypi.yml +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/.github/workflows/release.yml +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/.github/workflows/test-examples.yml +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/.github/workflows/update-website-version.yml +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/.gitignore +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/CONDITIONALS_IMPLEMENTATION.md +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/LICENSE +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/Makefile +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/advancements/diamond_sword.json +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/advancements/first_spell.json +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/advancements/other_advancement.json +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/advancements/test_advancement.json +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/complex_scopes/function/main_else_8.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/complex_scopes/function/main_if_8.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_basic_if_if_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_basic_if_if_3.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_basic_if_if_4.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_complex_if_if_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_complex_if_if_3.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_complex_if_if_4.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_complex_if_if_5.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_control_complex_expressions_if_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_control_complex_expressions_if_4.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_control_variable_substitution_if_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_control_with_raw_if_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_control_with_scopes_if_5.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_control_with_tellraw_else_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_control_with_tellraw_if_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_control_with_tellraw_if_4.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_if_else_else_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_if_else_else_3.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_if_else_else_4.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_if_else_if_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_if_else_if_3.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_if_else_if_4.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_nested_if_else_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_nested_if_else_3.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_nested_if_else_3_else_0.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_nested_if_else_3_if_0.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_nested_if_if_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_nested_if_if_2_else_0.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_nested_if_if_2_if_0.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_nested_if_if_2_if_0_else_0.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_nested_if_if_2_if_0_if_0.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_nested_if_if_3.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_nested_if_if_3_else_0.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_nested_if_if_3_if_0.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/control_test/function/main_if_0.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/control_test/function/main_while_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/control_test/function/main_while_body_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/if_test/function/main_else_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/if_test/function/main_if_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/conditional_demo_else_3.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/conditional_demo_if_3.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/conditional_demo_if_3_else_0.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/conditional_demo_if_3_if_0.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/countdown_while_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/countdown_while_body_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/increase_tick_per_player_if_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/increase_tick_per_player_if_1_if_0.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/loop_demo_while_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/loop_demo_while_body_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/loop_demo_while_body_2_else_0.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/loop_demo_while_body_2_if_0.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/loop_demo_while_body_2_if_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/main_else_0.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/main_else_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/main_else_5.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/main_if_0.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/main_if_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/main_if_5.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/main_while_0.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/main_while_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/main_while_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/main_while_6.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/main_while_7.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/main_while_body_0.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/main_while_body_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/main_while_body_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/main_while_body_6.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/main_while_body_7.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/scoreboard_demo_while_3.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/scoreboard_demo_while_body_3.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/scoreboard_demo_while_body_3_if_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/start_game_if_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/start_game_if_5.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/start_game_while_4.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/start_game_while_body_4.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_basic_if_if_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_basic_if_if_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_basic_if_if_3.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_basic_while_while_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_basic_while_while_4.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_basic_while_while_body_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_basic_while_while_body_4.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_if_if_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_if_if_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_if_if_3.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_if_if_4.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_nested_control_while_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_nested_control_while_body_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_nested_control_while_body_2_else_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_nested_control_while_body_2_else_1_if_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_nested_control_while_body_2_if_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_nested_control_while_body_2_if_1_if_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_nested_control_while_body_2_if_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_scope_scenarios_if_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_scope_scenarios_if_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_scope_scenarios_if_3.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_scope_scenarios_if_4.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_while_while_3.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_while_while_6.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_while_while_body_3.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_while_while_body_6.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_complex_expressions_if_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_complex_expressions_if_3.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_complex_expressions_while_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_complex_expressions_while_body_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_error_handling_if_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_error_handling_if_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_error_handling_while_3.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_error_handling_while_body_3.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_performance_while_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_performance_while_4.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_performance_while_body_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_performance_while_body_2_if_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_performance_while_body_4.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_performance_while_body_4_while_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_performance_while_body_4_while_body_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_scoped_functions_if_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_scoped_functions_if_3.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_scoped_functions_while_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_scoped_functions_while_body_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_variable_substitution_if_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_variable_substitution_if_3.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_variable_substitution_while_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_variable_substitution_while_body_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_assignments_if_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_assignments_if_3.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_assignments_while_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_assignments_while_body_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_functions_if_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_functions_if_3.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_functions_while_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_functions_while_body_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_raw_if_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_raw_while_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_raw_while_body_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_scopes_if_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_scopes_if_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_scopes_if_3.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_scopes_if_4.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_tellraw_else_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_tellraw_if_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_tellraw_if_3.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_tellraw_while_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_tellraw_while_body_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_if_else_else_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_if_else_else_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_if_else_else_3.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_if_else_if_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_if_else_if_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_if_else_if_3.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_main_while_0.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_main_while_body_0.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_nested_if_else_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_nested_if_else_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_nested_if_else_2_else_0.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_nested_if_else_2_if_0.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_nested_if_if_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_nested_if_if_1_else_0.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_nested_if_if_1_if_0.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_nested_if_if_1_if_0_else_0.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_nested_if_if_1_if_0_if_0.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_nested_if_if_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_nested_if_if_2_else_0.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_nested_if_if_2_if_0.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_scope_conditionals_if_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_scope_conditionals_if_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_scope_conditionals_if_3.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_scope_conditionals_while_4.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_scope_conditionals_while_5.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_scope_conditionals_while_body_4.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_scope_conditionals_while_body_5.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_scope_interactions_if_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_scope_interactions_if_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_scope_interactions_if_3.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_while_break_while_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_while_break_while_body_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_while_break_while_body_2_if_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/test_while_break_while_body_2_if_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/tick_if_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/tick_if_2.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/tick_if_2_while_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/tick_if_2_while_body_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/weapon_effects_else_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test/function/weapon_effects_if_1.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test_final_template_fixed/function/main_else_8.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/test_final_template_fixed/function/main_if_8.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/while_test/function/main_while_0.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/data/while_test/function/main_while_body_0.mcfunction +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/docs/.env +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/docs/404.html +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/docs/Gemfile +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/docs/README.md +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/docs/_config.yml +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/docs/_docs/cli-reference.md +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/docs/_docs/contributing.md +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/docs/_docs/docs-hub.md +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/docs/_docs/documentation.md +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/docs/_docs/examples.md +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/docs/_docs/getting-started.md +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/docs/_docs/multi-file-projects.md +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/docs/_docs/python-api.md +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/docs/_docs/vscode-extension.md +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/docs/_includes/head-custom.html +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/docs/_includes/navigation.html +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/docs/_layouts/default.html +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/docs/_layouts/page.html +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/docs/_plugins/test_version.rb +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/docs/_plugins/version_reader.rb +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/docs/assets/css/style.css +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/docs/docs.md +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/docs/downloads.md +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/docs/icons/favicon-16.png +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/docs/icons/favicon-32.png +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/docs/icons/favicon-48.png +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/docs/icons/favicon-64.png +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/docs/icons/icon-1024.png +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/docs/icons/icon-128.png +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/docs/icons/icon-256.png +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/docs/icons/icon-512.png +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/docs/icons/icon-64.png +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/docs/index.md +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/examples/hello_world.mdl +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/examples/scope_examples.mdl +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/examples/simple_counter.mdl +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/icons/favicon-16.png +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/icons/favicon-32.png +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/icons/favicon-48.png +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/icons/favicon-64.png +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/icons/icon-1024.png +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/icons/icon-128.png +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/icons/icon-256.png +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/icons/icon-512.png +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/icons/icon-64.png +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/item_modifiers/diamond_sword.json +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/item_modifiers/enchant_tool.json +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/item_modifiers/test_item_modifier.json +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/loot_tables/diamond_sword.json +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/loot_tables/epic_loot.json +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/loot_tables/main_loot.json +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/loot_tables/test_loot.json +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/minecraft_datapack_language/dir_map.py +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/minecraft_datapack_language/mdl_linter.py +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/minecraft_datapack_language/utils.py +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/minecraft_datapack_language.egg-info/dependency_links.txt +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/minecraft_datapack_language.egg-info/entry_points.txt +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/minecraft_datapack_language.egg-info/requires.txt +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/minecraft_datapack_language.egg-info/top_level.txt +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/my_awesome_pack/README.md +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/my_awesome_pack/minecraft_datapack_language.mdl +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/predicates/diamond_sword.json +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/predicates/has_mana.json +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/predicates/other_predicate.json +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/predicates/test_predicate.json +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/recipes/custom_pickaxe.json +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/recipes/diamond_sword.json +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/recipes/first.json +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/recipes/inlet.json +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/recipes/main_recipe.json +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/recipes/outlet.json +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/recipes/pipe.json +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/recipes/second.json +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/recipes/test_recipe.json +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/recipes/wrench.json +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/scripts/UpdateMDL.sh +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/scripts/bootstrap.ps1 +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/scripts/bootstrap.sh +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/scripts/build_pkg.ps1 +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/scripts/build_pkg.sh +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/scripts/dev_build.ps1 +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/scripts/dev_build.sh +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/scripts/dev_setup.ps1 +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/scripts/dev_setup.sh +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/scripts/git-bash/bootstrap-gitbash.sh +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/scripts/git-bash/build_pkg-gitbash.sh +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/scripts/git-bash/test_cli-gitbash.sh +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/scripts/release.sh +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/scripts/test_cli.ps1 +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/scripts/test_cli.sh +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/scripts/test_dev.ps1 +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/scripts/test_dev.sh +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/scripts/update_docs.sh +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/scripts/update_version_info.sh +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/setup.cfg +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/structures/diamond_sword.json +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/structures/test_structure.json +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/structures/workshop.json +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/test_all_registry.mdl +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/vscode-extension/icons/favicon-16.png +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/vscode-extension/icons/favicon-32.png +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/vscode-extension/icons/favicon-48.png +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/vscode-extension/icons/favicon-64.png +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/vscode-extension/icons/icon-1024.png +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/vscode-extension/icons/icon-128.png +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/vscode-extension/icons/icon-256.png +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/vscode-extension/icons/icon-512.png +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/vscode-extension/package-lock.json +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/vscode-extension/themes/mdl-color-theme.json +0 -0
- {minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/vscode-extension/tsconfig.json +0 -0
@@ -0,0 +1,9 @@
|
|
1
|
+
---
|
2
|
+
description: AI SPEC SHEET
|
3
|
+
globs:
|
4
|
+
alwaysApply: true
|
5
|
+
---
|
6
|
+
|
7
|
+
- Use the MDL_AI_SPEC_SHEET (living spec doc) to remember the important context. Update it if it is out of date. Do NOT forget to follow the development cycle.
|
8
|
+
- Test locally via python, not necessarily using mdl.
|
9
|
+
- Use ./scripts/UpdateMDL.sh to update mdl after making changes
|
{minecraft_datapack_language-15.4.28 → minecraft_datapack_language-15.4.29}/.github/workflows/ci.yml
RENAMED
@@ -45,29 +45,29 @@ jobs:
|
|
45
45
|
- name: Test MDL Parser Import
|
46
46
|
run: |
|
47
47
|
echo "Testing MDL parser import..."
|
48
|
-
python -c "from minecraft_datapack_language.
|
48
|
+
python -c "from minecraft_datapack_language.mdl_parser import MDLParser; print('[+] MDL parser imported successfully')"
|
49
49
|
|
50
50
|
- name: Test MDL Lexer Import
|
51
51
|
run: |
|
52
52
|
echo "Testing MDL lexer import..."
|
53
|
-
python -c "from minecraft_datapack_language.
|
53
|
+
python -c "from minecraft_datapack_language.mdl_lexer import MDLLexer; print('[+] MDL lexer imported successfully')"
|
54
54
|
|
55
|
-
- name: Test
|
55
|
+
- name: Test AST Nodes Import
|
56
56
|
run: |
|
57
|
-
echo "Testing
|
58
|
-
python -c "from minecraft_datapack_language.
|
57
|
+
echo "Testing AST nodes import..."
|
58
|
+
python -c "from minecraft_datapack_language.ast_nodes import Program, PackDeclaration; print('[+] AST nodes imported successfully')"
|
59
59
|
|
60
|
-
- name: Test
|
60
|
+
- name: Test Error Classes Import
|
61
61
|
run: |
|
62
|
-
echo "Testing
|
63
|
-
python -c "from minecraft_datapack_language.
|
62
|
+
echo "Testing error classes import..."
|
63
|
+
python -c "from minecraft_datapack_language.mdl_errors import MDLLexerError, MDLParserError; print('[+] Error classes imported successfully')"
|
64
64
|
|
65
65
|
- name: Test Python API
|
66
66
|
run: |
|
67
67
|
echo "Testing Python API functionality..."
|
68
68
|
python - <<'PY'
|
69
69
|
from minecraft_datapack_language import Pack
|
70
|
-
p = Pack('test', 'Test pack',
|
70
|
+
p = Pack('test', 'Test pack', 15)
|
71
71
|
ns = p.namespace('test')
|
72
72
|
ns.function('test_func', 'say Hello World')
|
73
73
|
print('[+] Python API test passed')
|
@@ -76,15 +76,16 @@ jobs:
|
|
76
76
|
- name: Test MDL Parsing
|
77
77
|
run: |
|
78
78
|
echo "Testing MDL parsing..."
|
79
|
-
python -c "from minecraft_datapack_language.
|
79
|
+
python -c "from minecraft_datapack_language.mdl_parser import MDLParser; print('[+] MDL parser imported successfully')"
|
80
80
|
|
81
81
|
- name: Test Variable System
|
82
82
|
run: |
|
83
83
|
echo "Testing variable system..."
|
84
84
|
python - <<'PY'
|
85
|
-
from minecraft_datapack_language.
|
86
|
-
|
87
|
-
|
85
|
+
from minecraft_datapack_language.mdl_parser import MDLParser
|
86
|
+
parser = MDLParser()
|
87
|
+
test_code = 'var num test_var<@s> = 0;'
|
88
|
+
ast = parser.parse(test_code)
|
88
89
|
print('[+] Variable system test passed')
|
89
90
|
PY
|
90
91
|
|
@@ -92,9 +93,10 @@ jobs:
|
|
92
93
|
run: |
|
93
94
|
echo "Testing control flow..."
|
94
95
|
python - <<'PY'
|
95
|
-
from minecraft_datapack_language.
|
96
|
-
|
97
|
-
|
96
|
+
from minecraft_datapack_language.mdl_parser import MDLParser
|
97
|
+
parser = MDLParser()
|
98
|
+
test_code = 'if $test<@s>$ > 0 { say "test"; }'
|
99
|
+
ast = parser.parse(test_code)
|
98
100
|
print('[+] Control flow test passed')
|
99
101
|
PY
|
100
102
|
|
@@ -102,9 +104,10 @@ jobs:
|
|
102
104
|
run: |
|
103
105
|
echo "Testing while loops..."
|
104
106
|
python - <<'PY'
|
105
|
-
from minecraft_datapack_language.
|
106
|
-
|
107
|
-
|
107
|
+
from minecraft_datapack_language.mdl_parser import MDLParser
|
108
|
+
parser = MDLParser()
|
109
|
+
test_code = 'while $counter<@s>$ < 10 { counter<@s> = $counter<@s>$ + 1; }'
|
110
|
+
ast = parser.parse(test_code)
|
108
111
|
print('[+] While loops test passed')
|
109
112
|
PY
|
110
113
|
|
@@ -112,9 +115,10 @@ jobs:
|
|
112
115
|
run: |
|
113
116
|
echo "Testing error handling..."
|
114
117
|
python - <<'PY'
|
115
|
-
from minecraft_datapack_language.
|
118
|
+
from minecraft_datapack_language.mdl_parser import MDLParser
|
119
|
+
parser = MDLParser()
|
116
120
|
try:
|
117
|
-
|
121
|
+
parser.parse('invalid syntax {')
|
118
122
|
print('[-] Should have failed')
|
119
123
|
except:
|
120
124
|
print('[+] Error handling test passed')
|
@@ -129,38 +133,34 @@ jobs:
|
|
129
133
|
run: |
|
130
134
|
echo "Testing basic MDL file parsing..."
|
131
135
|
python - <<'PY'
|
132
|
-
from minecraft_datapack_language.
|
136
|
+
from minecraft_datapack_language.mdl_parser import MDLParser
|
137
|
+
parser = MDLParser()
|
133
138
|
test_code = '''
|
134
|
-
pack "test" "Test pack"
|
139
|
+
pack "test" "Test pack" 15;
|
135
140
|
namespace "test";
|
136
|
-
var num counter = 0;
|
137
|
-
function
|
138
|
-
counter = 0;
|
139
|
-
while
|
140
|
-
counter = $counter
|
141
|
-
say "Counter: $counter
|
141
|
+
var num counter<@s> = 0;
|
142
|
+
function test:main<@s> {
|
143
|
+
counter<@s> = 0;
|
144
|
+
while $counter<@s>$ < 5 {
|
145
|
+
counter<@s> = $counter<@s>$ + 1;
|
146
|
+
say "Counter: $counter<@s>$";
|
142
147
|
}
|
143
148
|
}
|
144
|
-
on_tick
|
149
|
+
on_tick test:main;
|
145
150
|
'''
|
146
|
-
ast =
|
151
|
+
ast = parser.parse(test_code)
|
147
152
|
print('[+] Basic MDL file test passed')
|
148
153
|
PY
|
149
154
|
|
150
|
-
- name: Run
|
155
|
+
- name: Run Comprehensive End-to-End Tests
|
151
156
|
run: |
|
152
|
-
echo "Running
|
153
|
-
python
|
157
|
+
echo "Running comprehensive end-to-end tests..."
|
158
|
+
python test_comprehensive_end_to_end.py
|
154
159
|
|
155
|
-
- name: Run
|
160
|
+
- name: Run Complex Scenario Tests
|
156
161
|
run: |
|
157
|
-
echo "Running
|
158
|
-
python
|
159
|
-
|
160
|
-
- name: Run Comprehensive Test Suite
|
161
|
-
run: |
|
162
|
-
echo "Running comprehensive test suite..."
|
163
|
-
python -m pytest tests/test_comprehensive_features.py -v --tb=short
|
162
|
+
echo "Running complex scenario tests..."
|
163
|
+
python test_complex_scenarios.py
|
164
164
|
|
165
165
|
- name: Upload dist artifacts
|
166
166
|
uses: actions/upload-artifact@v4
|
@@ -191,9 +191,14 @@ jobs:
|
|
191
191
|
- name: Run All Comprehensive Tests
|
192
192
|
run: |
|
193
193
|
echo "Running comprehensive feature tests..."
|
194
|
-
python
|
194
|
+
python test_comprehensive_end_to_end.py
|
195
|
+
|
196
|
+
- name: Run Complex Scenario Tests
|
197
|
+
run: |
|
198
|
+
echo "Running complex scenario tests..."
|
199
|
+
python test_complex_scenarios.py
|
195
200
|
|
196
201
|
- name: Run All Test Suites
|
197
202
|
run: |
|
198
203
|
echo "Running all test suites..."
|
199
|
-
python
|
204
|
+
python test_comprehensive_end_to_end.py && python test_complex_scenarios.py
|
@@ -0,0 +1,266 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: minecraft-datapack-language
|
3
|
+
Version: 15.4.29
|
4
|
+
Summary: Compile MDL language with explicit scoping into a Minecraft datapack (1.21+ ready). Features variables, control flow, error handling, and VS Code extension.
|
5
|
+
Project-URL: Homepage, https://www.mcmdl.com
|
6
|
+
Project-URL: Documentation, https://www.mcmdl.com/docs
|
7
|
+
Project-URL: Repository, https://github.com/aaron777collins/MinecraftDatapackLanguage
|
8
|
+
Project-URL: Bug Tracker, https://github.com/aaron777collins/MinecraftDatapackLanguage/issues
|
9
|
+
Project-URL: VS Code Extension, https://marketplace.visualstudio.com/items?itemName=mdl.minecraft-datapack-language
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
12
|
+
Classifier: Operating System :: OS Independent
|
13
|
+
Requires-Python: >=3.9
|
14
|
+
Description-Content-Type: text/markdown
|
15
|
+
License-File: LICENSE
|
16
|
+
Requires-Dist: mecha>=0.99.0
|
17
|
+
Provides-Extra: dev
|
18
|
+
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
19
|
+
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
|
20
|
+
Dynamic: license-file
|
21
|
+
|
22
|
+
# <img src="https://github.com/aaron777collins/MinecraftDatapackLanguage/raw/main/icons/icon-128.png" width="32" height="32" alt="MDL Icon"> Minecraft Datapack Language (MDL)
|
23
|
+
|
24
|
+
A **modern, scope-aware language** that lets you write Minecraft datapacks with **explicit scoping, variables, control structures, and expressions** that actually work.
|
25
|
+
|
26
|
+
📖 **[View Full Documentation](https://www.mcmdl.com/)** - Complete guides, examples, and API reference
|
27
|
+
📦 **[View on PyPI](https://pypi.org/project/minecraft-datapack-language/)** - Download and install from PyPI
|
28
|
+
🔧 **[VS Code Extension](https://marketplace.visualstudio.com/items?itemName=mdl.minecraft-datapack-language)** - Syntax highlighting, IntelliSense, and snippets
|
29
|
+
|
30
|
+

|
31
|
+

|
32
|
+

|
33
|
+

|
34
|
+

|
35
|
+
|
36
|
+
## 🎯 **MODERN** MDL Language with Explicit Scoping
|
37
|
+
|
38
|
+
**MDL uses a modern, scope-aware language format** with **explicit scoping, control structures, variables, and expressions**:
|
39
|
+
|
40
|
+
### ✨ **MODERN** Features
|
41
|
+
- **🎯 Explicit scoping** with angle brackets `<@s>`, `<@a[team=red]>` for all operations
|
42
|
+
- **📝 Modern comments** using `//` and `/* */`
|
43
|
+
- **🔢 Number variables** with `var num` type (stored in scoreboards)
|
44
|
+
- **🔄 Full control structures** including `if/else`, `while` loops
|
45
|
+
- **💲 Variable substitution** with `$variable<scope>$` syntax
|
46
|
+
- **🧮 Expressions** with arithmetic operations (`+`, `-`, `*`, `/`)
|
47
|
+
- **📦 Namespace system** for modular code organization
|
48
|
+
- **🏷️ Tag system** for all datapack resources (recipes, loot tables, advancements, etc.)
|
49
|
+
- **🎨 VS Code extension** with full IntelliSense and snippets
|
50
|
+
- **🧪 Comprehensive testing** with E2E validation
|
51
|
+
- **📚 Extensive documentation** with examples for every feature
|
52
|
+
|
53
|
+
### 🏗️ Core Features
|
54
|
+
- ✅ **Modern pack format 15** by default for latest Minecraft features
|
55
|
+
- ✅ **Explicit scoping** - every variable operation specifies its scope
|
56
|
+
- ✅ **Real control structures** - `if/else`, `while` loops
|
57
|
+
- ✅ **Number variables** stored in scoreboards with `$variable<scope>$` substitution
|
58
|
+
- ✅ **Expressions** with arithmetic operations and variable substitution
|
59
|
+
- ✅ **Multi-file projects** with automatic merging and dependency resolution
|
60
|
+
- ✅ **Variable optimization** - automatic load function generation for initialization
|
61
|
+
- ✅ **Selector optimization** - proper `@a` usage for system commands
|
62
|
+
- ✅ **Easy hooks** into `minecraft:tick` and `minecraft:load` via function tags
|
63
|
+
- ✅ **Tag support** for `recipe`, `loot_table`, `advancement`, `item_modifier`, `predicate`, and `structure`
|
64
|
+
- ✅ **Raw blocks** for direct Minecraft command injection
|
65
|
+
- ✅ **Say commands** that auto-convert to `tellraw` with JSON formatting
|
66
|
+
|
67
|
+
> **Note**: Version 1.0+ uses **pack_format 15** by default for the modern MDL syntax.
|
68
|
+
|
69
|
+
---
|
70
|
+
|
71
|
+
## 🚀 Install
|
72
|
+
|
73
|
+
### Option A — from PyPI (recommended for users)
|
74
|
+
Global, isolated CLI via **pipx**:
|
75
|
+
```bash
|
76
|
+
python3 -m pip install --user pipx
|
77
|
+
python3 -m pipx ensurepath # reopen terminal
|
78
|
+
pipx install minecraft-datapack-language
|
79
|
+
|
80
|
+
mdl --help
|
81
|
+
```
|
82
|
+
|
83
|
+
Virtualenv (if you prefer):
|
84
|
+
```bash
|
85
|
+
python3 -m venv .venv
|
86
|
+
source .venv/bin/activate # Windows: .\.venv\Scripts\Activate.ps1
|
87
|
+
pip install minecraft-datapack-language
|
88
|
+
```
|
89
|
+
|
90
|
+
### Option B — from source (for contributors)
|
91
|
+
```bash
|
92
|
+
# inside the repo
|
93
|
+
python -m pip install -e .
|
94
|
+
```
|
95
|
+
|
96
|
+
---
|
97
|
+
|
98
|
+
## 🔄 Update
|
99
|
+
|
100
|
+
- **pipx**: `pipx upgrade minecraft-datapack-language`
|
101
|
+
- **pip (venv)**: `pip install -U minecraft-datapack-language`
|
102
|
+
- Pin a version: `pipx install "minecraft-datapack-language==<version>"` (replace `<version>` with desired version)
|
103
|
+
|
104
|
+
---
|
105
|
+
|
106
|
+
## 💻 CLI
|
107
|
+
|
108
|
+
### Modern MDL (v1.0+)
|
109
|
+
```bash
|
110
|
+
# Build MDL files
|
111
|
+
mdl build --mdl my_pack/mypack.mdl -o dist --wrapper mypack
|
112
|
+
mdl check my_pack/mypack.mdl
|
113
|
+
|
114
|
+
# Validate generated mcfunction files
|
115
|
+
mdl check my_pack/mypack.mdl
|
116
|
+
|
117
|
+
# Multi-file projects
|
118
|
+
mdl build --mdl my_pack/ -o dist # Build entire directory
|
119
|
+
mdl build --mdl "file1.mdl file2.mdl" -o dist # Build specific files
|
120
|
+
|
121
|
+
# Create new projects
|
122
|
+
mdl new my_awesome_pack
|
123
|
+
```
|
124
|
+
|
125
|
+
### Quick Start
|
126
|
+
```bash
|
127
|
+
# Create a new project
|
128
|
+
mdl new my_first_pack
|
129
|
+
|
130
|
+
# Build it
|
131
|
+
cd my_first_pack
|
132
|
+
mdl build --mdl main.mdl -o dist
|
133
|
+
|
134
|
+
# Check for errors
|
135
|
+
mdl check main.mdl
|
136
|
+
```
|
137
|
+
|
138
|
+
---
|
139
|
+
|
140
|
+
## 📝 Language Examples
|
141
|
+
|
142
|
+
### Basic Structure
|
143
|
+
```mdl
|
144
|
+
pack "MyPack" "My awesome datapack" 15;
|
145
|
+
namespace "game";
|
146
|
+
|
147
|
+
var num player_score<@s> = 0;
|
148
|
+
var num team_score<@a[team=red]> = 0;
|
149
|
+
|
150
|
+
function game:start<@s> {
|
151
|
+
player_score<@s> = 100;
|
152
|
+
say "Welcome! Your score is $player_score<@s>$";
|
153
|
+
}
|
154
|
+
|
155
|
+
on_load game:start<@s>;
|
156
|
+
```
|
157
|
+
|
158
|
+
### Control Structures
|
159
|
+
```mdl
|
160
|
+
function game:check_score<@s> {
|
161
|
+
if $player_score<@s>$ > 10 {
|
162
|
+
say "Great score!";
|
163
|
+
player_score<@s> = $player_score<@s>$ + 5;
|
164
|
+
} else {
|
165
|
+
say "Keep trying!";
|
166
|
+
}
|
167
|
+
|
168
|
+
while $player_score<@s>$ < 100 {
|
169
|
+
player_score<@s> = $player_score<@s>$ + 1;
|
170
|
+
}
|
171
|
+
}
|
172
|
+
```
|
173
|
+
|
174
|
+
### Tags and Resources
|
175
|
+
```mdl
|
176
|
+
// Recipe tags
|
177
|
+
tag recipe "diamond_sword" "recipes/diamond_sword.json";
|
178
|
+
tag loot_table "epic_loot" "loot_tables/epic_loot.json";
|
179
|
+
tag advancement "first_spell" "advancements/first_spell.json";
|
180
|
+
|
181
|
+
// Item modifiers and predicates
|
182
|
+
tag item_modifier "enchanted_tool" "item_modifiers/enchanted_tool.json";
|
183
|
+
tag predicate "has_mana" "predicates/has_mana.json";
|
184
|
+
tag structure "wizard_tower" "structures/wizard_tower.json";
|
185
|
+
```
|
186
|
+
|
187
|
+
### Raw Blocks and Say Commands
|
188
|
+
```mdl
|
189
|
+
function game:special_effect<@s> {
|
190
|
+
$!raw
|
191
|
+
execute as @s run particle minecraft:explosion ~ ~ ~ 1 1 1 0 10
|
192
|
+
execute as @s run playsound minecraft:entity.player.levelup player @s ~ ~ ~ 1 1
|
193
|
+
raw!$
|
194
|
+
|
195
|
+
say "Special effect triggered! Score: $player_score<@s>$";
|
196
|
+
}
|
197
|
+
```
|
198
|
+
|
199
|
+
---
|
200
|
+
|
201
|
+
## 🔧 Development
|
202
|
+
|
203
|
+
### Building from Source
|
204
|
+
```bash
|
205
|
+
git clone https://github.com/aaron777collins/MinecraftDatapackLanguage.git
|
206
|
+
cd MinecraftDatapackLanguage
|
207
|
+
python -m pip install -e .
|
208
|
+
```
|
209
|
+
|
210
|
+
### Running Tests
|
211
|
+
```bash
|
212
|
+
# Run all tests
|
213
|
+
python -m pytest
|
214
|
+
|
215
|
+
# Run specific test file
|
216
|
+
python -m pytest test_comprehensive_end_to_end.py
|
217
|
+
|
218
|
+
# Run with coverage
|
219
|
+
python -m pytest --cov=minecraft_datapack_language
|
220
|
+
```
|
221
|
+
|
222
|
+
### Building the Extension
|
223
|
+
```bash
|
224
|
+
cd vscode-extension
|
225
|
+
npm install
|
226
|
+
npm run compile
|
227
|
+
```
|
228
|
+
|
229
|
+
---
|
230
|
+
|
231
|
+
## 📚 Documentation
|
232
|
+
|
233
|
+
- **[Language Reference](docs/_docs/language-reference.md)** - Complete language specification
|
234
|
+
- **[VS Code Extension](vscode-extension/README.md)** - Extension documentation
|
235
|
+
- **[Examples](examples/)** - Sample projects and code snippets
|
236
|
+
|
237
|
+
---
|
238
|
+
|
239
|
+
## 🤝 Contributing
|
240
|
+
|
241
|
+
We welcome contributions! Please see our [Contributing Guide](CONTRIBUTING.md) for details.
|
242
|
+
|
243
|
+
### Development Setup
|
244
|
+
1. Fork the repository
|
245
|
+
2. Create a feature branch
|
246
|
+
3. Make your changes
|
247
|
+
4. Add tests for new functionality
|
248
|
+
5. Submit a pull request
|
249
|
+
|
250
|
+
---
|
251
|
+
|
252
|
+
## 📄 License
|
253
|
+
|
254
|
+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
255
|
+
|
256
|
+
---
|
257
|
+
|
258
|
+
## 🙏 Acknowledgments
|
259
|
+
|
260
|
+
- Minecraft community for inspiration
|
261
|
+
- Contributors and testers
|
262
|
+
- VS Code team for the excellent extension API
|
263
|
+
|
264
|
+
---
|
265
|
+
|
266
|
+
**Happy coding with MDL! 🎮**
|
@@ -0,0 +1,245 @@
|
|
1
|
+
# <img src="https://github.com/aaron777collins/MinecraftDatapackLanguage/raw/main/icons/icon-128.png" width="32" height="32" alt="MDL Icon"> Minecraft Datapack Language (MDL)
|
2
|
+
|
3
|
+
A **modern, scope-aware language** that lets you write Minecraft datapacks with **explicit scoping, variables, control structures, and expressions** that actually work.
|
4
|
+
|
5
|
+
📖 **[View Full Documentation](https://www.mcmdl.com/)** - Complete guides, examples, and API reference
|
6
|
+
📦 **[View on PyPI](https://pypi.org/project/minecraft-datapack-language/)** - Download and install from PyPI
|
7
|
+
🔧 **[VS Code Extension](https://marketplace.visualstudio.com/items?itemName=mdl.minecraft-datapack-language)** - Syntax highlighting, IntelliSense, and snippets
|
8
|
+
|
9
|
+

|
10
|
+

|
11
|
+

|
12
|
+

|
13
|
+

|
14
|
+
|
15
|
+
## 🎯 **MODERN** MDL Language with Explicit Scoping
|
16
|
+
|
17
|
+
**MDL uses a modern, scope-aware language format** with **explicit scoping, control structures, variables, and expressions**:
|
18
|
+
|
19
|
+
### ✨ **MODERN** Features
|
20
|
+
- **🎯 Explicit scoping** with angle brackets `<@s>`, `<@a[team=red]>` for all operations
|
21
|
+
- **📝 Modern comments** using `//` and `/* */`
|
22
|
+
- **🔢 Number variables** with `var num` type (stored in scoreboards)
|
23
|
+
- **🔄 Full control structures** including `if/else`, `while` loops
|
24
|
+
- **💲 Variable substitution** with `$variable<scope>$` syntax
|
25
|
+
- **🧮 Expressions** with arithmetic operations (`+`, `-`, `*`, `/`)
|
26
|
+
- **📦 Namespace system** for modular code organization
|
27
|
+
- **🏷️ Tag system** for all datapack resources (recipes, loot tables, advancements, etc.)
|
28
|
+
- **🎨 VS Code extension** with full IntelliSense and snippets
|
29
|
+
- **🧪 Comprehensive testing** with E2E validation
|
30
|
+
- **📚 Extensive documentation** with examples for every feature
|
31
|
+
|
32
|
+
### 🏗️ Core Features
|
33
|
+
- ✅ **Modern pack format 15** by default for latest Minecraft features
|
34
|
+
- ✅ **Explicit scoping** - every variable operation specifies its scope
|
35
|
+
- ✅ **Real control structures** - `if/else`, `while` loops
|
36
|
+
- ✅ **Number variables** stored in scoreboards with `$variable<scope>$` substitution
|
37
|
+
- ✅ **Expressions** with arithmetic operations and variable substitution
|
38
|
+
- ✅ **Multi-file projects** with automatic merging and dependency resolution
|
39
|
+
- ✅ **Variable optimization** - automatic load function generation for initialization
|
40
|
+
- ✅ **Selector optimization** - proper `@a` usage for system commands
|
41
|
+
- ✅ **Easy hooks** into `minecraft:tick` and `minecraft:load` via function tags
|
42
|
+
- ✅ **Tag support** for `recipe`, `loot_table`, `advancement`, `item_modifier`, `predicate`, and `structure`
|
43
|
+
- ✅ **Raw blocks** for direct Minecraft command injection
|
44
|
+
- ✅ **Say commands** that auto-convert to `tellraw` with JSON formatting
|
45
|
+
|
46
|
+
> **Note**: Version 1.0+ uses **pack_format 15** by default for the modern MDL syntax.
|
47
|
+
|
48
|
+
---
|
49
|
+
|
50
|
+
## 🚀 Install
|
51
|
+
|
52
|
+
### Option A — from PyPI (recommended for users)
|
53
|
+
Global, isolated CLI via **pipx**:
|
54
|
+
```bash
|
55
|
+
python3 -m pip install --user pipx
|
56
|
+
python3 -m pipx ensurepath # reopen terminal
|
57
|
+
pipx install minecraft-datapack-language
|
58
|
+
|
59
|
+
mdl --help
|
60
|
+
```
|
61
|
+
|
62
|
+
Virtualenv (if you prefer):
|
63
|
+
```bash
|
64
|
+
python3 -m venv .venv
|
65
|
+
source .venv/bin/activate # Windows: .\.venv\Scripts\Activate.ps1
|
66
|
+
pip install minecraft-datapack-language
|
67
|
+
```
|
68
|
+
|
69
|
+
### Option B — from source (for contributors)
|
70
|
+
```bash
|
71
|
+
# inside the repo
|
72
|
+
python -m pip install -e .
|
73
|
+
```
|
74
|
+
|
75
|
+
---
|
76
|
+
|
77
|
+
## 🔄 Update
|
78
|
+
|
79
|
+
- **pipx**: `pipx upgrade minecraft-datapack-language`
|
80
|
+
- **pip (venv)**: `pip install -U minecraft-datapack-language`
|
81
|
+
- Pin a version: `pipx install "minecraft-datapack-language==<version>"` (replace `<version>` with desired version)
|
82
|
+
|
83
|
+
---
|
84
|
+
|
85
|
+
## 💻 CLI
|
86
|
+
|
87
|
+
### Modern MDL (v1.0+)
|
88
|
+
```bash
|
89
|
+
# Build MDL files
|
90
|
+
mdl build --mdl my_pack/mypack.mdl -o dist --wrapper mypack
|
91
|
+
mdl check my_pack/mypack.mdl
|
92
|
+
|
93
|
+
# Validate generated mcfunction files
|
94
|
+
mdl check my_pack/mypack.mdl
|
95
|
+
|
96
|
+
# Multi-file projects
|
97
|
+
mdl build --mdl my_pack/ -o dist # Build entire directory
|
98
|
+
mdl build --mdl "file1.mdl file2.mdl" -o dist # Build specific files
|
99
|
+
|
100
|
+
# Create new projects
|
101
|
+
mdl new my_awesome_pack
|
102
|
+
```
|
103
|
+
|
104
|
+
### Quick Start
|
105
|
+
```bash
|
106
|
+
# Create a new project
|
107
|
+
mdl new my_first_pack
|
108
|
+
|
109
|
+
# Build it
|
110
|
+
cd my_first_pack
|
111
|
+
mdl build --mdl main.mdl -o dist
|
112
|
+
|
113
|
+
# Check for errors
|
114
|
+
mdl check main.mdl
|
115
|
+
```
|
116
|
+
|
117
|
+
---
|
118
|
+
|
119
|
+
## 📝 Language Examples
|
120
|
+
|
121
|
+
### Basic Structure
|
122
|
+
```mdl
|
123
|
+
pack "MyPack" "My awesome datapack" 15;
|
124
|
+
namespace "game";
|
125
|
+
|
126
|
+
var num player_score<@s> = 0;
|
127
|
+
var num team_score<@a[team=red]> = 0;
|
128
|
+
|
129
|
+
function game:start<@s> {
|
130
|
+
player_score<@s> = 100;
|
131
|
+
say "Welcome! Your score is $player_score<@s>$";
|
132
|
+
}
|
133
|
+
|
134
|
+
on_load game:start<@s>;
|
135
|
+
```
|
136
|
+
|
137
|
+
### Control Structures
|
138
|
+
```mdl
|
139
|
+
function game:check_score<@s> {
|
140
|
+
if $player_score<@s>$ > 10 {
|
141
|
+
say "Great score!";
|
142
|
+
player_score<@s> = $player_score<@s>$ + 5;
|
143
|
+
} else {
|
144
|
+
say "Keep trying!";
|
145
|
+
}
|
146
|
+
|
147
|
+
while $player_score<@s>$ < 100 {
|
148
|
+
player_score<@s> = $player_score<@s>$ + 1;
|
149
|
+
}
|
150
|
+
}
|
151
|
+
```
|
152
|
+
|
153
|
+
### Tags and Resources
|
154
|
+
```mdl
|
155
|
+
// Recipe tags
|
156
|
+
tag recipe "diamond_sword" "recipes/diamond_sword.json";
|
157
|
+
tag loot_table "epic_loot" "loot_tables/epic_loot.json";
|
158
|
+
tag advancement "first_spell" "advancements/first_spell.json";
|
159
|
+
|
160
|
+
// Item modifiers and predicates
|
161
|
+
tag item_modifier "enchanted_tool" "item_modifiers/enchanted_tool.json";
|
162
|
+
tag predicate "has_mana" "predicates/has_mana.json";
|
163
|
+
tag structure "wizard_tower" "structures/wizard_tower.json";
|
164
|
+
```
|
165
|
+
|
166
|
+
### Raw Blocks and Say Commands
|
167
|
+
```mdl
|
168
|
+
function game:special_effect<@s> {
|
169
|
+
$!raw
|
170
|
+
execute as @s run particle minecraft:explosion ~ ~ ~ 1 1 1 0 10
|
171
|
+
execute as @s run playsound minecraft:entity.player.levelup player @s ~ ~ ~ 1 1
|
172
|
+
raw!$
|
173
|
+
|
174
|
+
say "Special effect triggered! Score: $player_score<@s>$";
|
175
|
+
}
|
176
|
+
```
|
177
|
+
|
178
|
+
---
|
179
|
+
|
180
|
+
## 🔧 Development
|
181
|
+
|
182
|
+
### Building from Source
|
183
|
+
```bash
|
184
|
+
git clone https://github.com/aaron777collins/MinecraftDatapackLanguage.git
|
185
|
+
cd MinecraftDatapackLanguage
|
186
|
+
python -m pip install -e .
|
187
|
+
```
|
188
|
+
|
189
|
+
### Running Tests
|
190
|
+
```bash
|
191
|
+
# Run all tests
|
192
|
+
python -m pytest
|
193
|
+
|
194
|
+
# Run specific test file
|
195
|
+
python -m pytest test_comprehensive_end_to_end.py
|
196
|
+
|
197
|
+
# Run with coverage
|
198
|
+
python -m pytest --cov=minecraft_datapack_language
|
199
|
+
```
|
200
|
+
|
201
|
+
### Building the Extension
|
202
|
+
```bash
|
203
|
+
cd vscode-extension
|
204
|
+
npm install
|
205
|
+
npm run compile
|
206
|
+
```
|
207
|
+
|
208
|
+
---
|
209
|
+
|
210
|
+
## 📚 Documentation
|
211
|
+
|
212
|
+
- **[Language Reference](docs/_docs/language-reference.md)** - Complete language specification
|
213
|
+
- **[VS Code Extension](vscode-extension/README.md)** - Extension documentation
|
214
|
+
- **[Examples](examples/)** - Sample projects and code snippets
|
215
|
+
|
216
|
+
---
|
217
|
+
|
218
|
+
## 🤝 Contributing
|
219
|
+
|
220
|
+
We welcome contributions! Please see our [Contributing Guide](CONTRIBUTING.md) for details.
|
221
|
+
|
222
|
+
### Development Setup
|
223
|
+
1. Fork the repository
|
224
|
+
2. Create a feature branch
|
225
|
+
3. Make your changes
|
226
|
+
4. Add tests for new functionality
|
227
|
+
5. Submit a pull request
|
228
|
+
|
229
|
+
---
|
230
|
+
|
231
|
+
## 📄 License
|
232
|
+
|
233
|
+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
234
|
+
|
235
|
+
---
|
236
|
+
|
237
|
+
## 🙏 Acknowledgments
|
238
|
+
|
239
|
+
- Minecraft community for inspiration
|
240
|
+
- Contributors and testers
|
241
|
+
- VS Code team for the excellent extension API
|
242
|
+
|
243
|
+
---
|
244
|
+
|
245
|
+
**Happy coding with MDL! 🎮**
|
Binary file
|