mc-shell 0.7.2__tar.gz → 0.8.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (744) hide show
  1. {mc_shell-0.7.2 → mc_shell-0.8.0}/PKG-INFO +19 -6
  2. {mc_shell-0.7.2 → mc_shell-0.8.0}/README.md +17 -3
  3. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/Vec3.py +3 -0
  4. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/__init__.py +9 -25
  5. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/blueprints/powers_api.py +42 -101
  6. mc_shell-0.8.0/mcshell/constants.py +226 -0
  7. mc_shell-0.8.0/mcshell/data/app/control.html +162 -0
  8. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/app/index.html +22 -30
  9. mc_shell-0.8.0/mcshell/data/app/mced.a29fdc3d.js +295 -0
  10. mc_shell-0.8.0/mcshell/data/app/mced.a29fdc3d.js.map +1 -0
  11. mc_shell-0.8.0/mcshell/data/app/mced.f25b9962.css +2 -0
  12. mc_shell-0.8.0/mcshell/data/app/mced.f25b9962.css.map +1 -0
  13. mc_shell-0.7.2/mcshell/data/app/toolbox.193e3fba.xml → mc_shell-0.8.0/mcshell/data/app/toolbox.84c8a23e.xml +49 -42
  14. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/LICENSE.txt +9 -0
  15. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/README.txt +24 -0
  16. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/advancement/calcite.json +34 -0
  17. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/advancement/root.json +7 -0
  18. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/advancement/tuff.json +34 -0
  19. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/advancement/world_boarder.json +111 -0
  20. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/ab.mcfunction +22 -0
  21. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/effects/mob-spawn.mcfunction +4 -0
  22. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/effects/party-mob-despawn.mcfunction +8 -0
  23. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/effects/party-mob-destruction.mcfunction +11 -0
  24. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/effects/party-mob-spawn.mcfunction +8 -0
  25. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/barrier-warning.mcfunction +1 -0
  26. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/biomes/00.mcfunction +12 -0
  27. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/biomes/01.mcfunction +12 -0
  28. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/biomes/02.mcfunction +12 -0
  29. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/biomes/03.mcfunction +12 -0
  30. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/biomes/04.mcfunction +12 -0
  31. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/biomes/05.mcfunction +12 -0
  32. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/biomes/06.mcfunction +12 -0
  33. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/biomes/07.mcfunction +12 -0
  34. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/biomes/08.mcfunction +12 -0
  35. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/biomes/09.mcfunction +46 -0
  36. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/biomes/10.mcfunction +12 -0
  37. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/biomes/11.mcfunction +12 -0
  38. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/biomes/12.mcfunction +12 -0
  39. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/biomes/13.mcfunction +12 -0
  40. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/biomes/14.mcfunction +12 -0
  41. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/biomes/15.mcfunction +12 -0
  42. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/chest_effects.mcfunction +12 -0
  43. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/monster-guard-death-msg.mcfunction +1 -0
  44. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/scoreboard.mcfunction +254 -0
  45. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/trial_title.mcfunction +4 -0
  46. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/tricky_trial_title.mcfunction +6 -0
  47. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/villager-set-name.mcfunction +54 -0
  48. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/0_to_99.mcfunction +100 -0
  49. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/1000_to_1099.mcfunction +100 -0
  50. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/100_to_199.mcfunction +100 -0
  51. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/1100_to_1199.mcfunction +100 -0
  52. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/1200_to_1299.mcfunction +100 -0
  53. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/1300_to_1399.mcfunction +100 -0
  54. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/1400_to_1499.mcfunction +100 -0
  55. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/1500_to_1599.mcfunction +100 -0
  56. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/1600_to_1699.mcfunction +100 -0
  57. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/1700_to_1799.mcfunction +100 -0
  58. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/1800_to_1899.mcfunction +100 -0
  59. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/1900_to_1999.mcfunction +100 -0
  60. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/200_to_299.mcfunction +100 -0
  61. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/300_to_399.mcfunction +100 -0
  62. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/400_to_499.mcfunction +100 -0
  63. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/500_to_599.mcfunction +100 -0
  64. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/600_to_699.mcfunction +100 -0
  65. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/700_to_799.mcfunction +100 -0
  66. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/800_to_899.mcfunction +100 -0
  67. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/900_to_999.mcfunction +100 -0
  68. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining.mcfunction +58 -0
  69. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/create.mcfunction +3 -0
  70. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/eventloop.mcfunction +64 -0
  71. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/on-join.mcfunction +10 -0
  72. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/on-load.mcfunction +11 -0
  73. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/progress.mcfunction +11 -0
  74. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/recovery-kit/00.mcfunction +3 -0
  75. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/recovery-kit/01.mcfunction +4 -0
  76. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/recovery-kit/02.mcfunction +6 -0
  77. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/recovery-kit/03.mcfunction +6 -0
  78. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/recovery-kit/04.mcfunction +6 -0
  79. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/recovery-kit/05.mcfunction +6 -0
  80. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/recovery-kit/06.mcfunction +6 -0
  81. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/recovery-kit/07.mcfunction +6 -0
  82. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/recovery-kit/08.mcfunction +7 -0
  83. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/recovery-kit/09.mcfunction +8 -0
  84. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/recovery-kit/10.mcfunction +7 -0
  85. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/recovery-kit/11.mcfunction +7 -0
  86. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/recovery-kit/12.mcfunction +7 -0
  87. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/recovery-kit/13.mcfunction +7 -0
  88. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/recovery-kit/14.mcfunction +6 -0
  89. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/recovery-kit/15.mcfunction +7 -0
  90. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/recovery-kit/16.mcfunction +8 -0
  91. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/recovery-kit/get.mcfunction +21 -0
  92. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/respawnendportal.mcfunction +19 -0
  93. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/spawnendportal.mcfunction +28 -0
  94. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/texts.mcfunction +56 -0
  95. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/toggle-features.mcfunction +34 -0
  96. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/world_border.mcfunction +2 -0
  97. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/help.mcfunction +10 -0
  98. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/loop.mcfunction +94 -0
  99. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/main.mcfunction +100 -0
  100. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/about.mcfunction +3 -0
  101. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/actionbar-toggle.mcfunction +14 -0
  102. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/help-phase-00.mcfunction +3 -0
  103. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/help-phase-01.mcfunction +3 -0
  104. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/help-phase-02.mcfunction +3 -0
  105. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/help-phase-03.mcfunction +3 -0
  106. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/help-phase-04.mcfunction +3 -0
  107. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/help-phase-05.mcfunction +3 -0
  108. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/help-phase-06.mcfunction +3 -0
  109. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/help-phase-07.mcfunction +4 -0
  110. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/help-phase-08.mcfunction +3 -0
  111. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/help-phase-09.mcfunction +3 -0
  112. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/help-phase-10.mcfunction +3 -0
  113. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/help-phase-11.mcfunction +3 -0
  114. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/help-phase-12.mcfunction +3 -0
  115. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/help-phase-13.mcfunction +3 -0
  116. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/help-phase-14.mcfunction +3 -0
  117. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/help-phase-15.mcfunction +3 -0
  118. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/help-trigger.mcfunction +16 -0
  119. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/help.mcfunction +38 -0
  120. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/main.mcfunction +15 -0
  121. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/phase-0-msg.mcfunction +4 -0
  122. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/phase-16-msg.mcfunction +4 -0
  123. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/phase-skip-confirm.mcfunction +4 -0
  124. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/phase-skip-trigger.mcfunction +17 -0
  125. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/phase-skip.mcfunction +56 -0
  126. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/scoreboard-toggle.mcfunction +14 -0
  127. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/skip-to-phase-00.mcfunction +8 -0
  128. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/skip-to-phase-01.mcfunction +7 -0
  129. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/skip-to-phase-02.mcfunction +8 -0
  130. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/skip-to-phase-03.mcfunction +7 -0
  131. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/skip-to-phase-04.mcfunction +7 -0
  132. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/skip-to-phase-05.mcfunction +7 -0
  133. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/skip-to-phase-06.mcfunction +7 -0
  134. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/skip-to-phase-07.mcfunction +7 -0
  135. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/skip-to-phase-08.mcfunction +7 -0
  136. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/skip-to-phase-09.mcfunction +7 -0
  137. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/skip-to-phase-10.mcfunction +7 -0
  138. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/skip-to-phase-11.mcfunction +7 -0
  139. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/skip-to-phase-12.mcfunction +7 -0
  140. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/skip-to-phase-13.mcfunction +7 -0
  141. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/skip-to-phase-14.mcfunction +7 -0
  142. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/skip-to-phase-15.mcfunction +7 -0
  143. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/skip-to-phase-16.mcfunction +8 -0
  144. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/start.mcfunction +7 -0
  145. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/01-01-pig.mcfunction +12 -0
  146. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/01-02-cow.mcfunction +12 -0
  147. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/01-03-sheep.mcfunction +12 -0
  148. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/01-04-chicken.mcfunction +13 -0
  149. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/02-01-mooshro.mcfunction +12 -0
  150. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/02-02-zombie.mcfunction +13 -0
  151. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/02-03-rabbit.mcfunction +15 -0
  152. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/02-04-spider.mcfunction +13 -0
  153. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/02-05-creeper.mcfunction +13 -0
  154. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/03-01-wolf.mcfunction +12 -0
  155. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/03-02-stray.mcfunction +13 -0
  156. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/03-03-fox.mcfunction +14 -0
  157. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/03-04-polar_b.mcfunction +12 -0
  158. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/03-05-goat.mcfunction +12 -0
  159. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/03-p01-stray.mcfunction +17 -0
  160. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/03-p02-zombie.mcfunction +17 -0
  161. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/04-01-zombie.mcfunction +13 -0
  162. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/04-02-skeleton.mcfunction +13 -0
  163. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/04-03-zombie.mcfunction +12 -0
  164. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/04-04-creeper.mcfunction +14 -0
  165. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/04-p01-zombie.mcfunction +17 -0
  166. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/04-p02-skeleton.mcfunction +18 -0
  167. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/04-p03-creeper.mcfunction +18 -0
  168. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/05-01-tropical.mcfunction +14 -0
  169. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/05-02-spider_jockey.mcfunction +12 -0
  170. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/05-03-axolotl.mcfunction +13 -0
  171. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/05-04-chicken_jockey.mcfunction +12 -0
  172. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/05-p01-chicken_jockey.mcfunction +24 -0
  173. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/05-p02-spider.mcfunction +18 -0
  174. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/06-01-turtle.mcfunction +13 -0
  175. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/06-02-drowned.mcfunction +13 -0
  176. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/06-03-salmon.mcfunction +14 -0
  177. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/06-04-tropica.mcfunction +14 -0
  178. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/06-05-guardia.mcfunction +13 -0
  179. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/06-06-pufferf.mcfunction +14 -0
  180. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/06-07-cod.mcfunction +14 -0
  181. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/06-08-elder_g copy.mcfunction +12 -0
  182. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/06-08-elder_g.mcfunction +12 -0
  183. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/06-09-nautilus.mcfunction +13 -0
  184. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/06-p01-drowned.mcfunction +18 -0
  185. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/06-p02-guardian.mcfunction +18 -0
  186. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/06-p03-elder_guar.mcfunction +17 -0
  187. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/07-01-fox.mcfunction +14 -0
  188. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/07-02-village.mcfunction +14 -0
  189. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/07-03-armadillo.mcfunction +14 -0
  190. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/07-04-husk.mcfunction +15 -0
  191. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/07-05-pillage.mcfunction +13 -0
  192. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/07-06-wanderi.mcfunction +19 -0
  193. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/07-07-donkey.mcfunction +13 -0
  194. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/07-08-camel.mcfunction +12 -0
  195. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/07-09-vindica.mcfunction +13 -0
  196. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/07-10-c_husk.mcfunction +13 -0
  197. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/07-11-parched.mcfunction +12 -0
  198. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/07-p01-husk.mcfunction +18 -0
  199. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/07-p02-pillager.mcfunction +17 -0
  200. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/07-p03-vindicator.mcfunction +18 -0
  201. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/07-p04-c_husk.mcfunction +24 -0
  202. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/08-01-parrot.mcfunction +14 -0
  203. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/08-02-vex.mcfunction +13 -0
  204. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/08-03-ocelot.mcfunction +13 -0
  205. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/08-04-panda.mcfunction +12 -0
  206. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/08-05-witch.mcfunction +13 -0
  207. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/08-06-horse.mcfunction +13 -0
  208. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/08-07-allay.mcfunction +12 -0
  209. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/08-p01-vex.mcfunction +18 -0
  210. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/08-p02-spider.mcfunction +17 -0
  211. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/08-p03-witch.mcfunction +17 -0
  212. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/09-01-tadpole.mcfunction +15 -0
  213. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/09-02-slime.mcfunction +16 -0
  214. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/09-03-zombie_villager.mcfunction +13 -0
  215. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/09-04-bogged.mcfunction +13 -0
  216. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/09-p01-slime.mcfunction +20 -0
  217. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/09-p02-zombie_villager.mcfunction +17 -0
  218. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/09-p03-bogged.mcfunction +18 -0
  219. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/10-01-piglin.mcfunction +13 -0
  220. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/10-02-magma_c.mcfunction +15 -0
  221. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/10-03-hoglin.mcfunction +13 -0
  222. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/10-04-blaze.mcfunction +13 -0
  223. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/10-05-strider.mcfunction +12 -0
  224. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/10-06-wither_.mcfunction +13 -0
  225. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/10-07-ghast.mcfunction +13 -0
  226. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/10-08-happy-ghast.mcfunction +12 -0
  227. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/10-p01-piglin.mcfunction +18 -0
  228. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/10-p02-magma_cube.mcfunction +19 -0
  229. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/10-p03-blaze.mcfunction +18 -0
  230. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/10-p04-ghast.mcfunction +17 -0
  231. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/11-01-bee.mcfunction +13 -0
  232. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/11-02-llama.mcfunction +13 -0
  233. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/11-03-bee.mcfunction +19 -0
  234. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/11-04-sniffer.mcfunction +12 -0
  235. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/11-p01-bee.mcfunction +23 -0
  236. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/11-p02-witch.mcfunction +18 -0
  237. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/12-01-cat.mcfunction +13 -0
  238. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/12-02-slime.mcfunction +16 -0
  239. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/12-03-mule.mcfunction +13 -0
  240. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/12-04-phantom.mcfunction +14 -0
  241. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/12-05-zombie_.mcfunction +13 -0
  242. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/12-p01-slime.mcfunction +20 -0
  243. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/12-p02-phantom.mcfunction +18 -0
  244. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/12-p03-zombie_.mcfunction +26 -0
  245. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/13-01-skeleto.mcfunction +13 -0
  246. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/13-02-skele_raid.mcfunction +21 -0
  247. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/13-03-warden.mcfunction +12 -0
  248. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/13-p01-skele_raid.mcfunction +26 -0
  249. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/13-p02-warden.mcfunction +17 -0
  250. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/14-01-silverf.mcfunction +15 -0
  251. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/14-02-creeper.mcfunction +14 -0
  252. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/14-03-cave_sp.mcfunction +14 -0
  253. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/14-04-skeleto.mcfunction +13 -0
  254. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/14-05-creeper.mcfunction +13 -0
  255. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/14-06-evoker.mcfunction +13 -0
  256. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/14-07-skeleto.mcfunction +14 -0
  257. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/14-p01-silverfish.mcfunction +18 -0
  258. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/14-p02-skeleton.mcfunction +17 -0
  259. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/14-p03-vex.mcfunction +18 -0
  260. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/14-p04-cave_spide.mcfunction +18 -0
  261. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/14-p05-evoker.mcfunction +17 -0
  262. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/15-01-endermi.mcfunction +16 -0
  263. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/15-02-enderma.mcfunction +14 -0
  264. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/15-03-endermi.mcfunction +22 -0
  265. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/15-04-shulker.mcfunction +12 -0
  266. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/15-p01-endermite.mcfunction +19 -0
  267. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/15-p02-enderman.mcfunction +18 -0
  268. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/15-p03-shulker.mcfunction +18 -0
  269. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/monster-party/03.mcfunction +9 -0
  270. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/monster-party/04.mcfunction +9 -0
  271. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/monster-party/05.mcfunction +9 -0
  272. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/monster-party/06.mcfunction +11 -0
  273. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/monster-party/07.mcfunction +13 -0
  274. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/monster-party/08.mcfunction +13 -0
  275. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/monster-party/09.mcfunction +13 -0
  276. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/monster-party/10.mcfunction +17 -0
  277. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/monster-party/11.mcfunction +11 -0
  278. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/monster-party/12.mcfunction +13 -0
  279. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/monster-party/13.mcfunction +9 -0
  280. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/monster-party/14.mcfunction +19 -0
  281. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/monster-party/15.mcfunction +23 -0
  282. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/monster-party/manager.mcfunction +30 -0
  283. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/monster-party/random.mcfunction +14 -0
  284. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/on-trigger.mcfunction +47 -0
  285. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/afterphases.mcfunction +18 -0
  286. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/endportal.mcfunction +12 -0
  287. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/phase0.mcfunction +43 -0
  288. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/phase1.mcfunction +149 -0
  289. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/phase10.mcfunction +359 -0
  290. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/phase11.mcfunction +425 -0
  291. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/phase12.mcfunction +488 -0
  292. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/phase13.mcfunction +376 -0
  293. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/phase14.mcfunction +455 -0
  294. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/phase15.mcfunction +321 -0
  295. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/phase2.mcfunction +242 -0
  296. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/phase3.mcfunction +393 -0
  297. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/phase4.mcfunction +356 -0
  298. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/phase5.mcfunction +327 -0
  299. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/phase6.mcfunction +358 -0
  300. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/phase7.mcfunction +418 -0
  301. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/phase8.mcfunction +459 -0
  302. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/phase9.mcfunction +453 -0
  303. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/spawner.mcfunction +32 -0
  304. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/waiting.mcfunction +175 -0
  305. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/waitinginit.mcfunction +68 -0
  306. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-block/01.mcfunction +7 -0
  307. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-block/02.mcfunction +20 -0
  308. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-block/03.mcfunction +32 -0
  309. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-block/04.mcfunction +38 -0
  310. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-block/05.mcfunction +43 -0
  311. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-block/06.mcfunction +49 -0
  312. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-block/07.mcfunction +66 -0
  313. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-block/08.mcfunction +53 -0
  314. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-block/09.mcfunction +87 -0
  315. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-block/10.mcfunction +104 -0
  316. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-block/11.mcfunction +111 -0
  317. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-block/12.mcfunction +114 -0
  318. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-block/13.mcfunction +121 -0
  319. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-block/14.mcfunction +129 -0
  320. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-block/15.mcfunction +133 -0
  321. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-block/trials.mcfunction +13 -0
  322. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-mob/01.mcfunction +5 -0
  323. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-mob/02.mcfunction +6 -0
  324. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-mob/03.mcfunction +9 -0
  325. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-mob/04.mcfunction +5 -0
  326. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-mob/05.mcfunction +5 -0
  327. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-mob/06.mcfunction +15 -0
  328. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-mob/07.mcfunction +14 -0
  329. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-mob/08.mcfunction +10 -0
  330. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-mob/09.mcfunction +7 -0
  331. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-mob/10.mcfunction +9 -0
  332. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-mob/11.mcfunction +5 -0
  333. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-mob/12.mcfunction +6 -0
  334. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-mob/13.mcfunction +4 -0
  335. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-mob/14.mcfunction +8 -0
  336. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-mob/15.mcfunction +5 -0
  337. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-mob/all.mcfunction +102 -0
  338. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobamount-1-1.mcfunction +6 -0
  339. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobamount-1-2.mcfunction +6 -0
  340. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobamount-1-3.mcfunction +6 -0
  341. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobamount-2-2.mcfunction +6 -0
  342. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobamount-2-3.mcfunction +6 -0
  343. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobamount-2-4.mcfunction +6 -0
  344. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobamount-3-4.mcfunction +6 -0
  345. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobamount-3-5.mcfunction +6 -0
  346. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobamount-8-b.mcfunction +6 -0
  347. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobamount-main.mcfunction +8 -0
  348. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobtype-1-4b.mcfunction +6 -0
  349. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobtype-1-5.mcfunction +6 -0
  350. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobtype-1-8.mcfunction +6 -0
  351. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobtype-1-a.mcfunction +6 -0
  352. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobtype-1-b.mcfunction +6 -0
  353. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobtype-1-e.mcfunction +6 -0
  354. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobtype-1-g.mcfunction +6 -0
  355. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobtype-1-h.mcfunction +6 -0
  356. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobtype-1-i.mcfunction +6 -0
  357. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobtype-1-j.mcfunction +6 -0
  358. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobtype-1-k.mcfunction +6 -0
  359. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobtype-1-l.mcfunction +6 -0
  360. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobtype-1-n.mcfunction +6 -0
  361. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobtype-main.mcfunction +11 -0
  362. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-partyrand-0-12.mcfunction +6 -0
  363. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-partyrand-main.mcfunction +8 -0
  364. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randafter-1-b4.mcfunction +6 -0
  365. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randafter-main.mcfunction +13 -0
  366. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randblock-1-154.mcfunction +6 -0
  367. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randblock-1-168.mcfunction +6 -0
  368. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randblock-1-1cr.mcfunction +6 -0
  369. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randblock-1-5m.mcfunction +6 -0
  370. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randblock-1-c1.mcfunction +6 -0
  371. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randblock-1-ed.mcfunction +6 -0
  372. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randblock-1-eg.mcfunction +6 -0
  373. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randblock-1-g01.mcfunction +6 -0
  374. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randblock-1-gd.mcfunction +6 -0
  375. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randblock-1-ko.mcfunction +6 -0
  376. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randblock-1-mg.mcfunction +6 -0
  377. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randblock-1-n2.mcfunction +6 -0
  378. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randblock-1-o6.mcfunction +6 -0
  379. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randblock-1-vu.mcfunction +6 -0
  380. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randblock-1-xp.mcfunction +6 -0
  381. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randblock-1-zi.mcfunction +6 -0
  382. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randblock-main.mcfunction +17 -0
  383. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randblock-trials.mcfunction +6 -0
  384. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-variant-1-2.mcfunction +6 -0
  385. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-variant-1-fr.mcfunction +6 -0
  386. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-variant-main.mcfunction +8 -0
  387. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-vilname-1-1g.mcfunction +6 -0
  388. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-vilname-main.mcfunction +10 -0
  389. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/sb.mcfunction +46 -0
  390. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/trees/acacia_tree.mcfunction +4 -0
  391. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/trees/azalea_tree.mcfunction +4 -0
  392. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/trees/birch_tree.mcfunction +4 -0
  393. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/trees/brown_mushhroom.mcfunction +4 -0
  394. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/trees/cherry_tree.mcfunction +4 -0
  395. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/trees/crimson_tree.mcfunction +4 -0
  396. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/trees/dark_oak_tree.mcfunction +4 -0
  397. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/trees/jungle_tree.mcfunction +4 -0
  398. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/trees/mangrove_tree.mcfunction +4 -0
  399. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/trees/oak_tree.mcfunction +4 -0
  400. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/trees/pale_oak_tree.mcfunction +4 -0
  401. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/trees/red_mushhroom.mcfunction +4 -0
  402. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/trees/spruce_tree.mcfunction +4 -0
  403. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/trees/warped_tree.mcfunction +4 -0
  404. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants/dolphin.mcfunction +3 -0
  405. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants/frog.mcfunction +4 -0
  406. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants/glow_squid.mcfunction +3 -0
  407. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants/squid.mcfunction +3 -0
  408. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants/wolf_cold.mcfunction +3 -0
  409. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants/wolf_dry.mcfunction +3 -0
  410. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants/wolf_jungle.mcfunction +3 -0
  411. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants/zombie_nautilus.mcfunction +3 -0
  412. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/chicken/cold.mcfunction +13 -0
  413. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/chicken/temperate.mcfunction +13 -0
  414. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/chicken/warm.mcfunction +13 -0
  415. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/cow/cold.mcfunction +13 -0
  416. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/cow/temperate.mcfunction +13 -0
  417. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/cow/warm.mcfunction +13 -0
  418. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/dolphin/adult.mcfunction +14 -0
  419. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/dolphin/baby.mcfunction +14 -0
  420. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/frog/01.mcfunction +4 -0
  421. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/frog/02.mcfunction +4 -0
  422. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/frog/03.mcfunction +4 -0
  423. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/glow_squid/adult.mcfunction +14 -0
  424. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/glow_squid/baby.mcfunction +14 -0
  425. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/pig/cold.mcfunction +13 -0
  426. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/pig/temperate.mcfunction +13 -0
  427. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/pig/warm.mcfunction +13 -0
  428. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/squid/adult.mcfunction +14 -0
  429. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/squid/baby.mcfunction +14 -0
  430. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/wolf/ashen.mcfunction +14 -0
  431. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/wolf/black.mcfunction +14 -0
  432. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/wolf/chestnut.mcfunction +14 -0
  433. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/wolf/pale.mcfunction +14 -0
  434. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/wolf/rusty.mcfunction +14 -0
  435. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/wolf/snowy.mcfunction +14 -0
  436. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/wolf/spotted.mcfunction +14 -0
  437. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/wolf/striped.mcfunction +14 -0
  438. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/wolf/woods.mcfunction +14 -0
  439. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/zombie_nautilus/temperate.mcfunction +14 -0
  440. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/zombie_nautilus/warm.mcfunction +14 -0
  441. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/item_modifier/diamond_axe_default.json +19 -0
  442. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/item_modifier/diamond_hoe_default.json +19 -0
  443. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/item_modifier/diamond_pickaxe_boost.json +30 -0
  444. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/item_modifier/diamond_shovel_default.json +19 -0
  445. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/item_modifier/diamond_sword_default.json +20 -0
  446. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/item_modifier/netherite_axe_default.json +19 -0
  447. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/item_modifier/netherite_hoe_default.json +19 -0
  448. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/item_modifier/netherite_pickaxe_boost.json +30 -0
  449. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/item_modifier/netherite_shovel_default.json +19 -0
  450. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/item_modifier/netherite_sword_default.json +20 -0
  451. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/00-gift.json +80 -0
  452. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/00.json +63 -0
  453. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/01-gift.json +255 -0
  454. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/01.json +171 -0
  455. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/02-gift.json +145 -0
  456. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/02-variety.json +367 -0
  457. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/02.json +143 -0
  458. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/03-gift.json +323 -0
  459. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/03-variety.json +586 -0
  460. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/03.json +293 -0
  461. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/04-gift.json +180 -0
  462. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/04-variety.json +670 -0
  463. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/04.json +227 -0
  464. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/05-gift.json +230 -0
  465. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/05-variety.json +823 -0
  466. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/05.json +269 -0
  467. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/06-gift.json +406 -0
  468. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/06-variety.json +1292 -0
  469. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/06.json +620 -0
  470. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/07-gift.json +392 -0
  471. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/07-variety.json +1553 -0
  472. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/07.json +342 -0
  473. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/08-gift.json +378 -0
  474. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/08-variety.json +1804 -0
  475. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/08.json +344 -0
  476. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/09-gift.json +459 -0
  477. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/09-variety.json +2042 -0
  478. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/09.json +283 -0
  479. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/10-gift.json +305 -0
  480. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/10-variety.json +2294 -0
  481. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/10.json +326 -0
  482. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/11-gift.json +278 -0
  483. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/11-variety.json +2434 -0
  484. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/11.json +171 -0
  485. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/12-gift.json +326 -0
  486. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/12-variety.json +2560 -0
  487. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/12.json +199 -0
  488. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/13-gift.json +330 -0
  489. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/13-variety.json +2686 -0
  490. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/13.json +185 -0
  491. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/14-gift.json +328 -0
  492. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/14-variety.json +2896 -0
  493. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/14.json +245 -0
  494. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/15-gift.json +205 -0
  495. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/15-variety.json +3051 -0
  496. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/15.json +161 -0
  497. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/heavy_core.json +57 -0
  498. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/help-waterbucket.json +30 -0
  499. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/musical.json +631 -0
  500. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/rarechest.json +1216 -0
  501. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/superchest.json +2100 -0
  502. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/trial_ominous_supplies.json +241 -0
  503. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/trial_pot.json +138 -0
  504. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/trial_supplies.json +131 -0
  505. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/structure/acacia.nbt +0 -0
  506. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/structure/azalea.nbt +0 -0
  507. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/structure/birch.nbt +0 -0
  508. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/structure/brown_mushroom.nbt +0 -0
  509. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/structure/cherry.nbt +0 -0
  510. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/structure/crimson.nbt +0 -0
  511. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/structure/dark_oak.nbt +0 -0
  512. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/structure/jungle.nbt +0 -0
  513. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/structure/mangrove.nbt +0 -0
  514. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/structure/oak.nbt +0 -0
  515. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/structure/pale_oak.nbt +0 -0
  516. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/structure/red_mushroom.nbt +0 -0
  517. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/structure/spruce.nbt +0 -0
  518. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/structure/warped.nbt +0 -0
  519. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/minecraft/recipe/calcite.json +10 -0
  520. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/minecraft/recipe/tuff.json +10 -0
  521. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/minecraft/tags/function/load.json +4 -0
  522. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/minecraft/tags/function/tick.json +4 -0
  523. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/minecraft/trial_spawner/trial_chamber/breeze/ominous_2.json +22 -0
  524. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/minecraft/trial_spawner/trial_chamber/melee/phantom/normal.json +15 -0
  525. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/minecraft/trial_spawner/trial_chamber/melee/phantom/ominous.json +26 -0
  526. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/minecraft/trial_spawner/trial_chamber/melee/phantom/ominous_2.json +22 -0
  527. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/minecraft/trial_spawner/trial_chamber/melee/zombie_villager/normal.json +15 -0
  528. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/minecraft/trial_spawner/trial_chamber/melee/zombie_villager/ominous.json +29 -0
  529. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/minecraft/trial_spawner/trial_chamber/ranged/poison_skeleton/ominous_2.json +25 -0
  530. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/minecraft/trial_spawner/trial_chamber/ranged/skeleton/ominous_2.json +25 -0
  531. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/minecraft/trial_spawner/trial_chamber/small_melee/bee/normal.json +16 -0
  532. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/minecraft/trial_spawner/trial_chamber/small_melee/bee/ominous.json +27 -0
  533. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/minecraft/trial_spawner/trial_chamber/small_melee/slime/ominous_2.json +32 -0
  534. mc_shell-0.8.0/mcshell/data/datapacks/oneblock/pack.mcmeta +7 -0
  535. mc_shell-0.8.0/mcshell/data/mcjuice-0.1.0.jar +0 -0
  536. mc_shell-0.8.0/mcshell/data/mcjuice_api.yaml +519 -0
  537. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/powers/stdlib.json +10505 -10244
  538. mc_shell-0.8.0/mcshell/data/taxonomy.json +12294 -0
  539. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/toolbox_template.xml +0 -9
  540. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/digitalsetactions.py +12 -12
  541. mc_shell-0.8.0/mcshell/event.py +118 -0
  542. mc_shell-0.8.0/mcshell/eventactions.py +73 -0
  543. mc_shell-0.8.0/mcshell/generated_actions.py +268 -0
  544. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/mcactions.py +23 -16
  545. mc_shell-0.8.0/mcshell/mcactions_base.py +389 -0
  546. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/mcclient.py +8 -3
  547. mc_shell-0.8.0/mcshell/mcjuice.py +207 -0
  548. mc_shell-0.8.0/mcshell/mcjuiceconn.py +66 -0
  549. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/mcplayer.py +20 -87
  550. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/mcrepo.py +20 -18
  551. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/mcserver.py +128 -167
  552. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/mcturtle.py +8 -8
  553. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/playeractions.py +14 -2
  554. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/qturtleactions.py +30 -0
  555. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/serveractions.py +27 -3
  556. {mc_shell-0.7.2 → mc_shell-0.8.0}/pyproject.toml +8 -15
  557. mc_shell-0.7.2/mcshell/constants.py +0 -439
  558. mc_shell-0.7.2/mcshell/data/FruitJuice-0.3.0.jar +0 -0
  559. mc_shell-0.7.2/mcshell/data/FruitJuice-0.4.0.jar +0 -0
  560. mc_shell-0.7.2/mcshell/data/app/control.a8439284.css +0 -2
  561. mc_shell-0.7.2/mcshell/data/app/control.a8439284.css.map +0 -1
  562. mc_shell-0.7.2/mcshell/data/app/control.b03e9afc.js +0 -2
  563. mc_shell-0.7.2/mcshell/data/app/control.b03e9afc.js.map +0 -1
  564. mc_shell-0.7.2/mcshell/data/app/control.html +0 -110
  565. mc_shell-0.7.2/mcshell/data/app/mced.3d4a5c3d.js +0 -271
  566. mc_shell-0.7.2/mcshell/data/app/mced.3d4a5c3d.js.map +0 -1
  567. mc_shell-0.7.2/mcshell/data/app/mced.3f8a9cca.css +0 -2
  568. mc_shell-0.7.2/mcshell/data/app/mced.3f8a9cca.css.map +0 -1
  569. mc_shell-0.7.2/mcshell/data/app/mced.a4de160c.js +0 -4
  570. mc_shell-0.7.2/mcshell/data/app/mced.a4de160c.js.map +0 -1
  571. mc_shell-0.7.2/mcshell/eventactions.py +0 -57
  572. mc_shell-0.7.2/mcshell/mcactions_base.py +0 -389
  573. mc_shell-0.7.2/mcshell/mcblockly.py +0 -490
  574. mc_shell-0.7.2/mcshell/pyncraftcactions.py +0 -148
  575. mc_shell-0.7.2/mcshell/registry_builder.py +0 -619
  576. mc_shell-0.7.2/mcshell/vendored/pyncraft/__init__.py +0 -0
  577. mc_shell-0.7.2/mcshell/vendored/pyncraft/block.py +0 -103
  578. mc_shell-0.7.2/mcshell/vendored/pyncraft/connection.py +0 -62
  579. mc_shell-0.7.2/mcshell/vendored/pyncraft/entity.py +0 -102
  580. mc_shell-0.7.2/mcshell/vendored/pyncraft/event.py +0 -65
  581. mc_shell-0.7.2/mcshell/vendored/pyncraft/logger.py +0 -44
  582. mc_shell-0.7.2/mcshell/vendored/pyncraft/minecraft.py +0 -362
  583. mc_shell-0.7.2/mcshell/vendored/pyncraft/util.py +0 -21
  584. mc_shell-0.7.2/mcshell/vendored/pyncraft/vec3.py +0 -114
  585. {mc_shell-0.7.2 → mc_shell-0.8.0}/LICENSE +0 -0
  586. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/Matrix3.py +0 -0
  587. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/blueprints/control_api.py +0 -0
  588. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/blueprints/ipython_api.py +0 -0
  589. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/FruitJuice-0.4.1.jar +0 -0
  590. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/app/mced.efd4d8e7.css +0 -0
  591. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/app/mced.efd4d8e7.css.map +0 -0
  592. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/control_layout.json +0 -0
  593. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/datapacks/flat_world/data/minecraft/dimension/overworld.json +0 -0
  594. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/datapacks/flat_world/data/minecraft/worldgen/biome/the_void.json +0 -0
  595. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/datapacks/flat_world/pack.mcmeta +0 -0
  596. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/datapacks/void_world/data/minecraft/dimension/overworld.json +0 -0
  597. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/datapacks/void_world/data/minecraft/functions/init.mcfunction +0 -0
  598. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/datapacks/void_world/data/minecraft/tags/functions/load.json +0 -0
  599. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/datapacks/void_world/data/minecraft/worldgen/biome/the_void.json +0 -0
  600. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/datapacks/void_world/pack.mcmeta +0 -0
  601. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/doc/command_docs.pkl +0 -0
  602. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/entities/entity_id_map.pkl +0 -0
  603. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/entities/generate_entity_blocks.mjs +0 -0
  604. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/entities/pickers.json +0 -0
  605. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/materials/colourables.json +0 -0
  606. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/materials/entity_overrides.json +0 -0
  607. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/materials/generate_material_blocks.mjs +0 -0
  608. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/materials/item_id_map.pkl +0 -0
  609. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/materials/materials.pkl +0 -0
  610. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/materials/mcblocks.csv +0 -0
  611. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/materials/pickers.json +0 -0
  612. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/materials/singles.json +0 -0
  613. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/paper-global-template.yaml +0 -0
  614. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/%3F.pkl +0 -0
  615. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/Commands.pkl +0 -0
  616. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/EntityType.java.pkl +0 -0
  617. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/Material.html.pkl +0 -0
  618. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/ability.pkl +0 -0
  619. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/advancement.pkl +0 -0
  620. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/alwaysday.pkl +0 -0
  621. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/attribute.pkl +0 -0
  622. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/ban-ip.pkl +0 -0
  623. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/ban.pkl +0 -0
  624. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/banlist.pkl +0 -0
  625. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/bossbar.pkl +0 -0
  626. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/camera.pkl +0 -0
  627. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/camerashake.pkl +0 -0
  628. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/changesetting.pkl +0 -0
  629. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/clear.pkl +0 -0
  630. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/clearspawnpoint.pkl +0 -0
  631. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/clone.pkl +0 -0
  632. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/connect.pkl +0 -0
  633. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/damage.pkl +0 -0
  634. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/data.pkl +0 -0
  635. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/datapack.pkl +0 -0
  636. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/daylock.pkl +0 -0
  637. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/debug.pkl +0 -0
  638. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/dedicatedwsserver.pkl +0 -0
  639. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/defaultgamemode.pkl +0 -0
  640. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/deop.pkl +0 -0
  641. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/dialogue.pkl +0 -0
  642. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/difficulty.pkl +0 -0
  643. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/effect.pkl +0 -0
  644. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/enchant.pkl +0 -0
  645. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/event.pkl +0 -0
  646. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/execute.pkl +0 -0
  647. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/experience.pkl +0 -0
  648. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/fill.pkl +0 -0
  649. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/fillbiome.pkl +0 -0
  650. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/fog.pkl +0 -0
  651. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/forceload.pkl +0 -0
  652. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/function.pkl +0 -0
  653. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/gamemode.pkl +0 -0
  654. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/gamerule.pkl +0 -0
  655. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/gametest.pkl +0 -0
  656. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/give.pkl +0 -0
  657. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/help.pkl +0 -0
  658. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/immutableworld.pkl +0 -0
  659. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/item.pkl +0 -0
  660. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/jfr.pkl +0 -0
  661. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/kick.pkl +0 -0
  662. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/kill.pkl +0 -0
  663. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/list.pkl +0 -0
  664. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/locate.pkl +0 -0
  665. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/loot.pkl +0 -0
  666. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/me.pkl +0 -0
  667. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/mobevent.pkl +0 -0
  668. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/msg.pkl +0 -0
  669. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/music.pkl +0 -0
  670. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/op.pkl +0 -0
  671. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/ops.pkl +0 -0
  672. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/pardon-ip.pkl +0 -0
  673. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/pardon.pkl +0 -0
  674. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/particle.pkl +0 -0
  675. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/perf.pkl +0 -0
  676. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/permission.pkl +0 -0
  677. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/place_(Java_Edition).pkl +0 -0
  678. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/playanimation.pkl +0 -0
  679. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/playsound.pkl +0 -0
  680. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/publish.pkl +0 -0
  681. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/random.pkl +0 -0
  682. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/recipe.pkl +0 -0
  683. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/reload.pkl +0 -0
  684. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/remove.pkl +0 -0
  685. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/replaceitem.pkl +0 -0
  686. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/return.pkl +0 -0
  687. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/ride.pkl +0 -0
  688. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/save-all.pkl +0 -0
  689. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/save-off.pkl +0 -0
  690. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/save-on.pkl +0 -0
  691. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/save.pkl +0 -0
  692. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/say.pkl +0 -0
  693. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/schedule.pkl +0 -0
  694. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/scoreboard.pkl +0 -0
  695. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/script.pkl +0 -0
  696. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/scriptevent.pkl +0 -0
  697. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/seed.pkl +0 -0
  698. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/setblock.pkl +0 -0
  699. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/setidletimeout.pkl +0 -0
  700. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/setmaxplayers.pkl +0 -0
  701. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/setworldspawn.pkl +0 -0
  702. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/spawnpoint.pkl +0 -0
  703. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/spectate.pkl +0 -0
  704. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/spreadplayers.pkl +0 -0
  705. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/stop.pkl +0 -0
  706. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/stopsound.pkl +0 -0
  707. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/structure.pkl +0 -0
  708. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/summon.pkl +0 -0
  709. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/tag.pkl +0 -0
  710. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/team.pkl +0 -0
  711. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/teammsg.pkl +0 -0
  712. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/teleport.pkl +0 -0
  713. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/tell.pkl +0 -0
  714. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/tellraw.pkl +0 -0
  715. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/testfor.pkl +0 -0
  716. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/testforblock.pkl +0 -0
  717. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/testforblocks.pkl +0 -0
  718. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/tickingarea.pkl +0 -0
  719. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/time.pkl +0 -0
  720. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/title.pkl +0 -0
  721. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/titleraw.pkl +0 -0
  722. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/tm.pkl +0 -0
  723. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/toggledownfall.pkl +0 -0
  724. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/tp.pkl +0 -0
  725. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/transferserver.pkl +0 -0
  726. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/trigger.pkl +0 -0
  727. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/volumearea.pkl +0 -0
  728. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/w.pkl +0 -0
  729. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/wb.pkl +0 -0
  730. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/weather.pkl +0 -0
  731. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/whitelist.pkl +0 -0
  732. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/worldborder.pkl +0 -0
  733. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/worldbuilder.pkl +0 -0
  734. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/wsserver.pkl +0 -0
  735. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/xp.pkl +0 -0
  736. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/digitalgeometryactions.py +0 -0
  737. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/mcexperience_base.py +0 -0
  738. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/mclsystem.py +0 -0
  739. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/mcscraper.py +0 -0
  740. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/mcshell.py +0 -0
  741. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/mcvoxel.py +0 -0
  742. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/mcvoxel_original.py +0 -0
  743. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/ppdownloader.py +0 -0
  744. {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/ppmanager.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mc-shell
3
- Version: 0.7.2
3
+ Version: 0.8.0
4
4
  Summary: An interactive shell and editor for controlling Minecraft servers and creating powers.
5
5
  License-File: LICENSE
6
6
  Author: Jeff
@@ -13,9 +13,8 @@ Classifier: Programming Language :: Python :: 3.12
13
13
  Classifier: Programming Language :: Python :: 3.13
14
14
  Classifier: Programming Language :: Python :: 3.14
15
15
  Requires-Dist: beautifulsoup4
16
- Requires-Dist: blockapily
16
+ Requires-Dist: blockapily (>=0.3.1,<0.4.0)
17
17
  Requires-Dist: click
18
- Requires-Dist: eventlet (>=0.40.2,<0.41.0)
19
18
  Requires-Dist: flask
20
19
  Requires-Dist: flask-cors
21
20
  Requires-Dist: flask-socketio
@@ -69,7 +68,7 @@ This guide will get you running in just a few minutes. Each step is linked to a
69
68
  ### Installation
70
69
 
71
70
  Before you begin, you will need a few things installed on your system (Linux, macOS, or Windows Subsystem for Linux):
72
- * **Python** (version 3.9 or higher)
71
+ * **Python** (version 3.10 or higher)
73
72
 
74
73
  Once the prerequisites are met, run the following commands in your terminal to download and install the project and all its dependencies. Note the recommended
75
74
  `--user` option: this will install in `~/.local/bin` so make sure your `PATH` includes this directory! And notice the package is called `mc-shell` but the
@@ -104,11 +103,25 @@ This section covers all the `%pp_` commands for managing your personal Paper ser
104
103
 
105
104
  ### Creating and Listing Worlds
106
105
 
107
- To create a new, self-contained world, use the `%pp_create_world` command. This will create a new folder in your home directory (`~/mc-worlds`), download the appropriate Paper server, and set up all the necessary configuration files. The current default version (which the client must match) is `1.21.4`.
106
+ To create a new, self-contained world, use the `%pp_create_world` command. This will create a new folder in your home directory (`~/mc-worlds`), download the appropriate Paper server, and set up all the necessary configuration files. The current default version (which the client must match) is `1.21.11` but you can specify any version you want with the `--version` option, for example `1.21.4`.
108
107
  ```ipython
109
108
  %pp_create_world my_creative_build --version=1.21.4
110
109
  ```
111
110
 
111
+ You can apply any set of datapacks that appear in your `~/mc-worlds/datapacks-library` directory. `mc-shell` ships with three datapacks: `flat_world`,`void_world` and a version of *OneBlock* by [IJAMinecraft](https://ijaminecraft.com/map/oneblock/) called `oneblock`.
112
+
113
+ To create a totally flat world, use the following command:
114
+ ```ipython
115
+ %pp_create_world my_flat_creative_build --datapacks=flat_world
116
+ ```
117
+ To create a *OneBlock* world, use the following command. Note we overlay the void datapack to clear the world.
118
+ ```ipython
119
+ %pp_create_world my_OneBlock --datapacks=void_world,oneblock
120
+ ```
121
+ You can download and apply any datapack you want by unzip it to a folder inside `~/mc-worlds/datapacks-library` and then passing the name of the folder to the `--datapacks` option as described above.
122
+
123
+ You can also add *PaperMC* plugins to your `~/mc-worlds/<world_name>/plugins` folder.
124
+
112
125
  To see a list of all the worlds you have created, use the `%pp_list_worlds` command.
113
126
 
114
127
  ### Starting and Stopping Worlds
@@ -164,6 +177,6 @@ The Control Panel is a touch-friendly UI for executing your saved powers in-game
164
177
 
165
178
  The interface has two modes:
166
179
 
167
- * **Run Mode:** The main grid displays your power "widgets." If a power has parameters, the widget will have interactive controls like sliders or pickers. Simply set the parameters and click "Execute."
180
+ * **Run Mode:** The main grid displays your power "widgets." If a power has parameters, a long press on the widget will make interactive controls like sliders or pickers appear. Simply set the parameters and click 'Load Configuration.' Then a quick press of the widget will execute that power.
168
181
  * **Edit Mode:** Click "Edit Layout" to customize your grid. You can open a library of all your saved powers, add them as new widgets to your grid, and drag-and-drop them to arrange your layout.
169
182
 
@@ -34,7 +34,7 @@ This guide will get you running in just a few minutes. Each step is linked to a
34
34
  ### Installation
35
35
 
36
36
  Before you begin, you will need a few things installed on your system (Linux, macOS, or Windows Subsystem for Linux):
37
- * **Python** (version 3.9 or higher)
37
+ * **Python** (version 3.10 or higher)
38
38
 
39
39
  Once the prerequisites are met, run the following commands in your terminal to download and install the project and all its dependencies. Note the recommended
40
40
  `--user` option: this will install in `~/.local/bin` so make sure your `PATH` includes this directory! And notice the package is called `mc-shell` but the
@@ -69,11 +69,25 @@ This section covers all the `%pp_` commands for managing your personal Paper ser
69
69
 
70
70
  ### Creating and Listing Worlds
71
71
 
72
- To create a new, self-contained world, use the `%pp_create_world` command. This will create a new folder in your home directory (`~/mc-worlds`), download the appropriate Paper server, and set up all the necessary configuration files. The current default version (which the client must match) is `1.21.4`.
72
+ To create a new, self-contained world, use the `%pp_create_world` command. This will create a new folder in your home directory (`~/mc-worlds`), download the appropriate Paper server, and set up all the necessary configuration files. The current default version (which the client must match) is `1.21.11` but you can specify any version you want with the `--version` option, for example `1.21.4`.
73
73
  ```ipython
74
74
  %pp_create_world my_creative_build --version=1.21.4
75
75
  ```
76
76
 
77
+ You can apply any set of datapacks that appear in your `~/mc-worlds/datapacks-library` directory. `mc-shell` ships with three datapacks: `flat_world`,`void_world` and a version of *OneBlock* by [IJAMinecraft](https://ijaminecraft.com/map/oneblock/) called `oneblock`.
78
+
79
+ To create a totally flat world, use the following command:
80
+ ```ipython
81
+ %pp_create_world my_flat_creative_build --datapacks=flat_world
82
+ ```
83
+ To create a *OneBlock* world, use the following command. Note we overlay the void datapack to clear the world.
84
+ ```ipython
85
+ %pp_create_world my_OneBlock --datapacks=void_world,oneblock
86
+ ```
87
+ You can download and apply any datapack you want by unzip it to a folder inside `~/mc-worlds/datapacks-library` and then passing the name of the folder to the `--datapacks` option as described above.
88
+
89
+ You can also add *PaperMC* plugins to your `~/mc-worlds/<world_name>/plugins` folder.
90
+
77
91
  To see a list of all the worlds you have created, use the `%pp_list_worlds` command.
78
92
 
79
93
  ### Starting and Stopping Worlds
@@ -129,5 +143,5 @@ The Control Panel is a touch-friendly UI for executing your saved powers in-game
129
143
 
130
144
  The interface has two modes:
131
145
 
132
- * **Run Mode:** The main grid displays your power "widgets." If a power has parameters, the widget will have interactive controls like sliders or pickers. Simply set the parameters and click "Execute."
146
+ * **Run Mode:** The main grid displays your power "widgets." If a power has parameters, a long press on the widget will make interactive controls like sliders or pickers appear. Simply set the parameters and click 'Load Configuration.' Then a quick press of the widget will execute that power.
133
147
  * **Edit Mode:** Click "Edit Layout" to customize your grid. You can open a library of all your saved powers, add them as new widgets to your grid, and drag-and-drop them to arrange your layout.
@@ -49,6 +49,9 @@ class Vec3:
49
49
  def __iter__(self):
50
50
  return iter((self.x, self.y, self.z))
51
51
 
52
+ def clone(self):
53
+ return Vec3(self.x, self.y, self.z)
54
+
52
55
  def to_tuple(self):
53
56
  return self.x,self.y,self.z
54
57
 
@@ -1,6 +1,5 @@
1
1
  import socket
2
2
  from pprint import pprint
3
- from threading import Thread,Event
4
3
 
5
4
  import IPython
6
5
  import getpass
@@ -21,6 +20,7 @@ from mcshell.mcserver import stop_app_server
21
20
  from mcshell.mcplayer import MCPlayer
22
21
 
23
22
  import atexit
23
+ from threading import Thread,Event
24
24
 
25
25
  @magics_class
26
26
  class MCShell(Magics):
@@ -31,7 +31,8 @@ class MCShell(Magics):
31
31
  self.ip = IPython.get_ipython()
32
32
 
33
33
  try:
34
- _mc_cmd_docs = pickle.load(MC_DOC_PATH.open('rb'))
34
+ with MC_DOC_PATH.open('rb') as f:
35
+ _mc_cmd_docs = pickle.load(f)
35
36
  except FileNotFoundError:
36
37
  from mcshell.mcscraper import make_docs
37
38
  _mc_cmd_docs = make_docs()
@@ -157,7 +158,7 @@ class MCShell(Magics):
157
158
  # Capturing strings first ensures we don't crash on int('')
158
159
  resp_port = Prompt.ask('Server Port:', default=str(self.server_data['port']))
159
160
  resp_rcon = Prompt.ask('RCON Port:', default=str(self.server_data['rcon_port']))
160
- resp_fj = Prompt.ask('FruitJuice Port:', default=str(self.server_data['fj_port']))
161
+ resp_fj = Prompt.ask('McJuice Port:', default=str(self.server_data['fj_port']))
161
162
  resp_app = Prompt.ask('Application Port:', default=str(self.server_data['app_port']))
162
163
 
163
164
  # Robust casting logic
@@ -226,12 +227,6 @@ class MCShell(Magics):
226
227
  "rcon.password": self.server_data.get('password'),
227
228
  "enable-command-block":'true',
228
229
  },
229
- "FruitJuice" : {
230
- "hostname": "0.0.0.0",
231
- "port": self.server_data.get('fj_port',FJ_PLUGIN_PORT),
232
- "location": "ABSOLUTE",
233
- "hitclick": "LEFT",
234
- },
235
230
  "paper": {
236
231
  "packet-limiter": {
237
232
  "all-packets": {
@@ -257,8 +252,8 @@ class MCShell(Magics):
257
252
  print(f"Error: Could not write world_manifest.json file. {e}")
258
253
  return
259
254
 
260
- # Always install FruitJuice from bundled version
261
- plugins_dir.joinpath(FJ_JAR_PATH.name).symlink_to(FJ_JAR_PATH)
255
+ # Always install McJuice from bundled version
256
+ plugins_dir.joinpath(MC_JUICE_JAR_PATH.name).symlink_to(MC_JUICE_JAR_PATH)
262
257
 
263
258
  # Install the plugins listed in the manifest
264
259
  plugin_urls = manifest.get("plugins", [])
@@ -967,29 +962,18 @@ class MCShell(Magics):
967
962
  execution_id = line.strip()
968
963
  if not execution_id:
969
964
  print("Usage: %mc_cancel_power <execution_id>")
970
- print("Currently running powers:", list(RUNNING_POWERS.keys()))
965
+ if RUNNING_POWERS:
966
+ print("Currently running powers:", list(RUNNING_POWERS.keys()))
971
967
  return
972
968
 
973
- # Lookup the execution metadata in the global registry
974
969
  power_metadata = RUNNING_POWERS.get(execution_id)
975
-
976
970
  if power_metadata:
977
971
  print(f"Sending cancellation signal to power: {execution_id}")
978
- # Corrected Key: Simply 'cancel_event'
972
+ # Corrected attribute access (removed paste garbage)
979
973
  power_metadata['cancel_event'].set()
980
974
  else:
981
975
  print(f"Error: No running power found with ID: {execution_id}")
982
976
 
983
- # @line_magic
984
- # def mc_start_debug(self, line):
985
- # """Starts the debug mcserver in a separate thread."""
986
- # start_debug_server()
987
- #
988
- # @line_magic
989
- # def mc_stop_debug(self, line):
990
- # """Stops the debug mcserver thread."""
991
- # stop_debug_server()
992
-
993
977
  def _get_mc_name(self) -> Optional[str]:
994
978
  """
995
979
  Determines and caches the Minecraft username for the current session.
@@ -2,18 +2,11 @@ import os
2
2
  import json
3
3
  from flask import Blueprint, request, jsonify, make_response, current_app, render_template_string, session, send_file
4
4
 
5
- from mcshell.constants import MC_CONTROL_LAYOUT_PATH
5
+ # from mcshell.constants import MC_CONTROL_LAYOUT_PATH
6
6
 
7
7
  # 1. Create a Blueprint instance.
8
- # 'powers_api' is the name of the blueprint.
9
- # __name__ helps Flask locate the blueprint.
10
- # url_prefix='/api' automatically prepends '/api' to all routes in this file.
11
8
  powers_bp = Blueprint('powers_api', __name__, url_prefix='/api')
12
9
 
13
-
14
- # 2. Move your power-related routes here.
15
- # Note that the decorator is now @powers_bp.route(...) instead of @app.route(...)
16
-
17
10
  @powers_bp.route('/powers', methods=['POST'])
18
11
  def save_new_power():
19
12
  """Saves a new power or updates an existing one."""
@@ -34,62 +27,44 @@ def save_new_power():
34
27
  "closeSaveModal": True
35
28
  }
36
29
  headers = {"HX-Trigger": json.dumps(trigger_data)}
37
- return jsonify({"success": True, "power_id": power_id}), 201, headers
30
+ return "", 204, headers
38
31
  except Exception as e:
39
- print(f"Error saving power for player {player_id}: {e}")
40
- return jsonify({"error": "An internal error occurred while saving the power."}), 500
41
-
42
- # NEW ENDPOINT TO SERVE THE LAYOUT DEFINITION
43
- @powers_bp.route('/control/layout', methods=['GET'])
44
- def get_control_layout():
45
- # In a real app, this would load the layout for the specific player
46
- # For now, it reads a static file.
47
- try:
48
- # Assuming control_layout.json is in the project root
49
- return send_file(MC_CONTROL_LAYOUT_PATH, mimetype='application/json')
50
- except FileNotFoundError:
51
- print(f"{MC_CONTROL_LAYOUT_PATH} not found!")
52
- # Return a default empty layout if the file doesn't exist
53
- return jsonify({"grid": {"columns": 4}, "widgets": []})
54
-
32
+ print(f"Error saving power: {e}")
33
+ return jsonify({"error": "Internal error"}), 500
55
34
 
56
35
  @powers_bp.route('/powers', methods=['GET'])
57
- def get_powers_list():
58
- """
59
- Gets the list of saved powers and renders the appropriate HTML fragment
60
- based on the 'view' query parameter ('editor' or 'control').
61
- """
62
- view_type = request.args.get('view', 'editor')
63
-
64
- player_id = current_app.config.get('MINECRAFT_PLAYER_NAME')
36
+ def get_powers():
37
+ """Returns powers either as JSON dict or as HTMX-ready HTML based on request args."""
65
38
  power_repo = current_app.config.get('POWER_REPO')
66
-
39
+ player_id = current_app.config.get('MINECRAFT_PLAYER_NAME')
40
+
67
41
  if not player_id or not power_repo:
68
42
  return "<p>Error: Not authorized</p>", 401
69
43
 
70
- powers_summary_list = power_repo.list_powers()
71
-
72
- # Group powers by category (logic remains the same)
73
- powers_by_category = {}
74
- for power in powers_summary_list:
75
- category = power.get('category', 'Uncategorized')
76
- if category not in powers_by_category:
77
- powers_by_category[category] = []
78
- powers_by_category[category].append(power)
44
+ view_type = request.args.get('view', 'editor')
79
45
 
80
- # --- Select the correct template based on the view type ---
81
46
  if view_type == 'control':
82
-
83
- # Call the new method to get all data needed for the control UI
47
+ # Serve JSON payload for the Control Deck UI
84
48
  all_powers_list = power_repo.list_full_powers()
85
- # Convert the list into a dictionary keyed by power_id for easy lookup on the client
86
49
  powers_dict = {p['power_id']: p for p in all_powers_list if 'power_id' in p}
87
-
88
50
  print(f"Serving full power data dictionary for player '{player_id}' for control UI.")
89
51
  return jsonify(powers_dict)
90
52
 
91
- else: # Default to the 'editor' view
92
- # Use the detailed template for the editor sidebar
53
+ else:
54
+ # Default to serving the detailed HTML list for the Editor Sidebar
55
+ powers_summary_list = power_repo.list_powers()
56
+
57
+ if not powers_summary_list:
58
+ return "<p style='padding: 0 8px; color: #888;'>No powers found.</p>"
59
+
60
+ # Group powers by category to support the Editor's sidebar template
61
+ categories = {}
62
+ for power in powers_summary_list:
63
+ category = power.get('category', 'Uncategorized')
64
+ if category not in categories:
65
+ categories[category] = []
66
+ categories[category].append(power)
67
+
93
68
  template_string = """
94
69
  {% for category, powers in categories.items()|sort %}
95
70
  <div class="power-category" x-data="{ open: true }">
@@ -125,7 +100,7 @@ def get_powers_list():
125
100
  <button class="btn-small btn-danger"
126
101
  @click="$dispatch('open-delete-confirm', {
127
102
  powerId: '{{ power.power_id }}',
128
- powerName: '{{ power.name | replace("'", "\\'") }}'
103
+ powerName: '{{ power.name | replace(\"'\", \"\\\\'\") }}'
129
104
  })">
130
105
  Delete
131
106
  </button>
@@ -137,59 +112,30 @@ def get_powers_list():
137
112
  </div>
138
113
  {% endfor %}
139
114
  """
140
- html_response_string = render_template_string(template_string, categories=powers_by_category)
141
-
142
- # Create the final response with no-cache headers
143
- response = make_response(html_response_string)
144
- response.headers['Cache-Control'] = 'no-cache, no-store, must-revalidate'
145
- response.headers['Expires'] = '0'
146
- return response
147
-
115
+ return render_template_string(template_string, categories=categories)
148
116
 
149
117
  @powers_bp.route('/power/<power_id>', methods=['GET'])
150
- def get_power_detail(power_id):
151
- """
152
- Gets the full JSON data for a single power, used by the editor to load
153
- a workspace. The data is returned in an HX-Trigger header.
154
- """
155
- mode = request.args.get('mode', 'replace')
156
-
157
- player_id = current_app.config.get('MINECRAFT_PLAYER_NAME')
118
+ def get_power_by_id(power_id):
119
+ """Fetches a single power's details and triggers a load event in the frontend via HTMX."""
158
120
  power_repo = current_app.config.get('POWER_REPO')
121
+ if not power_repo:
122
+ return jsonify({"error": "Repository not configured"}), 500
159
123
 
160
- if not player_id or not power_repo:
161
- # Handle error case
162
- err_trigger = {"showError": {"errorMessage": "Server or player not configured."}}
163
- return make_response("", 401, {"HX-Trigger": json.dumps(err_trigger)})
164
-
165
- full_power_data = power_repo.get_full_power(power_id)
166
-
167
- if not full_power_data:
168
- err_trigger = {"showError": {"errorMessage": f"Power with ID {power_id} not found."}}
169
- return make_response("", 404, {"HX-Trigger": json.dumps(err_trigger)})
170
-
171
- # --- NEW: If replacing, set this as the current power in the session ---
172
- if mode == 'replace':
173
- session['current_power'] = {
174
- "power_id": power_id,
175
- "name": full_power_data.get("name"),
176
- "description": full_power_data.get("description"),
177
- "category": full_power_data.get("category")
178
- }
179
- # --- The Htmx Event Trigger Response ---
180
- # We are defining a custom event 'loadPower' and passing the full power data
181
- # and the loading 'mode' inside the event's detail.
124
+ power_data = power_repo.get_full_power(power_id)
125
+ if not power_data:
126
+ return jsonify({"error": "Power not found"}), 404
127
+
128
+ mode = request.args.get('mode', 'replace')
129
+
130
+ # Send the full blockly data back as an HX-Trigger event parameter
182
131
  trigger_data = {
183
132
  "loadPower": {
184
- "powerData": full_power_data,
185
- "mode": mode # Signal to the client to replace the workspace
133
+ "powerData": power_data,
134
+ "mode": mode
186
135
  }
187
136
  }
188
-
189
137
  headers = {"HX-Trigger": json.dumps(trigger_data)}
190
-
191
- # We don't need to send a body, just the trigger header. Status 204 No Content is perfect.
192
- return "", 204, headers
138
+ return "", 200, headers
193
139
 
194
140
 
195
141
  @powers_bp.route('/power/<power_id>', methods=['DELETE'])
@@ -204,11 +150,8 @@ def delete_power_by_id(power_id):
204
150
  try:
205
151
  success = power_repo.delete_power(power_id)
206
152
  if success:
207
- # Instead of an empty response, we now trigger the 'library-changed' event.
208
153
  trigger_data = {"library-changed": f"Power {power_id} was deleted."}
209
154
  headers = {"HX-Trigger": json.dumps(trigger_data)}
210
-
211
- # Return a 200 OK. The body can be empty. The header does the work.
212
155
  return "", 200, headers
213
156
  else:
214
157
  return jsonify({"error": "Power not found"}), 404
@@ -218,9 +161,7 @@ def delete_power_by_id(power_id):
218
161
 
219
162
  @powers_bp.route('/powers/categories', methods=['GET'])
220
163
  def get_categories():
221
- # Ensure you are accessing the repository instance assigned during mc_start_app
222
- from flask import current_app
223
- repo = current_app.config.get('REPO')
164
+ repo = current_app.config.get('POWER_REPO')
224
165
  if not repo:
225
166
  return jsonify(["Powers", "Workspaces"])
226
167
  return jsonify(repo.list_categories())
@@ -0,0 +1,226 @@
1
+ from mctools import RCONClient, AsyncRCONClient
2
+ from mctools.errors import RCONAuthenticationError
3
+
4
+ import os
5
+ import re
6
+ import yaml
7
+ import json
8
+ import copy
9
+ import math
10
+ import time
11
+ import shlex
12
+ import random
13
+ import asyncio
14
+ import requests
15
+ import shutil
16
+ import pathlib
17
+ from pathlib import Path # this needs better consistency
18
+ import subprocess
19
+ import yarl
20
+ import inspect
21
+ import zipfile
22
+ import io
23
+ import pickle
24
+ import time
25
+ import sys
26
+ import uuid
27
+ from typing import List,Optional,Dict,Any
28
+ import threading
29
+ import random
30
+
31
+ import xml.etree.ElementTree as ET
32
+ import numpy as np
33
+
34
+ from rich import print
35
+ from rich.pretty import pprint
36
+
37
+ from mcshell.Matrix3 import Matrix3
38
+ from mcshell.Vec3 import Vec3
39
+
40
+ from blockapily import BlocklyGenerator
41
+
42
+ class PowerCancelledException(Exception):
43
+ pass
44
+
45
+ try:
46
+ from icecream import ic
47
+ ic.configureOutput(includeContext=False)
48
+ except ImportError: # Graceful fallback if IceCream isn't installed.
49
+ ic = lambda *a: None if not a else (a[0] if len(a) == 1 else a) # noqa
50
+
51
+ # helper function required by Blockly list getter
52
+ def lists_remove_random_item(l):
53
+ random_item = random.choice(l)
54
+ l.pop(l.index(random_item))
55
+ return random_item
56
+
57
+ # the default version when using %pp_create_world
58
+ MC_VERSION = '1.21.11' # this must match the client version
59
+
60
+ # default server data; avoid common ports
61
+ MC_SERVER_HOST = 'localhost'
62
+ MC_RCON_PORT = 25576
63
+ MC_SERVER_PORT = 25566
64
+ FJ_PLUGIN_PORT = 4712
65
+ MC_APP_PORT = 5001
66
+
67
+
68
+ MC_SERVER_DATA = {
69
+ 'host':MC_SERVER_HOST,
70
+ 'port':MC_SERVER_PORT,
71
+ 'rcon_port':MC_RCON_PORT,
72
+ 'fj_port': FJ_PLUGIN_PORT,
73
+ 'app_port': MC_APP_PORT,
74
+ 'password': None,
75
+ }
76
+
77
+ MC_SHELL_DIR = pathlib.Path(__file__).parent
78
+
79
+ MC_DATA_DIR = pathlib.Path(__file__).parent.joinpath('data')
80
+ MC_PAPER_GLOBAL_TEMPLATE = MC_DATA_DIR / 'paper-global-template.yaml'
81
+ FJ_JAR_PATH = MC_DATA_DIR.joinpath('FruitJuice-0.4.1.jar')
82
+
83
+
84
+ MC_WEBPAGE_CACHE = MC_DATA_DIR.joinpath('webpage-cache')
85
+ MC_DOC_URL = yarl.URL("https://minecraft.fandom.com/wiki/Commands")
86
+ MC_DOC_DIR = MC_DATA_DIR.joinpath('doc')
87
+ MC_DOC_PATH = MC_DOC_DIR.joinpath('command_docs.pkl')
88
+
89
+ MC_MATERIAL_URL = yarl.URL('https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html')
90
+ MC_MATERIALS_PATH = MC_DATA_DIR.joinpath('materials/materials.pkl')
91
+ MC_COLOURABLE_MATERIALS_DATA_PATH = MC_DATA_DIR.joinpath('materials/colourables.json')
92
+ MC_PICKER_MATERIALS_DATA_PATH = MC_DATA_DIR.joinpath('materials/pickers.json')
93
+ MC_SINGLE_MATERIALS_DATA_PATH = MC_DATA_DIR.joinpath('materials/singles.json')
94
+
95
+ MC_ITEM_ID_MAP_PATH = MC_DATA_DIR.joinpath('materials/item_id_map.pkl')
96
+
97
+ MC_ENTITY_TYPE_URL = yarl.URL("https://raw.githubusercontent.com/PaperMC/Paper/refs/heads/main/paper-api/src/main/java/org/bukkit/entity/EntityType.java")
98
+ MC_ENTITY_ID_MAP_PATH = MC_DATA_DIR.joinpath('entities/entity_id_map.pkl')
99
+ MC_ENTITY_PICKERS_PATH = MC_DATA_DIR.joinpath('entities/pickers.json')
100
+
101
+ MC_APP_DIR = MC_DATA_DIR.joinpath('app')
102
+
103
+ MC_APP_STATIC_DIR = MC_DATA_DIR.joinpath('static')
104
+ MC_APP_SRC_DIR = pathlib.Path(__file__).parent.parent.joinpath('mced/src')
105
+ MC_USER_DIR = pathlib.Path('~/.mc-shell').expanduser()
106
+ MC_POWER_LIBRARY_DIR = MC_USER_DIR.joinpath('powers')
107
+
108
+ # I don't think we use this
109
+ # MC_CONTROL_LAYOUT_PATH = MC_DATA_DIR.joinpath('control_layout.json')
110
+
111
+ MC_WORLDS_BASE_DIR = pathlib.Path('~').expanduser().joinpath('mc-worlds')
112
+ MC_CENTRAL_CONFIG_FILE = pathlib.Path("/etc/mc-shell/user_map.json")
113
+
114
+ # new: datapacks
115
+ MC_INTERNAL_DATAPACKS = MC_DATA_DIR / 'datapacks'
116
+ MC_DATAPACK_LIB_DIR = MC_WORLDS_BASE_DIR / 'datapacks-library'
117
+
118
+ #new: mcjuice server
119
+ MC_JUICE_SRC_DIR = pathlib.Path(__file__).parent.parent / 'mcjuice' / 'src'
120
+ MC_JUICE_JAR_PATH = MC_DATA_DIR / "mcjuice-0.1.0.jar"
121
+
122
+ MC_JRE_DIR = MC_WORLDS_BASE_DIR / 'jre'
123
+ # Determine the binary name based on the OS
124
+ JRE_BINARY = "java.exe" if os.name == "nt" else "bin/java"
125
+
126
+ MC_JRE_PATH = MC_JRE_DIR / JRE_BINARY
127
+
128
+ RE_NON_JSON_VALUE = r"(?<!\")\b(?:[0-9]+[a-zA-Z]+|[0-9]+(?:\.[0-9]+)?[a-zA-Z]+|true|false|null)\b(?!\")"
129
+ RE_NON_JSON_ARRAY = r"\[[BISL];\s*[^\]]+\]"
130
+
131
+ DATA_TYPES ={
132
+ 'SleepTimer': 's',
133
+ 'Base': 'd',
134
+ 'Invulnerable': 'b',
135
+ 'FallFlying': 'b',
136
+ 'AbsorptionAmount': 'f',
137
+ 'invulnerable': 'b',
138
+ 'mayfly': 'b',
139
+ 'instabuild': 'b',
140
+ 'walkSpeed': 'f',
141
+ 'mayBuild': 'b',
142
+ 'flying': 'b',
143
+ 'flySpeed': 'f',
144
+ 'FallDistance': 'f',
145
+ 'isBlastingFurnaceFilteringCraftable': 'b',
146
+ 'isSmokerGuiOpen': 'b',
147
+ 'isFilteringCraftable': 'b',
148
+ 'isFurnaceGuiOpen': 'b',
149
+ 'isGuiOpen': 'b',
150
+ 'isFurnaceFilteringCraftable': 'b',
151
+ 'isBlastingFurnaceGuiOpen': 'b',
152
+ 'isSmokerFilteringCraftable': 'b',
153
+ 'DeathTime': 's',
154
+ 'seenCredits': 'b',
155
+ 'Health': 'f',
156
+ 'foodSaturationLevel': 'f',
157
+ 'Air': 's',
158
+ 'OnGround': 'b',
159
+ 'XpP': 'f',
160
+ 'foodExhaustionLevel': 'f',
161
+ 'HurtTime': 's',
162
+ 'Slot': 'b',
163
+ 'Count': 'b',
164
+ 'Charged': 'b',
165
+ }
166
+
167
+ ARRAY_DATA_TYPES = {
168
+ 'UUID': 'I',
169
+ }
170
+
171
+ # use this to mask data paths
172
+ FORBIDDEN_DATA_PATHS = []
173
+
174
+ DATA_PATHS = [
175
+ 'Brain',
176
+ 'HurtByTimestamp',
177
+ 'SleepTimer',
178
+ 'Attributes',
179
+ 'Invulnerable',
180
+ 'FallFlying',
181
+ 'PortalCooldown',
182
+ 'AbsorptionAmount',
183
+ 'abilities',
184
+ 'FallDistance',
185
+ 'recipeBook',
186
+ 'DeathTime',
187
+ 'XpSeed',
188
+ 'XpTotal',
189
+ 'UUID',
190
+ 'playerGameType',
191
+ 'seenCredits',
192
+ 'Motion',
193
+ 'Health',
194
+ 'foodSaturationLevel',
195
+ 'Air',
196
+ 'OnGround',
197
+ 'Dimension',
198
+ 'Rotation',
199
+ 'XpLevel',
200
+ 'Score',
201
+ 'Pos',
202
+ 'previousPlayerGameType',
203
+ 'Fire',
204
+ 'XpP',
205
+ 'EnderItems',
206
+ 'DataVersion',
207
+ 'foodLevel',
208
+ 'foodExhaustionLevel',
209
+ 'HurtTime',
210
+ 'SelectedItemSlot',
211
+ 'Inventory',
212
+ 'foodTickTimer'
213
+ ]
214
+
215
+ RECIPE_BOOK_DATA_PATHS = [
216
+ 'recipes',
217
+ 'toBeDisplayed',
218
+ 'isBlastingFurnaceFilteringCraftable',
219
+ 'isSmokerGuiOpen',
220
+ 'isFilteringCraftable',
221
+ 'isFurnaceGuiOpen',
222
+ 'isGuiOpen',
223
+ 'isFurnaceFilteringCraftable',
224
+ 'isBlastingFurnaceGuiOpen',
225
+ 'isSmokerFilteringCraftable'
226
+ ]