minecraft-datapack-language 15.4.27__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.
Files changed (1319) hide show
  1. minecraft_datapack_language-15.4.29/.cursor/rules/aispec.mdc +9 -0
  2. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/.github/workflows/ci.yml +49 -44
  3. minecraft_datapack_language-15.4.29/PKG-INFO +266 -0
  4. minecraft_datapack_language-15.4.29/README.md +245 -0
  5. minecraft_datapack_language-15.4.29/dist.zip +0 -0
  6. minecraft_datapack_language-15.4.29/docs/_data/version.yml +3 -0
  7. minecraft_datapack_language-15.4.29/docs/_docs/language-reference.md +1477 -0
  8. minecraft_datapack_language-15.4.29/minecraft_datapack_language/__init__.py +27 -0
  9. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/minecraft_datapack_language/_version.py +3 -3
  10. minecraft_datapack_language-15.4.29/minecraft_datapack_language/ast_nodes.py +179 -0
  11. minecraft_datapack_language-15.4.29/minecraft_datapack_language/mdl_compiler.py +470 -0
  12. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/minecraft_datapack_language/mdl_errors.py +14 -0
  13. minecraft_datapack_language-15.4.29/minecraft_datapack_language/mdl_lexer.py +624 -0
  14. minecraft_datapack_language-15.4.29/minecraft_datapack_language/mdl_parser.py +573 -0
  15. minecraft_datapack_language-15.4.29/minecraft_datapack_language.egg-info/PKG-INFO +266 -0
  16. minecraft_datapack_language-15.4.29/minecraft_datapack_language.egg-info/SOURCES.txt +347 -0
  17. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/pyproject.toml +1 -1
  18. minecraft_datapack_language-15.4.29/test_complex_scenarios.py +238 -0
  19. minecraft_datapack_language-15.4.29/test_comprehensive_end_to_end.py +426 -0
  20. minecraft_datapack_language-15.4.29/vscode-extension/README.md +250 -0
  21. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/vscode-extension/language-configuration.json +3 -5
  22. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/vscode-extension/package.json +5 -5
  23. minecraft_datapack_language-15.4.29/vscode-extension/snippets/mdl.json +247 -0
  24. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/vscode-extension/src/extension.ts +82 -71
  25. minecraft_datapack_language-15.4.29/vscode-extension/syntaxes/mdl.tmLanguage.json +303 -0
  26. minecraft_datapack_language-15.4.27/.cursor/rules/aispec.mdc +0 -12
  27. minecraft_datapack_language-15.4.27/CORE_FEATURES_GUIDE.md +0 -209
  28. minecraft_datapack_language-15.4.27/DEVELOPMENT.md +0 -199
  29. minecraft_datapack_language-15.4.27/MDL_AI_SPEC_SHEET.md +0 -257
  30. minecraft_datapack_language-15.4.27/MDL_LANGUAGE_SPEC.md +0 -408
  31. minecraft_datapack_language-15.4.27/PKG-INFO +0 -1274
  32. minecraft_datapack_language-15.4.27/README.md +0 -1253
  33. minecraft_datapack_language-15.4.27/dist.zip +0 -0
  34. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/conditional_demo.mcfunction +0 -3
  35. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/conditional_demo_else_3.mcfunction +0 -2
  36. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/conditional_demo_if_3.mcfunction +0 -3
  37. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/conditional_demo_if_3_else_0.mcfunction +0 -3
  38. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/conditional_demo_if_3_if_0.mcfunction +0 -3
  39. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
  40. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
  41. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/countdown.mcfunction +0 -3
  42. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/custom_commands.mcfunction +0 -6
  43. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/hello.mcfunction +0 -3
  44. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/increment_global.mcfunction +0 -3
  45. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/increment_player.mcfunction +0 -3
  46. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/inner.mcfunction +0 -3
  47. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/load.mcfunction +0 -14
  48. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/loop_demo.mcfunction +0 -3
  49. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/main.mcfunction +0 -8
  50. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/phase_2.mcfunction +0 -7
  51. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/reset.mcfunction +0 -5
  52. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/scoreboard_demo.mcfunction +0 -4
  53. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/show_scores.mcfunction +0 -3
  54. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/start_game.mcfunction +0 -7
  55. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/start_game_if_1.mcfunction +0 -3
  56. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/start_game_if_5.mcfunction +0 -3
  57. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/test_countdown_while_1.mcfunction +0 -3
  58. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/test_loop_demo_while_2.mcfunction +0 -6
  59. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
  60. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
  61. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
  62. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/test_main_while_2.mcfunction +0 -3
  63. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/test_scoreboard_demo_while_3.mcfunction +0 -4
  64. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
  65. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/test_start_game_while_4.mcfunction +0 -3
  66. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/tick.mcfunction +0 -3
  67. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/tick_if_1.mcfunction +0 -1
  68. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/variable_demo.mcfunction +0 -7
  69. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/weapon_effects.mcfunction +0 -3
  70. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/weapon_effects_else_1.mcfunction +0 -3
  71. minecraft_datapack_language-15.4.27/dist_final/data/basic_hello/function/weapon_effects_if_1.mcfunction +0 -3
  72. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/conditional_demo.mcfunction +0 -3
  73. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/conditional_demo_else_3.mcfunction +0 -2
  74. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/conditional_demo_if_3.mcfunction +0 -3
  75. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/conditional_demo_if_3_else_0.mcfunction +0 -3
  76. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/conditional_demo_if_3_if_0.mcfunction +0 -3
  77. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
  78. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
  79. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/countdown.mcfunction +0 -3
  80. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/custom_commands.mcfunction +0 -6
  81. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/hello.mcfunction +0 -3
  82. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/increment_global.mcfunction +0 -3
  83. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/increment_player.mcfunction +0 -3
  84. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/inner.mcfunction +0 -3
  85. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/load.mcfunction +0 -14
  86. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/loop_demo.mcfunction +0 -3
  87. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/main.mcfunction +0 -8
  88. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/phase_2.mcfunction +0 -7
  89. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/reset.mcfunction +0 -5
  90. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/scoreboard_demo.mcfunction +0 -4
  91. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/show_scores.mcfunction +0 -3
  92. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/start_game.mcfunction +0 -7
  93. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/start_game_if_1.mcfunction +0 -3
  94. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/start_game_if_5.mcfunction +0 -3
  95. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/test_countdown_while_1.mcfunction +0 -3
  96. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/test_loop_demo_while_2.mcfunction +0 -6
  97. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
  98. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
  99. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
  100. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/test_main_while_2.mcfunction +0 -3
  101. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/test_scoreboard_demo_while_3.mcfunction +0 -4
  102. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
  103. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/test_start_game_while_4.mcfunction +0 -3
  104. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/tick.mcfunction +0 -3
  105. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/tick_if_1.mcfunction +0 -1
  106. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/variable_demo.mcfunction +0 -7
  107. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/weapon_effects.mcfunction +0 -3
  108. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/weapon_effects_else_1.mcfunction +0 -3
  109. minecraft_datapack_language-15.4.27/dist_final/data/comprehensive/function/weapon_effects_if_1.mcfunction +0 -3
  110. minecraft_datapack_language-15.4.27/dist_final/data/example/function/conditional_demo.mcfunction +0 -3
  111. minecraft_datapack_language-15.4.27/dist_final/data/example/function/conditional_demo_else_3.mcfunction +0 -2
  112. minecraft_datapack_language-15.4.27/dist_final/data/example/function/conditional_demo_if_3.mcfunction +0 -3
  113. minecraft_datapack_language-15.4.27/dist_final/data/example/function/conditional_demo_if_3_else_0.mcfunction +0 -3
  114. minecraft_datapack_language-15.4.27/dist_final/data/example/function/conditional_demo_if_3_if_0.mcfunction +0 -3
  115. minecraft_datapack_language-15.4.27/dist_final/data/example/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
  116. minecraft_datapack_language-15.4.27/dist_final/data/example/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
  117. minecraft_datapack_language-15.4.27/dist_final/data/example/function/countdown.mcfunction +0 -3
  118. minecraft_datapack_language-15.4.27/dist_final/data/example/function/custom_commands.mcfunction +0 -6
  119. minecraft_datapack_language-15.4.27/dist_final/data/example/function/hello.mcfunction +0 -3
  120. minecraft_datapack_language-15.4.27/dist_final/data/example/function/increment_global.mcfunction +0 -3
  121. minecraft_datapack_language-15.4.27/dist_final/data/example/function/increment_player.mcfunction +0 -3
  122. minecraft_datapack_language-15.4.27/dist_final/data/example/function/inner.mcfunction +0 -3
  123. minecraft_datapack_language-15.4.27/dist_final/data/example/function/load.mcfunction +0 -14
  124. minecraft_datapack_language-15.4.27/dist_final/data/example/function/loop_demo.mcfunction +0 -3
  125. minecraft_datapack_language-15.4.27/dist_final/data/example/function/main.mcfunction +0 -8
  126. minecraft_datapack_language-15.4.27/dist_final/data/example/function/phase_2.mcfunction +0 -7
  127. minecraft_datapack_language-15.4.27/dist_final/data/example/function/reset.mcfunction +0 -5
  128. minecraft_datapack_language-15.4.27/dist_final/data/example/function/scoreboard_demo.mcfunction +0 -4
  129. minecraft_datapack_language-15.4.27/dist_final/data/example/function/show_scores.mcfunction +0 -3
  130. minecraft_datapack_language-15.4.27/dist_final/data/example/function/start_game.mcfunction +0 -7
  131. minecraft_datapack_language-15.4.27/dist_final/data/example/function/start_game_if_1.mcfunction +0 -3
  132. minecraft_datapack_language-15.4.27/dist_final/data/example/function/start_game_if_5.mcfunction +0 -3
  133. minecraft_datapack_language-15.4.27/dist_final/data/example/function/test_countdown_while_1.mcfunction +0 -3
  134. minecraft_datapack_language-15.4.27/dist_final/data/example/function/test_loop_demo_while_2.mcfunction +0 -6
  135. minecraft_datapack_language-15.4.27/dist_final/data/example/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
  136. minecraft_datapack_language-15.4.27/dist_final/data/example/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
  137. minecraft_datapack_language-15.4.27/dist_final/data/example/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
  138. minecraft_datapack_language-15.4.27/dist_final/data/example/function/test_main_while_2.mcfunction +0 -3
  139. minecraft_datapack_language-15.4.27/dist_final/data/example/function/test_scoreboard_demo_while_3.mcfunction +0 -4
  140. minecraft_datapack_language-15.4.27/dist_final/data/example/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
  141. minecraft_datapack_language-15.4.27/dist_final/data/example/function/test_start_game_while_4.mcfunction +0 -3
  142. minecraft_datapack_language-15.4.27/dist_final/data/example/function/tick.mcfunction +0 -3
  143. minecraft_datapack_language-15.4.27/dist_final/data/example/function/tick_if_1.mcfunction +0 -1
  144. minecraft_datapack_language-15.4.27/dist_final/data/example/function/variable_demo.mcfunction +0 -7
  145. minecraft_datapack_language-15.4.27/dist_final/data/example/function/weapon_effects.mcfunction +0 -3
  146. minecraft_datapack_language-15.4.27/dist_final/data/example/function/weapon_effects_else_1.mcfunction +0 -3
  147. minecraft_datapack_language-15.4.27/dist_final/data/example/function/weapon_effects_if_1.mcfunction +0 -3
  148. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/conditional_demo.mcfunction +0 -3
  149. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/conditional_demo_else_3.mcfunction +0 -2
  150. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/conditional_demo_if_3.mcfunction +0 -3
  151. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/conditional_demo_if_3_else_0.mcfunction +0 -3
  152. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/conditional_demo_if_3_if_0.mcfunction +0 -3
  153. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
  154. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
  155. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/countdown.mcfunction +0 -3
  156. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/custom_commands.mcfunction +0 -6
  157. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/hello.mcfunction +0 -3
  158. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/increment_global.mcfunction +0 -3
  159. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/increment_player.mcfunction +0 -3
  160. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/inner.mcfunction +0 -3
  161. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/load.mcfunction +0 -14
  162. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/loop_demo.mcfunction +0 -3
  163. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/main.mcfunction +0 -8
  164. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/phase_2.mcfunction +0 -7
  165. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/reset.mcfunction +0 -5
  166. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/scoreboard_demo.mcfunction +0 -4
  167. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/show_scores.mcfunction +0 -3
  168. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/start_game.mcfunction +0 -7
  169. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/start_game_if_1.mcfunction +0 -3
  170. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/start_game_if_5.mcfunction +0 -3
  171. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/test_countdown_while_1.mcfunction +0 -3
  172. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/test_loop_demo_while_2.mcfunction +0 -6
  173. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
  174. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
  175. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
  176. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/test_main_while_2.mcfunction +0 -3
  177. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/test_scoreboard_demo_while_3.mcfunction +0 -4
  178. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
  179. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/test_start_game_while_4.mcfunction +0 -3
  180. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/tick.mcfunction +0 -3
  181. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/tick_if_1.mcfunction +0 -1
  182. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/variable_demo.mcfunction +0 -7
  183. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/weapon_effects.mcfunction +0 -3
  184. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/weapon_effects_else_1.mcfunction +0 -3
  185. minecraft_datapack_language-15.4.27/dist_final/data/hello_world/function/weapon_effects_if_1.mcfunction +0 -3
  186. minecraft_datapack_language-15.4.27/dist_final/data/minecraft/tags/function/load.json +0 -14
  187. minecraft_datapack_language-15.4.27/dist_final/data/minecraft/tags/function/tick.json +0 -5
  188. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/conditional_demo.mcfunction +0 -3
  189. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/conditional_demo_else_3.mcfunction +0 -2
  190. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/conditional_demo_if_3.mcfunction +0 -3
  191. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/conditional_demo_if_3_else_0.mcfunction +0 -3
  192. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/conditional_demo_if_3_if_0.mcfunction +0 -3
  193. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
  194. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
  195. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/countdown.mcfunction +0 -3
  196. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/custom_commands.mcfunction +0 -6
  197. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/hello.mcfunction +0 -3
  198. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/increment_global.mcfunction +0 -3
  199. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/increment_player.mcfunction +0 -3
  200. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/inner.mcfunction +0 -3
  201. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/load.mcfunction +0 -14
  202. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/loop_demo.mcfunction +0 -3
  203. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/main.mcfunction +0 -8
  204. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/phase_2.mcfunction +0 -7
  205. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/reset.mcfunction +0 -5
  206. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/scoreboard_demo.mcfunction +0 -4
  207. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/show_scores.mcfunction +0 -3
  208. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/start_game.mcfunction +0 -7
  209. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/start_game_if_1.mcfunction +0 -3
  210. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/start_game_if_5.mcfunction +0 -3
  211. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/test_countdown_while_1.mcfunction +0 -3
  212. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/test_loop_demo_while_2.mcfunction +0 -6
  213. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
  214. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
  215. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
  216. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/test_main_while_2.mcfunction +0 -3
  217. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/test_scoreboard_demo_while_3.mcfunction +0 -4
  218. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
  219. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/test_start_game_while_4.mcfunction +0 -3
  220. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/tick.mcfunction +0 -3
  221. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/tick_if_1.mcfunction +0 -1
  222. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/variable_demo.mcfunction +0 -7
  223. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/weapon_effects.mcfunction +0 -3
  224. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/weapon_effects_else_1.mcfunction +0 -3
  225. minecraft_datapack_language-15.4.27/dist_final/data/raw_commands/function/weapon_effects_if_1.mcfunction +0 -3
  226. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/conditional_demo.mcfunction +0 -3
  227. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/conditional_demo_else_3.mcfunction +0 -2
  228. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/conditional_demo_if_3.mcfunction +0 -3
  229. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/conditional_demo_if_3_else_0.mcfunction +0 -3
  230. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/conditional_demo_if_3_if_0.mcfunction +0 -3
  231. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
  232. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
  233. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/countdown.mcfunction +0 -3
  234. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/custom_commands.mcfunction +0 -6
  235. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/hello.mcfunction +0 -3
  236. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/increment_global.mcfunction +0 -3
  237. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/increment_player.mcfunction +0 -3
  238. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/inner.mcfunction +0 -3
  239. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/load.mcfunction +0 -14
  240. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/loop_demo.mcfunction +0 -3
  241. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/main.mcfunction +0 -8
  242. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/phase_2.mcfunction +0 -7
  243. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/reset.mcfunction +0 -5
  244. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/scoreboard_demo.mcfunction +0 -4
  245. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/show_scores.mcfunction +0 -3
  246. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/start_game.mcfunction +0 -7
  247. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/start_game_if_1.mcfunction +0 -3
  248. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/start_game_if_5.mcfunction +0 -3
  249. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/test_countdown_while_1.mcfunction +0 -3
  250. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/test_loop_demo_while_2.mcfunction +0 -6
  251. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
  252. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
  253. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
  254. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/test_main_while_2.mcfunction +0 -3
  255. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/test_scoreboard_demo_while_3.mcfunction +0 -4
  256. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
  257. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/test_start_game_while_4.mcfunction +0 -3
  258. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/tick.mcfunction +0 -3
  259. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/tick_if_1.mcfunction +0 -1
  260. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/variable_demo.mcfunction +0 -7
  261. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/weapon_effects.mcfunction +0 -3
  262. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/weapon_effects_else_1.mcfunction +0 -3
  263. minecraft_datapack_language-15.4.27/dist_final/data/registry/function/weapon_effects_if_1.mcfunction +0 -3
  264. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/conditional_demo.mcfunction +0 -3
  265. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/conditional_demo_else_3.mcfunction +0 -2
  266. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/conditional_demo_if_3.mcfunction +0 -3
  267. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/conditional_demo_if_3_else_0.mcfunction +0 -3
  268. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/conditional_demo_if_3_if_0.mcfunction +0 -3
  269. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
  270. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
  271. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/countdown.mcfunction +0 -3
  272. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/custom_commands.mcfunction +0 -6
  273. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/hello.mcfunction +0 -3
  274. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/increment_global.mcfunction +0 -3
  275. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/increment_player.mcfunction +0 -3
  276. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/inner.mcfunction +0 -3
  277. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/load.mcfunction +0 -14
  278. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/loop_demo.mcfunction +0 -3
  279. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/main.mcfunction +0 -8
  280. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/phase_2.mcfunction +0 -7
  281. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/reset.mcfunction +0 -5
  282. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/scoreboard_demo.mcfunction +0 -4
  283. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/show_scores.mcfunction +0 -3
  284. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/start_game.mcfunction +0 -7
  285. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/start_game_if_1.mcfunction +0 -3
  286. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/start_game_if_5.mcfunction +0 -3
  287. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/test_countdown_while_1.mcfunction +0 -3
  288. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/test_loop_demo_while_2.mcfunction +0 -6
  289. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
  290. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
  291. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
  292. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/test_main_while_2.mcfunction +0 -3
  293. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/test_scoreboard_demo_while_3.mcfunction +0 -4
  294. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
  295. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/test_start_game_while_4.mcfunction +0 -3
  296. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/tick.mcfunction +0 -3
  297. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/tick_if_1.mcfunction +0 -1
  298. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/variable_demo.mcfunction +0 -7
  299. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/weapon_effects.mcfunction +0 -3
  300. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/weapon_effects_else_1.mcfunction +0 -3
  301. minecraft_datapack_language-15.4.27/dist_final/data/scoped_calls/function/weapon_effects_if_1.mcfunction +0 -3
  302. minecraft_datapack_language-15.4.27/dist_final/data/test/function/conditional_demo.mcfunction +0 -3
  303. minecraft_datapack_language-15.4.27/dist_final/data/test/function/conditional_demo_else_3.mcfunction +0 -2
  304. minecraft_datapack_language-15.4.27/dist_final/data/test/function/conditional_demo_if_3.mcfunction +0 -3
  305. minecraft_datapack_language-15.4.27/dist_final/data/test/function/conditional_demo_if_3_else_0.mcfunction +0 -3
  306. minecraft_datapack_language-15.4.27/dist_final/data/test/function/conditional_demo_if_3_if_0.mcfunction +0 -3
  307. minecraft_datapack_language-15.4.27/dist_final/data/test/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
  308. minecraft_datapack_language-15.4.27/dist_final/data/test/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
  309. minecraft_datapack_language-15.4.27/dist_final/data/test/function/countdown.mcfunction +0 -3
  310. minecraft_datapack_language-15.4.27/dist_final/data/test/function/custom_commands.mcfunction +0 -6
  311. minecraft_datapack_language-15.4.27/dist_final/data/test/function/hello.mcfunction +0 -3
  312. minecraft_datapack_language-15.4.27/dist_final/data/test/function/increment_global.mcfunction +0 -3
  313. minecraft_datapack_language-15.4.27/dist_final/data/test/function/increment_player.mcfunction +0 -3
  314. minecraft_datapack_language-15.4.27/dist_final/data/test/function/inner.mcfunction +0 -3
  315. minecraft_datapack_language-15.4.27/dist_final/data/test/function/load.mcfunction +0 -14
  316. minecraft_datapack_language-15.4.27/dist_final/data/test/function/loop_demo.mcfunction +0 -3
  317. minecraft_datapack_language-15.4.27/dist_final/data/test/function/main.mcfunction +0 -8
  318. minecraft_datapack_language-15.4.27/dist_final/data/test/function/phase_2.mcfunction +0 -7
  319. minecraft_datapack_language-15.4.27/dist_final/data/test/function/reset.mcfunction +0 -5
  320. minecraft_datapack_language-15.4.27/dist_final/data/test/function/scoreboard_demo.mcfunction +0 -4
  321. minecraft_datapack_language-15.4.27/dist_final/data/test/function/show_scores.mcfunction +0 -3
  322. minecraft_datapack_language-15.4.27/dist_final/data/test/function/start_game.mcfunction +0 -7
  323. minecraft_datapack_language-15.4.27/dist_final/data/test/function/start_game_if_1.mcfunction +0 -3
  324. minecraft_datapack_language-15.4.27/dist_final/data/test/function/start_game_if_5.mcfunction +0 -3
  325. minecraft_datapack_language-15.4.27/dist_final/data/test/function/test_countdown_while_1.mcfunction +0 -3
  326. minecraft_datapack_language-15.4.27/dist_final/data/test/function/test_loop_demo_while_2.mcfunction +0 -6
  327. minecraft_datapack_language-15.4.27/dist_final/data/test/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
  328. minecraft_datapack_language-15.4.27/dist_final/data/test/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
  329. minecraft_datapack_language-15.4.27/dist_final/data/test/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
  330. minecraft_datapack_language-15.4.27/dist_final/data/test/function/test_main_while_2.mcfunction +0 -3
  331. minecraft_datapack_language-15.4.27/dist_final/data/test/function/test_scoreboard_demo_while_3.mcfunction +0 -4
  332. minecraft_datapack_language-15.4.27/dist_final/data/test/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
  333. minecraft_datapack_language-15.4.27/dist_final/data/test/function/test_start_game_while_4.mcfunction +0 -3
  334. minecraft_datapack_language-15.4.27/dist_final/data/test/function/tick.mcfunction +0 -3
  335. minecraft_datapack_language-15.4.27/dist_final/data/test/function/tick_if_1.mcfunction +0 -1
  336. minecraft_datapack_language-15.4.27/dist_final/data/test/function/variable_demo.mcfunction +0 -7
  337. minecraft_datapack_language-15.4.27/dist_final/data/test/function/weapon_effects.mcfunction +0 -3
  338. minecraft_datapack_language-15.4.27/dist_final/data/test/function/weapon_effects_else_1.mcfunction +0 -3
  339. minecraft_datapack_language-15.4.27/dist_final/data/test/function/weapon_effects_if_1.mcfunction +0 -3
  340. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/conditional_demo.mcfunction +0 -3
  341. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/conditional_demo_else_3.mcfunction +0 -2
  342. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/conditional_demo_if_3.mcfunction +0 -3
  343. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/conditional_demo_if_3_else_0.mcfunction +0 -3
  344. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/conditional_demo_if_3_if_0.mcfunction +0 -3
  345. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
  346. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
  347. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/countdown.mcfunction +0 -3
  348. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/custom_commands.mcfunction +0 -6
  349. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/hello.mcfunction +0 -3
  350. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/increment_global.mcfunction +0 -3
  351. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/increment_player.mcfunction +0 -3
  352. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/inner.mcfunction +0 -3
  353. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/load.mcfunction +0 -14
  354. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/loop_demo.mcfunction +0 -3
  355. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/main.mcfunction +0 -8
  356. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/phase_2.mcfunction +0 -7
  357. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/reset.mcfunction +0 -5
  358. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/scoreboard_demo.mcfunction +0 -4
  359. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/show_scores.mcfunction +0 -3
  360. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/start_game.mcfunction +0 -7
  361. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/start_game_if_1.mcfunction +0 -3
  362. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/start_game_if_5.mcfunction +0 -3
  363. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/test_countdown_while_1.mcfunction +0 -3
  364. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/test_loop_demo_while_2.mcfunction +0 -6
  365. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
  366. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
  367. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
  368. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/test_main_while_2.mcfunction +0 -3
  369. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/test_scoreboard_demo_while_3.mcfunction +0 -4
  370. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
  371. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/test_start_game_while_4.mcfunction +0 -3
  372. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/tick.mcfunction +0 -3
  373. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/tick_if_1.mcfunction +0 -1
  374. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/variable_demo.mcfunction +0 -7
  375. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/weapon_effects.mcfunction +0 -3
  376. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/weapon_effects_else_1.mcfunction +0 -3
  377. minecraft_datapack_language-15.4.27/dist_final/data/variables/function/weapon_effects_if_1.mcfunction +0 -3
  378. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/conditional_demo.mcfunction +0 -3
  379. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/conditional_demo_else_3.mcfunction +0 -2
  380. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/conditional_demo_if_3.mcfunction +0 -3
  381. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/conditional_demo_if_3_else_0.mcfunction +0 -3
  382. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/conditional_demo_if_3_if_0.mcfunction +0 -3
  383. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
  384. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
  385. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/countdown.mcfunction +0 -3
  386. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/custom_commands.mcfunction +0 -6
  387. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/hello.mcfunction +0 -3
  388. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/increment_global.mcfunction +0 -3
  389. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/increment_player.mcfunction +0 -3
  390. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/inner.mcfunction +0 -3
  391. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/load.mcfunction +0 -14
  392. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/loop_demo.mcfunction +0 -3
  393. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/main.mcfunction +0 -8
  394. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/phase_2.mcfunction +0 -7
  395. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/reset.mcfunction +0 -5
  396. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/scoreboard_demo.mcfunction +0 -4
  397. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/show_scores.mcfunction +0 -3
  398. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/start_game.mcfunction +0 -7
  399. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/start_game_if_1.mcfunction +0 -3
  400. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/start_game_if_5.mcfunction +0 -3
  401. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/test_countdown_while_1.mcfunction +0 -3
  402. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/test_loop_demo_while_2.mcfunction +0 -6
  403. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
  404. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
  405. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
  406. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/test_main_while_2.mcfunction +0 -3
  407. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/test_scoreboard_demo_while_3.mcfunction +0 -4
  408. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
  409. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/test_start_game_while_4.mcfunction +0 -3
  410. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/tick.mcfunction +0 -3
  411. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/tick_if_1.mcfunction +0 -1
  412. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/variable_demo.mcfunction +0 -7
  413. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/weapon_effects.mcfunction +0 -3
  414. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/weapon_effects_else_1.mcfunction +0 -3
  415. minecraft_datapack_language-15.4.27/dist_final/data/while_loops/function/weapon_effects_if_1.mcfunction +0 -3
  416. minecraft_datapack_language-15.4.27/dist_final/pack.mcmeta +0 -6
  417. minecraft_datapack_language-15.4.27/dist_final.zip +0 -0
  418. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/conditional_demo.mcfunction +0 -3
  419. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/conditional_demo_else_3.mcfunction +0 -2
  420. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/conditional_demo_if_3.mcfunction +0 -3
  421. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/conditional_demo_if_3_else_0.mcfunction +0 -3
  422. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/conditional_demo_if_3_if_0.mcfunction +0 -3
  423. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
  424. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
  425. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/countdown.mcfunction +0 -3
  426. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/custom_commands.mcfunction +0 -6
  427. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/hello.mcfunction +0 -3
  428. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/increment_global.mcfunction +0 -3
  429. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/increment_player.mcfunction +0 -3
  430. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/init.mcfunction +0 -4
  431. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/inner.mcfunction +0 -3
  432. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/load.mcfunction +0 -14
  433. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/loop_demo.mcfunction +0 -3
  434. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/main.mcfunction +0 -8
  435. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/phase_2.mcfunction +0 -7
  436. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/reset.mcfunction +0 -5
  437. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/scoreboard_demo.mcfunction +0 -4
  438. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/show_scores.mcfunction +0 -3
  439. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/start_game.mcfunction +0 -7
  440. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/start_game_if_1.mcfunction +0 -3
  441. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/start_game_if_5.mcfunction +0 -3
  442. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/test_countdown_while_1.mcfunction +0 -3
  443. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/test_loop_demo_while_2.mcfunction +0 -6
  444. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
  445. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
  446. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
  447. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/test_main_while_2.mcfunction +0 -3
  448. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/test_scoreboard_demo_while_3.mcfunction +0 -4
  449. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
  450. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/test_start_game_while_4.mcfunction +0 -3
  451. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/tick.mcfunction +0 -3
  452. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/tick_if_1.mcfunction +0 -1
  453. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/update.mcfunction +0 -4
  454. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/variable_demo.mcfunction +0 -7
  455. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/weapon_effects.mcfunction +0 -3
  456. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/weapon_effects_else_1.mcfunction +0 -3
  457. minecraft_datapack_language-15.4.27/dist_test/data/basic_hello/function/weapon_effects_if_1.mcfunction +0 -3
  458. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/conditional_demo.mcfunction +0 -3
  459. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/conditional_demo_else_3.mcfunction +0 -2
  460. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/conditional_demo_if_3.mcfunction +0 -3
  461. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/conditional_demo_if_3_else_0.mcfunction +0 -3
  462. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/conditional_demo_if_3_if_0.mcfunction +0 -3
  463. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
  464. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
  465. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/countdown.mcfunction +0 -3
  466. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/custom_commands.mcfunction +0 -6
  467. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/hello.mcfunction +0 -3
  468. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/increment_global.mcfunction +0 -3
  469. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/increment_player.mcfunction +0 -3
  470. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/init.mcfunction +0 -4
  471. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/inner.mcfunction +0 -3
  472. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/load.mcfunction +0 -14
  473. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/loop_demo.mcfunction +0 -3
  474. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/main.mcfunction +0 -8
  475. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/phase_2.mcfunction +0 -7
  476. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/reset.mcfunction +0 -5
  477. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/scoreboard_demo.mcfunction +0 -4
  478. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/show_scores.mcfunction +0 -3
  479. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/start_game.mcfunction +0 -7
  480. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/start_game_if_1.mcfunction +0 -3
  481. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/start_game_if_5.mcfunction +0 -3
  482. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/test_countdown_while_1.mcfunction +0 -3
  483. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/test_loop_demo_while_2.mcfunction +0 -6
  484. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
  485. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
  486. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
  487. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/test_main_while_2.mcfunction +0 -3
  488. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/test_scoreboard_demo_while_3.mcfunction +0 -4
  489. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
  490. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/test_start_game_while_4.mcfunction +0 -3
  491. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/tick.mcfunction +0 -3
  492. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/tick_if_1.mcfunction +0 -1
  493. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/update.mcfunction +0 -4
  494. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/variable_demo.mcfunction +0 -7
  495. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/weapon_effects.mcfunction +0 -3
  496. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/weapon_effects_else_1.mcfunction +0 -3
  497. minecraft_datapack_language-15.4.27/dist_test/data/comprehensive/function/weapon_effects_if_1.mcfunction +0 -3
  498. minecraft_datapack_language-15.4.27/dist_test/data/example/function/conditional_demo.mcfunction +0 -3
  499. minecraft_datapack_language-15.4.27/dist_test/data/example/function/conditional_demo_else_3.mcfunction +0 -2
  500. minecraft_datapack_language-15.4.27/dist_test/data/example/function/conditional_demo_if_3.mcfunction +0 -3
  501. minecraft_datapack_language-15.4.27/dist_test/data/example/function/conditional_demo_if_3_else_0.mcfunction +0 -3
  502. minecraft_datapack_language-15.4.27/dist_test/data/example/function/conditional_demo_if_3_if_0.mcfunction +0 -3
  503. minecraft_datapack_language-15.4.27/dist_test/data/example/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
  504. minecraft_datapack_language-15.4.27/dist_test/data/example/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
  505. minecraft_datapack_language-15.4.27/dist_test/data/example/function/countdown.mcfunction +0 -3
  506. minecraft_datapack_language-15.4.27/dist_test/data/example/function/custom_commands.mcfunction +0 -6
  507. minecraft_datapack_language-15.4.27/dist_test/data/example/function/hello.mcfunction +0 -3
  508. minecraft_datapack_language-15.4.27/dist_test/data/example/function/increment_global.mcfunction +0 -3
  509. minecraft_datapack_language-15.4.27/dist_test/data/example/function/increment_player.mcfunction +0 -3
  510. minecraft_datapack_language-15.4.27/dist_test/data/example/function/init.mcfunction +0 -4
  511. minecraft_datapack_language-15.4.27/dist_test/data/example/function/inner.mcfunction +0 -3
  512. minecraft_datapack_language-15.4.27/dist_test/data/example/function/load.mcfunction +0 -14
  513. minecraft_datapack_language-15.4.27/dist_test/data/example/function/loop_demo.mcfunction +0 -3
  514. minecraft_datapack_language-15.4.27/dist_test/data/example/function/main.mcfunction +0 -8
  515. minecraft_datapack_language-15.4.27/dist_test/data/example/function/phase_2.mcfunction +0 -7
  516. minecraft_datapack_language-15.4.27/dist_test/data/example/function/reset.mcfunction +0 -5
  517. minecraft_datapack_language-15.4.27/dist_test/data/example/function/scoreboard_demo.mcfunction +0 -4
  518. minecraft_datapack_language-15.4.27/dist_test/data/example/function/show_scores.mcfunction +0 -3
  519. minecraft_datapack_language-15.4.27/dist_test/data/example/function/start_game.mcfunction +0 -7
  520. minecraft_datapack_language-15.4.27/dist_test/data/example/function/start_game_if_1.mcfunction +0 -3
  521. minecraft_datapack_language-15.4.27/dist_test/data/example/function/start_game_if_5.mcfunction +0 -3
  522. minecraft_datapack_language-15.4.27/dist_test/data/example/function/test_countdown_while_1.mcfunction +0 -3
  523. minecraft_datapack_language-15.4.27/dist_test/data/example/function/test_loop_demo_while_2.mcfunction +0 -6
  524. minecraft_datapack_language-15.4.27/dist_test/data/example/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
  525. minecraft_datapack_language-15.4.27/dist_test/data/example/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
  526. minecraft_datapack_language-15.4.27/dist_test/data/example/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
  527. minecraft_datapack_language-15.4.27/dist_test/data/example/function/test_main_while_2.mcfunction +0 -3
  528. minecraft_datapack_language-15.4.27/dist_test/data/example/function/test_scoreboard_demo_while_3.mcfunction +0 -4
  529. minecraft_datapack_language-15.4.27/dist_test/data/example/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
  530. minecraft_datapack_language-15.4.27/dist_test/data/example/function/test_start_game_while_4.mcfunction +0 -3
  531. minecraft_datapack_language-15.4.27/dist_test/data/example/function/tick.mcfunction +0 -3
  532. minecraft_datapack_language-15.4.27/dist_test/data/example/function/tick_if_1.mcfunction +0 -1
  533. minecraft_datapack_language-15.4.27/dist_test/data/example/function/update.mcfunction +0 -4
  534. minecraft_datapack_language-15.4.27/dist_test/data/example/function/variable_demo.mcfunction +0 -7
  535. minecraft_datapack_language-15.4.27/dist_test/data/example/function/weapon_effects.mcfunction +0 -3
  536. minecraft_datapack_language-15.4.27/dist_test/data/example/function/weapon_effects_else_1.mcfunction +0 -3
  537. minecraft_datapack_language-15.4.27/dist_test/data/example/function/weapon_effects_if_1.mcfunction +0 -3
  538. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/conditional_demo.mcfunction +0 -3
  539. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/conditional_demo_else_3.mcfunction +0 -2
  540. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/conditional_demo_if_3.mcfunction +0 -3
  541. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/conditional_demo_if_3_else_0.mcfunction +0 -3
  542. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/conditional_demo_if_3_if_0.mcfunction +0 -3
  543. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
  544. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
  545. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/countdown.mcfunction +0 -3
  546. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/custom_commands.mcfunction +0 -6
  547. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/hello.mcfunction +0 -3
  548. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/increment_global.mcfunction +0 -3
  549. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/increment_player.mcfunction +0 -3
  550. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/init.mcfunction +0 -4
  551. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/inner.mcfunction +0 -3
  552. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/load.mcfunction +0 -14
  553. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/loop_demo.mcfunction +0 -3
  554. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/main.mcfunction +0 -8
  555. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/phase_2.mcfunction +0 -7
  556. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/reset.mcfunction +0 -5
  557. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/scoreboard_demo.mcfunction +0 -4
  558. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/show_scores.mcfunction +0 -3
  559. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/start_game.mcfunction +0 -7
  560. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/start_game_if_1.mcfunction +0 -3
  561. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/start_game_if_5.mcfunction +0 -3
  562. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/test_countdown_while_1.mcfunction +0 -3
  563. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/test_loop_demo_while_2.mcfunction +0 -6
  564. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
  565. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
  566. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
  567. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/test_main_while_2.mcfunction +0 -3
  568. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/test_scoreboard_demo_while_3.mcfunction +0 -4
  569. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
  570. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/test_start_game_while_4.mcfunction +0 -3
  571. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/tick.mcfunction +0 -3
  572. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/tick_if_1.mcfunction +0 -1
  573. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/update.mcfunction +0 -4
  574. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/variable_demo.mcfunction +0 -7
  575. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/weapon_effects.mcfunction +0 -3
  576. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/weapon_effects_else_1.mcfunction +0 -3
  577. minecraft_datapack_language-15.4.27/dist_test/data/hello_world/function/weapon_effects_if_1.mcfunction +0 -3
  578. minecraft_datapack_language-15.4.27/dist_test/data/minecraft/tags/function/load.json +0 -14
  579. minecraft_datapack_language-15.4.27/dist_test/data/minecraft/tags/function/tick.json +0 -5
  580. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/conditional_demo.mcfunction +0 -3
  581. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/conditional_demo_else_3.mcfunction +0 -2
  582. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/conditional_demo_if_3.mcfunction +0 -3
  583. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/conditional_demo_if_3_else_0.mcfunction +0 -3
  584. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/conditional_demo_if_3_if_0.mcfunction +0 -3
  585. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
  586. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
  587. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/countdown.mcfunction +0 -3
  588. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/custom_commands.mcfunction +0 -6
  589. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/hello.mcfunction +0 -3
  590. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/increment_global.mcfunction +0 -3
  591. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/increment_player.mcfunction +0 -3
  592. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/init.mcfunction +0 -4
  593. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/inner.mcfunction +0 -3
  594. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/load.mcfunction +0 -14
  595. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/loop_demo.mcfunction +0 -3
  596. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/main.mcfunction +0 -8
  597. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/phase_2.mcfunction +0 -7
  598. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/reset.mcfunction +0 -5
  599. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/scoreboard_demo.mcfunction +0 -4
  600. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/show_scores.mcfunction +0 -3
  601. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/start_game.mcfunction +0 -7
  602. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/start_game_if_1.mcfunction +0 -3
  603. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/start_game_if_5.mcfunction +0 -3
  604. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/test_countdown_while_1.mcfunction +0 -3
  605. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/test_loop_demo_while_2.mcfunction +0 -6
  606. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
  607. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
  608. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
  609. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/test_main_while_2.mcfunction +0 -3
  610. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/test_scoreboard_demo_while_3.mcfunction +0 -4
  611. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
  612. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/test_start_game_while_4.mcfunction +0 -3
  613. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/tick.mcfunction +0 -3
  614. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/tick_if_1.mcfunction +0 -1
  615. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/update.mcfunction +0 -4
  616. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/variable_demo.mcfunction +0 -7
  617. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/weapon_effects.mcfunction +0 -3
  618. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/weapon_effects_else_1.mcfunction +0 -3
  619. minecraft_datapack_language-15.4.27/dist_test/data/raw_commands/function/weapon_effects_if_1.mcfunction +0 -3
  620. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/conditional_demo.mcfunction +0 -3
  621. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/conditional_demo_else_3.mcfunction +0 -2
  622. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/conditional_demo_if_3.mcfunction +0 -3
  623. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/conditional_demo_if_3_else_0.mcfunction +0 -3
  624. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/conditional_demo_if_3_if_0.mcfunction +0 -3
  625. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
  626. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
  627. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/countdown.mcfunction +0 -3
  628. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/custom_commands.mcfunction +0 -6
  629. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/hello.mcfunction +0 -3
  630. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/increment_global.mcfunction +0 -3
  631. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/increment_player.mcfunction +0 -3
  632. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/init.mcfunction +0 -4
  633. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/inner.mcfunction +0 -3
  634. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/load.mcfunction +0 -14
  635. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/loop_demo.mcfunction +0 -3
  636. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/main.mcfunction +0 -8
  637. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/phase_2.mcfunction +0 -7
  638. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/reset.mcfunction +0 -5
  639. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/scoreboard_demo.mcfunction +0 -4
  640. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/show_scores.mcfunction +0 -3
  641. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/start_game.mcfunction +0 -7
  642. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/start_game_if_1.mcfunction +0 -3
  643. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/start_game_if_5.mcfunction +0 -3
  644. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/test_countdown_while_1.mcfunction +0 -3
  645. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/test_loop_demo_while_2.mcfunction +0 -6
  646. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
  647. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
  648. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
  649. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/test_main_while_2.mcfunction +0 -3
  650. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/test_scoreboard_demo_while_3.mcfunction +0 -4
  651. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
  652. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/test_start_game_while_4.mcfunction +0 -3
  653. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/tick.mcfunction +0 -3
  654. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/tick_if_1.mcfunction +0 -1
  655. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/update.mcfunction +0 -4
  656. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/variable_demo.mcfunction +0 -7
  657. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/weapon_effects.mcfunction +0 -3
  658. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/weapon_effects_else_1.mcfunction +0 -3
  659. minecraft_datapack_language-15.4.27/dist_test/data/registry/function/weapon_effects_if_1.mcfunction +0 -3
  660. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/conditional_demo.mcfunction +0 -3
  661. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/conditional_demo_else_3.mcfunction +0 -2
  662. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/conditional_demo_if_3.mcfunction +0 -3
  663. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/conditional_demo_if_3_else_0.mcfunction +0 -3
  664. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/conditional_demo_if_3_if_0.mcfunction +0 -3
  665. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
  666. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
  667. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/countdown.mcfunction +0 -3
  668. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/custom_commands.mcfunction +0 -6
  669. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/hello.mcfunction +0 -3
  670. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/increment_global.mcfunction +0 -3
  671. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/increment_player.mcfunction +0 -3
  672. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/init.mcfunction +0 -4
  673. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/inner.mcfunction +0 -3
  674. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/load.mcfunction +0 -14
  675. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/loop_demo.mcfunction +0 -3
  676. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/main.mcfunction +0 -8
  677. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/phase_2.mcfunction +0 -7
  678. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/reset.mcfunction +0 -5
  679. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/scoreboard_demo.mcfunction +0 -4
  680. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/show_scores.mcfunction +0 -3
  681. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/start_game.mcfunction +0 -7
  682. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/start_game_if_1.mcfunction +0 -3
  683. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/start_game_if_5.mcfunction +0 -3
  684. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/test_countdown_while_1.mcfunction +0 -3
  685. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/test_loop_demo_while_2.mcfunction +0 -6
  686. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
  687. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
  688. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
  689. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/test_main_while_2.mcfunction +0 -3
  690. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/test_scoreboard_demo_while_3.mcfunction +0 -4
  691. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
  692. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/test_start_game_while_4.mcfunction +0 -3
  693. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/tick.mcfunction +0 -3
  694. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/tick_if_1.mcfunction +0 -1
  695. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/update.mcfunction +0 -4
  696. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/variable_demo.mcfunction +0 -7
  697. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/weapon_effects.mcfunction +0 -3
  698. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/weapon_effects_else_1.mcfunction +0 -3
  699. minecraft_datapack_language-15.4.27/dist_test/data/scoped_calls/function/weapon_effects_if_1.mcfunction +0 -3
  700. minecraft_datapack_language-15.4.27/dist_test/data/test/function/conditional_demo.mcfunction +0 -3
  701. minecraft_datapack_language-15.4.27/dist_test/data/test/function/conditional_demo_else_3.mcfunction +0 -2
  702. minecraft_datapack_language-15.4.27/dist_test/data/test/function/conditional_demo_if_3.mcfunction +0 -3
  703. minecraft_datapack_language-15.4.27/dist_test/data/test/function/conditional_demo_if_3_else_0.mcfunction +0 -3
  704. minecraft_datapack_language-15.4.27/dist_test/data/test/function/conditional_demo_if_3_if_0.mcfunction +0 -3
  705. minecraft_datapack_language-15.4.27/dist_test/data/test/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
  706. minecraft_datapack_language-15.4.27/dist_test/data/test/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
  707. minecraft_datapack_language-15.4.27/dist_test/data/test/function/countdown.mcfunction +0 -3
  708. minecraft_datapack_language-15.4.27/dist_test/data/test/function/custom_commands.mcfunction +0 -6
  709. minecraft_datapack_language-15.4.27/dist_test/data/test/function/hello.mcfunction +0 -3
  710. minecraft_datapack_language-15.4.27/dist_test/data/test/function/increment_global.mcfunction +0 -3
  711. minecraft_datapack_language-15.4.27/dist_test/data/test/function/increment_player.mcfunction +0 -3
  712. minecraft_datapack_language-15.4.27/dist_test/data/test/function/init.mcfunction +0 -4
  713. minecraft_datapack_language-15.4.27/dist_test/data/test/function/inner.mcfunction +0 -3
  714. minecraft_datapack_language-15.4.27/dist_test/data/test/function/load.mcfunction +0 -14
  715. minecraft_datapack_language-15.4.27/dist_test/data/test/function/loop_demo.mcfunction +0 -3
  716. minecraft_datapack_language-15.4.27/dist_test/data/test/function/main.mcfunction +0 -8
  717. minecraft_datapack_language-15.4.27/dist_test/data/test/function/phase_2.mcfunction +0 -7
  718. minecraft_datapack_language-15.4.27/dist_test/data/test/function/reset.mcfunction +0 -5
  719. minecraft_datapack_language-15.4.27/dist_test/data/test/function/scoreboard_demo.mcfunction +0 -4
  720. minecraft_datapack_language-15.4.27/dist_test/data/test/function/show_scores.mcfunction +0 -3
  721. minecraft_datapack_language-15.4.27/dist_test/data/test/function/start_game.mcfunction +0 -7
  722. minecraft_datapack_language-15.4.27/dist_test/data/test/function/start_game_if_1.mcfunction +0 -3
  723. minecraft_datapack_language-15.4.27/dist_test/data/test/function/start_game_if_5.mcfunction +0 -3
  724. minecraft_datapack_language-15.4.27/dist_test/data/test/function/test_countdown_while_1.mcfunction +0 -3
  725. minecraft_datapack_language-15.4.27/dist_test/data/test/function/test_loop_demo_while_2.mcfunction +0 -6
  726. minecraft_datapack_language-15.4.27/dist_test/data/test/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
  727. minecraft_datapack_language-15.4.27/dist_test/data/test/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
  728. minecraft_datapack_language-15.4.27/dist_test/data/test/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
  729. minecraft_datapack_language-15.4.27/dist_test/data/test/function/test_main_while_2.mcfunction +0 -3
  730. minecraft_datapack_language-15.4.27/dist_test/data/test/function/test_scoreboard_demo_while_3.mcfunction +0 -4
  731. minecraft_datapack_language-15.4.27/dist_test/data/test/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
  732. minecraft_datapack_language-15.4.27/dist_test/data/test/function/test_start_game_while_4.mcfunction +0 -3
  733. minecraft_datapack_language-15.4.27/dist_test/data/test/function/tick.mcfunction +0 -3
  734. minecraft_datapack_language-15.4.27/dist_test/data/test/function/tick_if_1.mcfunction +0 -1
  735. minecraft_datapack_language-15.4.27/dist_test/data/test/function/update.mcfunction +0 -4
  736. minecraft_datapack_language-15.4.27/dist_test/data/test/function/variable_demo.mcfunction +0 -7
  737. minecraft_datapack_language-15.4.27/dist_test/data/test/function/weapon_effects.mcfunction +0 -3
  738. minecraft_datapack_language-15.4.27/dist_test/data/test/function/weapon_effects_else_1.mcfunction +0 -3
  739. minecraft_datapack_language-15.4.27/dist_test/data/test/function/weapon_effects_if_1.mcfunction +0 -3
  740. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/conditional_demo.mcfunction +0 -3
  741. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/conditional_demo_else_3.mcfunction +0 -2
  742. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/conditional_demo_if_3.mcfunction +0 -3
  743. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/conditional_demo_if_3_else_0.mcfunction +0 -3
  744. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/conditional_demo_if_3_if_0.mcfunction +0 -3
  745. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
  746. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
  747. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/countdown.mcfunction +0 -3
  748. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/custom_commands.mcfunction +0 -6
  749. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/hello.mcfunction +0 -3
  750. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/increment_global.mcfunction +0 -3
  751. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/increment_player.mcfunction +0 -3
  752. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/init.mcfunction +0 -4
  753. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/inner.mcfunction +0 -3
  754. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/load.mcfunction +0 -14
  755. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/loop_demo.mcfunction +0 -3
  756. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/main.mcfunction +0 -8
  757. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/phase_2.mcfunction +0 -7
  758. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/reset.mcfunction +0 -5
  759. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/scoreboard_demo.mcfunction +0 -4
  760. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/show_scores.mcfunction +0 -3
  761. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/start_game.mcfunction +0 -7
  762. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/start_game_if_1.mcfunction +0 -3
  763. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/start_game_if_5.mcfunction +0 -3
  764. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/test_countdown_while_1.mcfunction +0 -3
  765. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/test_loop_demo_while_2.mcfunction +0 -6
  766. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
  767. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
  768. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
  769. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/test_main_while_2.mcfunction +0 -3
  770. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/test_scoreboard_demo_while_3.mcfunction +0 -4
  771. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
  772. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/test_start_game_while_4.mcfunction +0 -3
  773. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/tick.mcfunction +0 -3
  774. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/tick_if_1.mcfunction +0 -1
  775. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/update.mcfunction +0 -4
  776. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/variable_demo.mcfunction +0 -7
  777. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/weapon_effects.mcfunction +0 -3
  778. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/weapon_effects_else_1.mcfunction +0 -3
  779. minecraft_datapack_language-15.4.27/dist_test/data/variables/function/weapon_effects_if_1.mcfunction +0 -3
  780. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/conditional_demo.mcfunction +0 -3
  781. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/conditional_demo_else_3.mcfunction +0 -2
  782. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/conditional_demo_if_3.mcfunction +0 -3
  783. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/conditional_demo_if_3_else_0.mcfunction +0 -3
  784. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/conditional_demo_if_3_if_0.mcfunction +0 -3
  785. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -2
  786. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -3
  787. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/countdown.mcfunction +0 -3
  788. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/custom_commands.mcfunction +0 -6
  789. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/hello.mcfunction +0 -3
  790. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/increment_global.mcfunction +0 -3
  791. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/increment_player.mcfunction +0 -3
  792. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/init.mcfunction +0 -4
  793. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/inner.mcfunction +0 -3
  794. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/load.mcfunction +0 -14
  795. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/loop_demo.mcfunction +0 -3
  796. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/main.mcfunction +0 -8
  797. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/phase_2.mcfunction +0 -7
  798. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/reset.mcfunction +0 -5
  799. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/scoreboard_demo.mcfunction +0 -4
  800. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/show_scores.mcfunction +0 -3
  801. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/start_game.mcfunction +0 -7
  802. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/start_game_if_1.mcfunction +0 -3
  803. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/start_game_if_5.mcfunction +0 -3
  804. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/test_countdown_while_1.mcfunction +0 -3
  805. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/test_loop_demo_while_2.mcfunction +0 -6
  806. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/test_loop_demo_while_2_else_0.mcfunction +0 -2
  807. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/test_loop_demo_while_2_if_0.mcfunction +0 -2
  808. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/test_loop_demo_while_2_if_2.mcfunction +0 -1
  809. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/test_main_while_2.mcfunction +0 -3
  810. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/test_scoreboard_demo_while_3.mcfunction +0 -4
  811. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/test_scoreboard_demo_while_3_if_1.mcfunction +0 -2
  812. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/test_start_game_while_4.mcfunction +0 -3
  813. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/tick.mcfunction +0 -3
  814. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/tick_if_1.mcfunction +0 -1
  815. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/update.mcfunction +0 -4
  816. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/variable_demo.mcfunction +0 -7
  817. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/weapon_effects.mcfunction +0 -3
  818. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/weapon_effects_else_1.mcfunction +0 -3
  819. minecraft_datapack_language-15.4.27/dist_test/data/while_loops/function/weapon_effects_if_1.mcfunction +0 -3
  820. minecraft_datapack_language-15.4.27/dist_test/pack.mcmeta +0 -6
  821. minecraft_datapack_language-15.4.27/dist_test.zip +0 -0
  822. minecraft_datapack_language-15.4.27/docs/_data/version.yml +0 -3
  823. minecraft_datapack_language-15.4.27/docs/_docs/language-reference.md +0 -389
  824. minecraft_datapack_language-15.4.27/minecraft_datapack_language/__init__.py +0 -12
  825. minecraft_datapack_language-15.4.27/minecraft_datapack_language/ast_nodes.py +0 -151
  826. minecraft_datapack_language-15.4.27/minecraft_datapack_language/cli.py +0 -159
  827. minecraft_datapack_language-15.4.27/minecraft_datapack_language/cli_build.py +0 -1292
  828. minecraft_datapack_language-15.4.27/minecraft_datapack_language/cli_check.py +0 -155
  829. minecraft_datapack_language-15.4.27/minecraft_datapack_language/cli_colors.py +0 -264
  830. minecraft_datapack_language-15.4.27/minecraft_datapack_language/cli_help.py +0 -508
  831. minecraft_datapack_language-15.4.27/minecraft_datapack_language/cli_new.py +0 -300
  832. minecraft_datapack_language-15.4.27/minecraft_datapack_language/cli_utils.py +0 -276
  833. minecraft_datapack_language-15.4.27/minecraft_datapack_language/expression_processor.py +0 -352
  834. minecraft_datapack_language-15.4.27/minecraft_datapack_language/linter.py +0 -409
  835. minecraft_datapack_language-15.4.27/minecraft_datapack_language/mdl_lexer_js.py +0 -754
  836. minecraft_datapack_language-15.4.27/minecraft_datapack_language/mdl_parser_js.py +0 -1049
  837. minecraft_datapack_language-15.4.27/minecraft_datapack_language/pack.py +0 -758
  838. minecraft_datapack_language-15.4.27/minecraft_datapack_language.egg-info/PKG-INFO +0 -1274
  839. minecraft_datapack_language-15.4.27/minecraft_datapack_language.egg-info/SOURCES.txt +0 -1317
  840. minecraft_datapack_language-15.4.27/test_color_project/README.md +0 -116
  841. minecraft_datapack_language-15.4.27/test_color_project/main.mdl +0 -9
  842. minecraft_datapack_language-15.4.27/test_colors_final/README.md +0 -122
  843. minecraft_datapack_language-15.4.27/test_colors_final/main.mdl +0 -72
  844. minecraft_datapack_language-15.4.27/test_complex_output.zip +0 -0
  845. minecraft_datapack_language-15.4.27/test_examples/01_basic_hello_world.mdl +0 -11
  846. minecraft_datapack_language-15.4.27/test_examples/02_variables_and_scopes.mdl +0 -28
  847. minecraft_datapack_language-15.4.27/test_examples/03_scoped_function_calls.mdl +0 -31
  848. minecraft_datapack_language-15.4.27/test_examples/04_while_loops.mdl +0 -32
  849. minecraft_datapack_language-15.4.27/test_examples/05_raw_commands.mdl +0 -30
  850. minecraft_datapack_language-15.4.27/test_examples/06_comprehensive_example.mdl +0 -68
  851. minecraft_datapack_language-15.4.27/test_examples/test_output/basic_hello/data/basic_hello/function/load.mcfunction +0 -1
  852. minecraft_datapack_language-15.4.27/test_examples/test_output/basic_hello/data/basic_hello/function/main.mcfunction +0 -3
  853. minecraft_datapack_language-15.4.27/test_examples/test_output/basic_hello/data/minecraft/tags/function/load.json +0 -7
  854. minecraft_datapack_language-15.4.27/test_examples/test_output/basic_hello/pack.mcmeta +0 -6
  855. minecraft_datapack_language-15.4.27/test_examples/test_output/basic_hello.zip +0 -0
  856. minecraft_datapack_language-15.4.27/test_examples/test_output/raw_commands/data/minecraft/tags/function/load.json +0 -7
  857. minecraft_datapack_language-15.4.27/test_examples/test_output/raw_commands/data/raw_commands/function/custom_commands.mcfunction +0 -6
  858. minecraft_datapack_language-15.4.27/test_examples/test_output/raw_commands/data/raw_commands/function/load.mcfunction +0 -1
  859. minecraft_datapack_language-15.4.27/test_examples/test_output/raw_commands/data/raw_commands/function/main.mcfunction +0 -7
  860. minecraft_datapack_language-15.4.27/test_examples/test_output/raw_commands/pack.mcmeta +0 -6
  861. minecraft_datapack_language-15.4.27/test_examples/test_output/raw_commands.zip +0 -0
  862. minecraft_datapack_language-15.4.27/test_examples/test_output/scoped_calls/data/minecraft/tags/function/load.json +0 -7
  863. minecraft_datapack_language-15.4.27/test_examples/test_output/scoped_calls/data/scoped_calls/function/increment_global.mcfunction +0 -3
  864. minecraft_datapack_language-15.4.27/test_examples/test_output/scoped_calls/data/scoped_calls/function/increment_player.mcfunction +0 -3
  865. minecraft_datapack_language-15.4.27/test_examples/test_output/scoped_calls/data/scoped_calls/function/load.mcfunction +0 -3
  866. minecraft_datapack_language-15.4.27/test_examples/test_output/scoped_calls/data/scoped_calls/function/main.mcfunction +0 -7
  867. minecraft_datapack_language-15.4.27/test_examples/test_output/scoped_calls/data/scoped_calls/function/show_scores.mcfunction +0 -3
  868. minecraft_datapack_language-15.4.27/test_examples/test_output/scoped_calls/pack.mcmeta +0 -6
  869. minecraft_datapack_language-15.4.27/test_examples/test_output/scoped_calls.zip +0 -0
  870. minecraft_datapack_language-15.4.27/test_examples/test_output/variables/data/minecraft/tags/function/load.json +0 -7
  871. minecraft_datapack_language-15.4.27/test_examples/test_output/variables/data/variables/function/load.mcfunction +0 -4
  872. minecraft_datapack_language-15.4.27/test_examples/test_output/variables/data/variables/function/main.mcfunction +0 -7
  873. minecraft_datapack_language-15.4.27/test_examples/test_output/variables/data/variables/function/reset.mcfunction +0 -5
  874. minecraft_datapack_language-15.4.27/test_examples/test_output/variables/pack.mcmeta +0 -6
  875. minecraft_datapack_language-15.4.27/test_examples/test_output/variables.zip +0 -0
  876. minecraft_datapack_language-15.4.27/test_examples/test_output/while_loops/data/minecraft/tags/function/load.json +0 -7
  877. minecraft_datapack_language-15.4.27/test_examples/test_output/while_loops/data/while_loops/function/countdown.mcfunction +0 -3
  878. minecraft_datapack_language-15.4.27/test_examples/test_output/while_loops/data/while_loops/function/load.mcfunction +0 -3
  879. minecraft_datapack_language-15.4.27/test_examples/test_output/while_loops/data/while_loops/function/main.mcfunction +0 -5
  880. minecraft_datapack_language-15.4.27/test_examples/test_output/while_loops/data/while_loops/function/test_countdown_while_1.mcfunction +0 -3
  881. minecraft_datapack_language-15.4.27/test_examples/test_output/while_loops/data/while_loops/function/test_main_while_2.mcfunction +0 -3
  882. minecraft_datapack_language-15.4.27/test_examples/test_output/while_loops/data/while_loops/function/while_loops_countdown_while_1.mcfunction +0 -3
  883. minecraft_datapack_language-15.4.27/test_examples/test_output/while_loops/data/while_loops/function/while_loops_main_while_2.mcfunction +0 -3
  884. minecraft_datapack_language-15.4.27/test_examples/test_output/while_loops/pack.mcmeta +0 -6
  885. minecraft_datapack_language-15.4.27/test_examples/test_output/while_loops.zip +0 -0
  886. minecraft_datapack_language-15.4.27/test_examples/test_output_basic_hello_fixed/data/basic_hello/function/load.mcfunction +0 -1
  887. minecraft_datapack_language-15.4.27/test_examples/test_output_basic_hello_fixed/data/basic_hello/function/main.mcfunction +0 -3
  888. minecraft_datapack_language-15.4.27/test_examples/test_output_basic_hello_fixed/data/minecraft/tags/function/load.json +0 -7
  889. minecraft_datapack_language-15.4.27/test_examples/test_output_basic_hello_fixed/pack.mcmeta +0 -6
  890. minecraft_datapack_language-15.4.27/test_examples/test_output_basic_hello_fixed.zip +0 -0
  891. minecraft_datapack_language-15.4.27/test_examples/test_output_scoped_fixed/data/minecraft/tags/function/load.json +0 -7
  892. minecraft_datapack_language-15.4.27/test_examples/test_output_scoped_fixed/data/scoped_calls/function/increment_global.mcfunction +0 -3
  893. minecraft_datapack_language-15.4.27/test_examples/test_output_scoped_fixed/data/scoped_calls/function/increment_player.mcfunction +0 -3
  894. minecraft_datapack_language-15.4.27/test_examples/test_output_scoped_fixed/data/scoped_calls/function/load.mcfunction +0 -3
  895. minecraft_datapack_language-15.4.27/test_examples/test_output_scoped_fixed/data/scoped_calls/function/main.mcfunction +0 -5
  896. minecraft_datapack_language-15.4.27/test_examples/test_output_scoped_fixed/data/scoped_calls/function/show_scores.mcfunction +0 -3
  897. minecraft_datapack_language-15.4.27/test_examples/test_output_scoped_fixed/pack.mcmeta +0 -6
  898. minecraft_datapack_language-15.4.27/test_examples/test_output_scoped_fixed.zip +0 -0
  899. minecraft_datapack_language-15.4.27/test_examples/test_output_scoped_fixed_v2/data/minecraft/tags/function/load.json +0 -7
  900. minecraft_datapack_language-15.4.27/test_examples/test_output_scoped_fixed_v2/data/scoped_calls/function/increment_global.mcfunction +0 -3
  901. minecraft_datapack_language-15.4.27/test_examples/test_output_scoped_fixed_v2/data/scoped_calls/function/increment_player.mcfunction +0 -3
  902. minecraft_datapack_language-15.4.27/test_examples/test_output_scoped_fixed_v2/data/scoped_calls/function/load.mcfunction +0 -3
  903. minecraft_datapack_language-15.4.27/test_examples/test_output_scoped_fixed_v2/data/scoped_calls/function/main.mcfunction +0 -7
  904. minecraft_datapack_language-15.4.27/test_examples/test_output_scoped_fixed_v2/data/scoped_calls/function/show_scores.mcfunction +0 -3
  905. minecraft_datapack_language-15.4.27/test_examples/test_output_scoped_fixed_v2/pack.mcmeta +0 -6
  906. minecraft_datapack_language-15.4.27/test_examples/test_output_scoped_fixed_v2.zip +0 -0
  907. minecraft_datapack_language-15.4.27/test_examples/test_output_validation.py +0 -301
  908. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed/data/minecraft/tags/function/load.json +0 -7
  909. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed/data/variables/function/load.mcfunction +0 -4
  910. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed/data/variables/function/main.mcfunction +0 -7
  911. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed/data/variables/function/reset.mcfunction +0 -5
  912. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed/pack.mcmeta +0 -6
  913. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed.zip +0 -0
  914. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v10/data/minecraft/tags/function/load.json +0 -7
  915. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v10/data/variables/function/load.mcfunction +0 -4
  916. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v10/data/variables/function/main.mcfunction +0 -7
  917. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v10/data/variables/function/reset.mcfunction +0 -5
  918. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v10/pack.mcmeta +0 -6
  919. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v10.zip +0 -0
  920. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v2/data/minecraft/tags/function/load.json +0 -7
  921. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v2/data/variables/function/load.mcfunction +0 -4
  922. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v2/data/variables/function/main.mcfunction +0 -7
  923. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v2/data/variables/function/reset.mcfunction +0 -5
  924. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v2/pack.mcmeta +0 -6
  925. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v2.zip +0 -0
  926. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v3/data/minecraft/tags/function/load.json +0 -7
  927. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v3/data/variables/function/load.mcfunction +0 -4
  928. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v3/data/variables/function/main.mcfunction +0 -7
  929. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v3/data/variables/function/reset.mcfunction +0 -5
  930. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v3/pack.mcmeta +0 -6
  931. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v3.zip +0 -0
  932. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v4/data/minecraft/tags/function/load.json +0 -7
  933. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v4/data/variables/function/load.mcfunction +0 -4
  934. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v4/data/variables/function/main.mcfunction +0 -7
  935. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v4/data/variables/function/reset.mcfunction +0 -5
  936. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v4/pack.mcmeta +0 -6
  937. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v4.zip +0 -0
  938. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v5/data/minecraft/tags/function/load.json +0 -7
  939. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v5/data/variables/function/load.mcfunction +0 -4
  940. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v5/data/variables/function/main.mcfunction +0 -7
  941. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v5/data/variables/function/reset.mcfunction +0 -5
  942. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v5/pack.mcmeta +0 -6
  943. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v5.zip +0 -0
  944. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v6/data/minecraft/tags/function/load.json +0 -7
  945. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v6/data/variables/function/load.mcfunction +0 -4
  946. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v6/data/variables/function/main.mcfunction +0 -7
  947. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v6/data/variables/function/reset.mcfunction +0 -5
  948. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v6/pack.mcmeta +0 -6
  949. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v6.zip +0 -0
  950. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v8/data/minecraft/tags/function/load.json +0 -7
  951. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v8/data/variables/function/load.mcfunction +0 -4
  952. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v8/data/variables/function/main.mcfunction +0 -7
  953. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v8/data/variables/function/reset.mcfunction +0 -5
  954. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v8/pack.mcmeta +0 -6
  955. minecraft_datapack_language-15.4.27/test_examples/test_output_variables_fixed_v8.zip +0 -0
  956. minecraft_datapack_language-15.4.27/test_examples/test_output_while_loops_fixed/data/minecraft/tags/function/load.json +0 -7
  957. minecraft_datapack_language-15.4.27/test_examples/test_output_while_loops_fixed/data/while_loops/function/countdown.mcfunction +0 -3
  958. minecraft_datapack_language-15.4.27/test_examples/test_output_while_loops_fixed/data/while_loops/function/load.mcfunction +0 -3
  959. minecraft_datapack_language-15.4.27/test_examples/test_output_while_loops_fixed/data/while_loops/function/main.mcfunction +0 -5
  960. minecraft_datapack_language-15.4.27/test_examples/test_output_while_loops_fixed/data/while_loops/function/test_countdown_while_1.mcfunction +0 -3
  961. minecraft_datapack_language-15.4.27/test_examples/test_output_while_loops_fixed/data/while_loops/function/test_main_while_2.mcfunction +0 -3
  962. minecraft_datapack_language-15.4.27/test_examples/test_output_while_loops_fixed/pack.mcmeta +0 -6
  963. minecraft_datapack_language-15.4.27/test_examples/test_output_while_loops_fixed.zip +0 -0
  964. minecraft_datapack_language-15.4.27/test_final_explicit_output.zip +0 -0
  965. minecraft_datapack_language-15.4.27/test_final_output.zip +0 -0
  966. minecraft_datapack_language-15.4.27/test_output.zip +0 -0
  967. minecraft_datapack_language-15.4.27/test_output_complex.zip +0 -0
  968. minecraft_datapack_language-15.4.27/test_output_scope.zip +0 -0
  969. minecraft_datapack_language-15.4.27/test_project/README.md +0 -122
  970. minecraft_datapack_language-15.4.27/test_project/main.mdl +0 -72
  971. minecraft_datapack_language-15.4.27/test_scoped_output.zip +0 -0
  972. minecraft_datapack_language-15.4.27/test_scoped_output2.zip +0 -0
  973. minecraft_datapack_language-15.4.27/test_scoped_output_final.zip +0 -0
  974. minecraft_datapack_language-15.4.27/test_single/data/basic_hello/function/load.mcfunction +0 -1
  975. minecraft_datapack_language-15.4.27/test_single/data/basic_hello/function/main.mcfunction +0 -3
  976. minecraft_datapack_language-15.4.27/test_single/data/minecraft/tags/function/load.json +0 -7
  977. minecraft_datapack_language-15.4.27/test_single/pack.mcmeta +0 -6
  978. minecraft_datapack_language-15.4.27/test_single.zip +0 -0
  979. minecraft_datapack_language-15.4.27/test_single_debug/data/basic_hello/function/load.mcfunction +0 -1
  980. minecraft_datapack_language-15.4.27/test_single_debug/data/basic_hello/function/main.mcfunction +0 -3
  981. minecraft_datapack_language-15.4.27/test_single_debug/data/minecraft/tags/function/load.json +0 -7
  982. minecraft_datapack_language-15.4.27/test_single_debug/pack.mcmeta +0 -6
  983. minecraft_datapack_language-15.4.27/test_single_debug.zip +0 -0
  984. minecraft_datapack_language-15.4.27/test_single_debug2/data/basic_hello/function/load.mcfunction +0 -1
  985. minecraft_datapack_language-15.4.27/test_single_debug2/data/basic_hello/function/main.mcfunction +0 -3
  986. minecraft_datapack_language-15.4.27/test_single_debug2/data/minecraft/tags/function/load.json +0 -7
  987. minecraft_datapack_language-15.4.27/test_single_debug2/pack.mcmeta +0 -6
  988. minecraft_datapack_language-15.4.27/test_single_debug2.zip +0 -0
  989. minecraft_datapack_language-15.4.27/test_single_final/data/basic_hello/function/load.mcfunction +0 -1
  990. minecraft_datapack_language-15.4.27/test_single_final/data/basic_hello/function/main.mcfunction +0 -3
  991. minecraft_datapack_language-15.4.27/test_single_final/data/minecraft/tags/function/load.json +0 -6
  992. minecraft_datapack_language-15.4.27/test_single_final/pack.mcmeta +0 -6
  993. minecraft_datapack_language-15.4.27/test_single_final.zip +0 -0
  994. minecraft_datapack_language-15.4.27/test_user_output.zip +0 -0
  995. minecraft_datapack_language-15.4.27/tests/__init__.py +0 -1
  996. minecraft_datapack_language-15.4.27/tests/test_basic.py +0 -440
  997. minecraft_datapack_language-15.4.27/tests/test_cli_comprehensive.py +0 -486
  998. minecraft_datapack_language-15.4.27/tests/test_comprehensive.py +0 -817
  999. minecraft_datapack_language-15.4.27/tests/test_comprehensive_edge_cases.py +0 -884
  1000. minecraft_datapack_language-15.4.27/tests/test_comprehensive_features.py +0 -805
  1001. minecraft_datapack_language-15.4.27/tests/test_io.py +0 -387
  1002. minecraft_datapack_language-15.4.27/vscode-extension/README.md +0 -322
  1003. minecraft_datapack_language-15.4.27/vscode-extension/snippets/mdl.json +0 -434
  1004. minecraft_datapack_language-15.4.27/vscode-extension/syntaxes/mdl.tmLanguage.json +0 -148
  1005. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/.github/actions/mdl-compile/action.yml +0 -0
  1006. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/.github/workflows/docs.yml +0 -0
  1007. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/.github/workflows/pypi.yml +0 -0
  1008. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/.github/workflows/release.yml +0 -0
  1009. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/.github/workflows/test-examples.yml +0 -0
  1010. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/.github/workflows/update-website-version.yml +0 -0
  1011. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/.gitignore +0 -0
  1012. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/CONDITIONALS_IMPLEMENTATION.md +0 -0
  1013. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/LICENSE +0 -0
  1014. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/Makefile +0 -0
  1015. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/advancements/diamond_sword.json +0 -0
  1016. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/advancements/first_spell.json +0 -0
  1017. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/advancements/other_advancement.json +0 -0
  1018. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/advancements/test_advancement.json +0 -0
  1019. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/complex_scopes/function/main_else_8.mcfunction +0 -0
  1020. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/complex_scopes/function/main_if_8.mcfunction +0 -0
  1021. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_basic_if_if_2.mcfunction +0 -0
  1022. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_basic_if_if_3.mcfunction +0 -0
  1023. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_basic_if_if_4.mcfunction +0 -0
  1024. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_complex_if_if_2.mcfunction +0 -0
  1025. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_complex_if_if_3.mcfunction +0 -0
  1026. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_complex_if_if_4.mcfunction +0 -0
  1027. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_complex_if_if_5.mcfunction +0 -0
  1028. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_control_complex_expressions_if_2.mcfunction +0 -0
  1029. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_control_complex_expressions_if_4.mcfunction +0 -0
  1030. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_control_variable_substitution_if_2.mcfunction +0 -0
  1031. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_control_with_raw_if_2.mcfunction +0 -0
  1032. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_control_with_scopes_if_5.mcfunction +0 -0
  1033. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_control_with_tellraw_else_2.mcfunction +0 -0
  1034. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_control_with_tellraw_if_2.mcfunction +0 -0
  1035. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_control_with_tellraw_if_4.mcfunction +0 -0
  1036. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_if_else_else_2.mcfunction +0 -0
  1037. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_if_else_else_3.mcfunction +0 -0
  1038. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_if_else_else_4.mcfunction +0 -0
  1039. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_if_else_if_2.mcfunction +0 -0
  1040. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_if_else_if_3.mcfunction +0 -0
  1041. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_if_else_if_4.mcfunction +0 -0
  1042. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_nested_if_else_2.mcfunction +0 -0
  1043. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_nested_if_else_3.mcfunction +0 -0
  1044. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_nested_if_else_3_else_0.mcfunction +0 -0
  1045. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_nested_if_else_3_if_0.mcfunction +0 -0
  1046. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_nested_if_if_2.mcfunction +0 -0
  1047. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_nested_if_if_2_else_0.mcfunction +0 -0
  1048. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_nested_if_if_2_if_0.mcfunction +0 -0
  1049. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_nested_if_if_2_if_0_else_0.mcfunction +0 -0
  1050. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_nested_if_if_2_if_0_if_0.mcfunction +0 -0
  1051. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_nested_if_if_3.mcfunction +0 -0
  1052. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_nested_if_if_3_else_0.mcfunction +0 -0
  1053. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/comprehensive_control_test/function/test_nested_if_if_3_if_0.mcfunction +0 -0
  1054. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/control_test/function/main_if_0.mcfunction +0 -0
  1055. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/control_test/function/main_while_1.mcfunction +0 -0
  1056. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/control_test/function/main_while_body_1.mcfunction +0 -0
  1057. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/if_test/function/main_else_1.mcfunction +0 -0
  1058. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/if_test/function/main_if_1.mcfunction +0 -0
  1059. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/conditional_demo_else_3.mcfunction +0 -0
  1060. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/conditional_demo_if_3.mcfunction +0 -0
  1061. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/conditional_demo_if_3_else_0.mcfunction +0 -0
  1062. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/conditional_demo_if_3_if_0.mcfunction +0 -0
  1063. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/conditional_demo_if_3_if_0_else_0.mcfunction +0 -0
  1064. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/conditional_demo_if_3_if_0_if_0.mcfunction +0 -0
  1065. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/countdown_while_1.mcfunction +0 -0
  1066. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/countdown_while_body_1.mcfunction +0 -0
  1067. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/increase_tick_per_player_if_1.mcfunction +0 -0
  1068. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/increase_tick_per_player_if_1_if_0.mcfunction +0 -0
  1069. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/loop_demo_while_2.mcfunction +0 -0
  1070. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/loop_demo_while_body_2.mcfunction +0 -0
  1071. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/loop_demo_while_body_2_else_0.mcfunction +0 -0
  1072. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/loop_demo_while_body_2_if_0.mcfunction +0 -0
  1073. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/loop_demo_while_body_2_if_2.mcfunction +0 -0
  1074. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/main_else_0.mcfunction +0 -0
  1075. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/main_else_1.mcfunction +0 -0
  1076. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/main_else_5.mcfunction +0 -0
  1077. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/main_if_0.mcfunction +0 -0
  1078. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/main_if_1.mcfunction +0 -0
  1079. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/main_if_5.mcfunction +0 -0
  1080. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/main_while_0.mcfunction +0 -0
  1081. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/main_while_1.mcfunction +0 -0
  1082. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/main_while_2.mcfunction +0 -0
  1083. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/main_while_6.mcfunction +0 -0
  1084. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/main_while_7.mcfunction +0 -0
  1085. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/main_while_body_0.mcfunction +0 -0
  1086. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/main_while_body_1.mcfunction +0 -0
  1087. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/main_while_body_2.mcfunction +0 -0
  1088. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/main_while_body_6.mcfunction +0 -0
  1089. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/main_while_body_7.mcfunction +0 -0
  1090. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/scoreboard_demo_while_3.mcfunction +0 -0
  1091. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/scoreboard_demo_while_body_3.mcfunction +0 -0
  1092. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/scoreboard_demo_while_body_3_if_1.mcfunction +0 -0
  1093. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/start_game_if_1.mcfunction +0 -0
  1094. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/start_game_if_5.mcfunction +0 -0
  1095. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/start_game_while_4.mcfunction +0 -0
  1096. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/start_game_while_body_4.mcfunction +0 -0
  1097. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_basic_if_if_1.mcfunction +0 -0
  1098. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_basic_if_if_2.mcfunction +0 -0
  1099. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_basic_if_if_3.mcfunction +0 -0
  1100. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_basic_while_while_2.mcfunction +0 -0
  1101. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_basic_while_while_4.mcfunction +0 -0
  1102. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_basic_while_while_body_2.mcfunction +0 -0
  1103. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_basic_while_while_body_4.mcfunction +0 -0
  1104. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_if_if_1.mcfunction +0 -0
  1105. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_if_if_2.mcfunction +0 -0
  1106. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_if_if_3.mcfunction +0 -0
  1107. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_if_if_4.mcfunction +0 -0
  1108. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_nested_control_while_2.mcfunction +0 -0
  1109. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_nested_control_while_body_2.mcfunction +0 -0
  1110. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_nested_control_while_body_2_else_1.mcfunction +0 -0
  1111. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_nested_control_while_body_2_else_1_if_1.mcfunction +0 -0
  1112. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_nested_control_while_body_2_if_1.mcfunction +0 -0
  1113. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_nested_control_while_body_2_if_1_if_1.mcfunction +0 -0
  1114. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_nested_control_while_body_2_if_2.mcfunction +0 -0
  1115. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_scope_scenarios_if_1.mcfunction +0 -0
  1116. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_scope_scenarios_if_2.mcfunction +0 -0
  1117. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_scope_scenarios_if_3.mcfunction +0 -0
  1118. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_scope_scenarios_if_4.mcfunction +0 -0
  1119. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_while_while_3.mcfunction +0 -0
  1120. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_while_while_6.mcfunction +0 -0
  1121. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_while_while_body_3.mcfunction +0 -0
  1122. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_complex_while_while_body_6.mcfunction +0 -0
  1123. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_complex_expressions_if_1.mcfunction +0 -0
  1124. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_complex_expressions_if_3.mcfunction +0 -0
  1125. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_complex_expressions_while_2.mcfunction +0 -0
  1126. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_complex_expressions_while_body_2.mcfunction +0 -0
  1127. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_error_handling_if_1.mcfunction +0 -0
  1128. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_error_handling_if_2.mcfunction +0 -0
  1129. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_error_handling_while_3.mcfunction +0 -0
  1130. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_error_handling_while_body_3.mcfunction +0 -0
  1131. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_performance_while_2.mcfunction +0 -0
  1132. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_performance_while_4.mcfunction +0 -0
  1133. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_performance_while_body_2.mcfunction +0 -0
  1134. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_performance_while_body_2_if_1.mcfunction +0 -0
  1135. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_performance_while_body_4.mcfunction +0 -0
  1136. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_performance_while_body_4_while_2.mcfunction +0 -0
  1137. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_performance_while_body_4_while_body_2.mcfunction +0 -0
  1138. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_scoped_functions_if_1.mcfunction +0 -0
  1139. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_scoped_functions_if_3.mcfunction +0 -0
  1140. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_scoped_functions_while_2.mcfunction +0 -0
  1141. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_scoped_functions_while_body_2.mcfunction +0 -0
  1142. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_variable_substitution_if_1.mcfunction +0 -0
  1143. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_variable_substitution_if_3.mcfunction +0 -0
  1144. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_variable_substitution_while_2.mcfunction +0 -0
  1145. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_variable_substitution_while_body_2.mcfunction +0 -0
  1146. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_assignments_if_1.mcfunction +0 -0
  1147. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_assignments_if_3.mcfunction +0 -0
  1148. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_assignments_while_2.mcfunction +0 -0
  1149. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_assignments_while_body_2.mcfunction +0 -0
  1150. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_functions_if_1.mcfunction +0 -0
  1151. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_functions_if_3.mcfunction +0 -0
  1152. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_functions_while_2.mcfunction +0 -0
  1153. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_functions_while_body_2.mcfunction +0 -0
  1154. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_raw_if_1.mcfunction +0 -0
  1155. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_raw_while_2.mcfunction +0 -0
  1156. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_raw_while_body_2.mcfunction +0 -0
  1157. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_scopes_if_1.mcfunction +0 -0
  1158. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_scopes_if_2.mcfunction +0 -0
  1159. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_scopes_if_3.mcfunction +0 -0
  1160. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_scopes_if_4.mcfunction +0 -0
  1161. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_tellraw_else_1.mcfunction +0 -0
  1162. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_tellraw_if_1.mcfunction +0 -0
  1163. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_tellraw_if_3.mcfunction +0 -0
  1164. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_tellraw_while_2.mcfunction +0 -0
  1165. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_control_with_tellraw_while_body_2.mcfunction +0 -0
  1166. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_if_else_else_1.mcfunction +0 -0
  1167. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_if_else_else_2.mcfunction +0 -0
  1168. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_if_else_else_3.mcfunction +0 -0
  1169. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_if_else_if_1.mcfunction +0 -0
  1170. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_if_else_if_2.mcfunction +0 -0
  1171. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_if_else_if_3.mcfunction +0 -0
  1172. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_main_while_0.mcfunction +0 -0
  1173. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_main_while_body_0.mcfunction +0 -0
  1174. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_nested_if_else_1.mcfunction +0 -0
  1175. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_nested_if_else_2.mcfunction +0 -0
  1176. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_nested_if_else_2_else_0.mcfunction +0 -0
  1177. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_nested_if_else_2_if_0.mcfunction +0 -0
  1178. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_nested_if_if_1.mcfunction +0 -0
  1179. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_nested_if_if_1_else_0.mcfunction +0 -0
  1180. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_nested_if_if_1_if_0.mcfunction +0 -0
  1181. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_nested_if_if_1_if_0_else_0.mcfunction +0 -0
  1182. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_nested_if_if_1_if_0_if_0.mcfunction +0 -0
  1183. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_nested_if_if_2.mcfunction +0 -0
  1184. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_nested_if_if_2_else_0.mcfunction +0 -0
  1185. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_nested_if_if_2_if_0.mcfunction +0 -0
  1186. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_scope_conditionals_if_1.mcfunction +0 -0
  1187. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_scope_conditionals_if_2.mcfunction +0 -0
  1188. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_scope_conditionals_if_3.mcfunction +0 -0
  1189. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_scope_conditionals_while_4.mcfunction +0 -0
  1190. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_scope_conditionals_while_5.mcfunction +0 -0
  1191. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_scope_conditionals_while_body_4.mcfunction +0 -0
  1192. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_scope_conditionals_while_body_5.mcfunction +0 -0
  1193. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_scope_interactions_if_1.mcfunction +0 -0
  1194. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_scope_interactions_if_2.mcfunction +0 -0
  1195. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_scope_interactions_if_3.mcfunction +0 -0
  1196. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_while_break_while_2.mcfunction +0 -0
  1197. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_while_break_while_body_2.mcfunction +0 -0
  1198. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_while_break_while_body_2_if_1.mcfunction +0 -0
  1199. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/test_while_break_while_body_2_if_2.mcfunction +0 -0
  1200. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/tick_if_1.mcfunction +0 -0
  1201. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/tick_if_2.mcfunction +0 -0
  1202. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/tick_if_2_while_1.mcfunction +0 -0
  1203. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/tick_if_2_while_body_1.mcfunction +0 -0
  1204. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/weapon_effects_else_1.mcfunction +0 -0
  1205. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test/function/weapon_effects_if_1.mcfunction +0 -0
  1206. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test_final_template_fixed/function/main_else_8.mcfunction +0 -0
  1207. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/test_final_template_fixed/function/main_if_8.mcfunction +0 -0
  1208. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/while_test/function/main_while_0.mcfunction +0 -0
  1209. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/data/while_test/function/main_while_body_0.mcfunction +0 -0
  1210. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/docs/.env +0 -0
  1211. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/docs/404.html +0 -0
  1212. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/docs/Gemfile +0 -0
  1213. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/docs/README.md +0 -0
  1214. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/docs/_config.yml +0 -0
  1215. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/docs/_docs/cli-reference.md +0 -0
  1216. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/docs/_docs/contributing.md +0 -0
  1217. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/docs/_docs/docs-hub.md +0 -0
  1218. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/docs/_docs/documentation.md +0 -0
  1219. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/docs/_docs/examples.md +0 -0
  1220. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/docs/_docs/getting-started.md +0 -0
  1221. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/docs/_docs/multi-file-projects.md +0 -0
  1222. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/docs/_docs/python-api.md +0 -0
  1223. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/docs/_docs/vscode-extension.md +0 -0
  1224. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/docs/_includes/head-custom.html +0 -0
  1225. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/docs/_includes/navigation.html +0 -0
  1226. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/docs/_layouts/default.html +0 -0
  1227. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/docs/_layouts/page.html +0 -0
  1228. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/docs/_plugins/test_version.rb +0 -0
  1229. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/docs/_plugins/version_reader.rb +0 -0
  1230. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/docs/assets/css/style.css +0 -0
  1231. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/docs/docs.md +0 -0
  1232. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/docs/downloads.md +0 -0
  1233. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/docs/icons/favicon-16.png +0 -0
  1234. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/docs/icons/favicon-32.png +0 -0
  1235. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/docs/icons/favicon-48.png +0 -0
  1236. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/docs/icons/favicon-64.png +0 -0
  1237. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/docs/icons/icon-1024.png +0 -0
  1238. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/docs/icons/icon-128.png +0 -0
  1239. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/docs/icons/icon-256.png +0 -0
  1240. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/docs/icons/icon-512.png +0 -0
  1241. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/docs/icons/icon-64.png +0 -0
  1242. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/docs/index.md +0 -0
  1243. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/examples/hello_world.mdl +0 -0
  1244. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/examples/scope_examples.mdl +0 -0
  1245. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/examples/simple_counter.mdl +0 -0
  1246. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/icons/favicon-16.png +0 -0
  1247. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/icons/favicon-32.png +0 -0
  1248. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/icons/favicon-48.png +0 -0
  1249. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/icons/favicon-64.png +0 -0
  1250. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/icons/icon-1024.png +0 -0
  1251. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/icons/icon-128.png +0 -0
  1252. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/icons/icon-256.png +0 -0
  1253. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/icons/icon-512.png +0 -0
  1254. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/icons/icon-64.png +0 -0
  1255. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/item_modifiers/diamond_sword.json +0 -0
  1256. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/item_modifiers/enchant_tool.json +0 -0
  1257. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/item_modifiers/test_item_modifier.json +0 -0
  1258. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/loot_tables/diamond_sword.json +0 -0
  1259. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/loot_tables/epic_loot.json +0 -0
  1260. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/loot_tables/main_loot.json +0 -0
  1261. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/loot_tables/test_loot.json +0 -0
  1262. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/minecraft_datapack_language/dir_map.py +0 -0
  1263. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/minecraft_datapack_language/mdl_linter.py +0 -0
  1264. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/minecraft_datapack_language/utils.py +0 -0
  1265. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/minecraft_datapack_language.egg-info/dependency_links.txt +0 -0
  1266. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/minecraft_datapack_language.egg-info/entry_points.txt +0 -0
  1267. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/minecraft_datapack_language.egg-info/requires.txt +0 -0
  1268. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/minecraft_datapack_language.egg-info/top_level.txt +0 -0
  1269. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/my_awesome_pack/README.md +0 -0
  1270. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/my_awesome_pack/minecraft_datapack_language.mdl +0 -0
  1271. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/predicates/diamond_sword.json +0 -0
  1272. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/predicates/has_mana.json +0 -0
  1273. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/predicates/other_predicate.json +0 -0
  1274. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/predicates/test_predicate.json +0 -0
  1275. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/recipes/custom_pickaxe.json +0 -0
  1276. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/recipes/diamond_sword.json +0 -0
  1277. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/recipes/first.json +0 -0
  1278. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/recipes/inlet.json +0 -0
  1279. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/recipes/main_recipe.json +0 -0
  1280. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/recipes/outlet.json +0 -0
  1281. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/recipes/pipe.json +0 -0
  1282. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/recipes/second.json +0 -0
  1283. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/recipes/test_recipe.json +0 -0
  1284. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/recipes/wrench.json +0 -0
  1285. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/scripts/UpdateMDL.sh +0 -0
  1286. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/scripts/bootstrap.ps1 +0 -0
  1287. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/scripts/bootstrap.sh +0 -0
  1288. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/scripts/build_pkg.ps1 +0 -0
  1289. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/scripts/build_pkg.sh +0 -0
  1290. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/scripts/dev_build.ps1 +0 -0
  1291. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/scripts/dev_build.sh +0 -0
  1292. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/scripts/dev_setup.ps1 +0 -0
  1293. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/scripts/dev_setup.sh +0 -0
  1294. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/scripts/git-bash/bootstrap-gitbash.sh +0 -0
  1295. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/scripts/git-bash/build_pkg-gitbash.sh +0 -0
  1296. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/scripts/git-bash/test_cli-gitbash.sh +0 -0
  1297. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/scripts/release.sh +0 -0
  1298. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/scripts/test_cli.ps1 +0 -0
  1299. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/scripts/test_cli.sh +0 -0
  1300. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/scripts/test_dev.ps1 +0 -0
  1301. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/scripts/test_dev.sh +0 -0
  1302. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/scripts/update_docs.sh +0 -0
  1303. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/scripts/update_version_info.sh +0 -0
  1304. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/setup.cfg +0 -0
  1305. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/structures/diamond_sword.json +0 -0
  1306. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/structures/test_structure.json +0 -0
  1307. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/structures/workshop.json +0 -0
  1308. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/test_all_registry.mdl +0 -0
  1309. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/vscode-extension/icons/favicon-16.png +0 -0
  1310. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/vscode-extension/icons/favicon-32.png +0 -0
  1311. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/vscode-extension/icons/favicon-48.png +0 -0
  1312. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/vscode-extension/icons/favicon-64.png +0 -0
  1313. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/vscode-extension/icons/icon-1024.png +0 -0
  1314. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/vscode-extension/icons/icon-128.png +0 -0
  1315. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/vscode-extension/icons/icon-256.png +0 -0
  1316. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/vscode-extension/icons/icon-512.png +0 -0
  1317. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/vscode-extension/package-lock.json +0 -0
  1318. {minecraft_datapack_language-15.4.27 → minecraft_datapack_language-15.4.29}/vscode-extension/themes/mdl-color-theme.json +0 -0
  1319. {minecraft_datapack_language-15.4.27 → 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
@@ -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.mdl_parser_js import parse_mdl_js; print('[+] MDL parser imported successfully')"
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.mdl_lexer_js import MDLLexer; print('[+] MDL lexer imported successfully')"
53
+ python -c "from minecraft_datapack_language.mdl_lexer import MDLLexer; print('[+] MDL lexer imported successfully')"
54
54
 
55
- - name: Test MDL Linter Import
55
+ - name: Test AST Nodes Import
56
56
  run: |
57
- echo "Testing MDL linter import..."
58
- python -c "from minecraft_datapack_language.mdl_linter import MDLLinter; print('[+] MDL linter imported successfully')"
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 Expression Processor Import
60
+ - name: Test Error Classes Import
61
61
  run: |
62
- echo "Testing expression processor import..."
63
- python -c "from minecraft_datapack_language.expression_processor import ExpressionProcessor; print('[+] Expression processor imported successfully')"
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', 82)
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.mdl_parser_js import parse_mdl_js; print('[+] MDL parser imported successfully')"
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.mdl_parser_js import parse_mdl_js
86
- test_code = 'var num test_var = 0;'
87
- ast = parse_mdl_js(test_code)
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.mdl_parser_js import parse_mdl_js
96
- test_code = 'if "$test$ > 0" { say "test"; }'
97
- ast = parse_mdl_js(test_code)
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.mdl_parser_js import parse_mdl_js
106
- test_code = 'while "$counter$ < 10" { counter = $counter$ + 1; }'
107
- ast = parse_mdl_js(test_code)
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.mdl_parser_js import parse_mdl_js
118
+ from minecraft_datapack_language.mdl_parser import MDLParser
119
+ parser = MDLParser()
116
120
  try:
117
- parse_mdl_js('invalid syntax {')
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.mdl_parser_js import parse_mdl_js
136
+ from minecraft_datapack_language.mdl_parser import MDLParser
137
+ parser = MDLParser()
133
138
  test_code = '''
134
- pack "test" "Test pack" 82;
139
+ pack "test" "Test pack" 15;
135
140
  namespace "test";
136
- var num counter = 0;
137
- function "main" {
138
- counter = 0;
139
- while "$counter$ < 5" {
140
- counter = $counter$ + 1;
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 "test:main";
149
+ on_tick test:main;
145
150
  '''
146
- ast = parse_mdl_js(test_code)
151
+ ast = parser.parse(test_code)
147
152
  print('[+] Basic MDL file test passed')
148
153
  PY
149
154
 
150
- - name: Run Basic Test Suite
155
+ - name: Run Comprehensive End-to-End Tests
151
156
  run: |
152
- echo "Running basic test suite..."
153
- python -m pytest tests/test_basic.py -v --tb=short
157
+ echo "Running comprehensive end-to-end tests..."
158
+ python test_comprehensive_end_to_end.py
154
159
 
155
- - name: Run I/O Test Suite
160
+ - name: Run Complex Scenario Tests
156
161
  run: |
157
- echo "Running I/O test suite..."
158
- python -m pytest tests/test_io.py -v --tb=short
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 -m pytest tests/test_comprehensive_features.py -v --tb=short
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 -m pytest tests/ -v --tb=short
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
+ ![CI](https://github.com/aaron777collins/MinecraftDatapackLanguage/workflows/CI/badge.svg)
31
+ ![Test Examples](https://github.com/aaron777collins/MinecraftDatapackLanguage/workflows/Test%20Examples/badge.svg)
32
+ ![Documentation](https://github.com/aaron777collins/MinecraftDatapackLanguage/workflows/Build%20and%20Deploy%20Documentation/badge.svg)
33
+ ![PyPI](https://img.shields.io/pypi/v/minecraft-datapack-language?style=flat-square)
34
+ ![Release](https://github.com/aaron777collins/MinecraftDatapackLanguage/workflows/Release/badge.svg)
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
+ ![CI](https://github.com/aaron777collins/MinecraftDatapackLanguage/workflows/CI/badge.svg)
10
+ ![Test Examples](https://github.com/aaron777collins/MinecraftDatapackLanguage/workflows/Test%20Examples/badge.svg)
11
+ ![Documentation](https://github.com/aaron777collins/MinecraftDatapackLanguage/workflows/Build%20and%20Deploy%20Documentation/badge.svg)
12
+ ![PyPI](https://img.shields.io/pypi/v/minecraft-datapack-language?style=flat-square)
13
+ ![Release](https://github.com/aaron777collins/MinecraftDatapackLanguage/workflows/Release/badge.svg)
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! 🎮**