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.
- {mc_shell-0.7.2 → mc_shell-0.8.0}/PKG-INFO +19 -6
- {mc_shell-0.7.2 → mc_shell-0.8.0}/README.md +17 -3
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/Vec3.py +3 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/__init__.py +9 -25
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/blueprints/powers_api.py +42 -101
- mc_shell-0.8.0/mcshell/constants.py +226 -0
- mc_shell-0.8.0/mcshell/data/app/control.html +162 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/app/index.html +22 -30
- mc_shell-0.8.0/mcshell/data/app/mced.a29fdc3d.js +295 -0
- mc_shell-0.8.0/mcshell/data/app/mced.a29fdc3d.js.map +1 -0
- mc_shell-0.8.0/mcshell/data/app/mced.f25b9962.css +2 -0
- mc_shell-0.8.0/mcshell/data/app/mced.f25b9962.css.map +1 -0
- mc_shell-0.7.2/mcshell/data/app/toolbox.193e3fba.xml → mc_shell-0.8.0/mcshell/data/app/toolbox.84c8a23e.xml +49 -42
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/LICENSE.txt +9 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/README.txt +24 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/advancement/calcite.json +34 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/advancement/root.json +7 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/advancement/tuff.json +34 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/advancement/world_boarder.json +111 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/ab.mcfunction +22 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/effects/mob-spawn.mcfunction +4 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/effects/party-mob-despawn.mcfunction +8 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/effects/party-mob-destruction.mcfunction +11 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/effects/party-mob-spawn.mcfunction +8 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/barrier-warning.mcfunction +1 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/biomes/00.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/biomes/01.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/biomes/02.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/biomes/03.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/biomes/04.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/biomes/05.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/biomes/06.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/biomes/07.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/biomes/08.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/biomes/09.mcfunction +46 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/biomes/10.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/biomes/11.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/biomes/12.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/biomes/13.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/biomes/14.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/biomes/15.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/chest_effects.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/monster-guard-death-msg.mcfunction +1 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/scoreboard.mcfunction +254 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/trial_title.mcfunction +4 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/tricky_trial_title.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/extra/villager-set-name.mcfunction +54 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/0_to_99.mcfunction +100 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/1000_to_1099.mcfunction +100 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/100_to_199.mcfunction +100 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/1100_to_1199.mcfunction +100 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/1200_to_1299.mcfunction +100 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/1300_to_1399.mcfunction +100 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/1400_to_1499.mcfunction +100 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/1500_to_1599.mcfunction +100 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/1600_to_1699.mcfunction +100 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/1700_to_1799.mcfunction +100 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/1800_to_1899.mcfunction +100 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/1900_to_1999.mcfunction +100 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/200_to_299.mcfunction +100 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/300_to_399.mcfunction +100 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/400_to_499.mcfunction +100 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/500_to_599.mcfunction +100 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/600_to_699.mcfunction +100 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/700_to_799.mcfunction +100 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/800_to_899.mcfunction +100 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining/900_to_999.mcfunction +100 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/blocks-remaining.mcfunction +58 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/create.mcfunction +3 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/eventloop.mcfunction +64 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/on-join.mcfunction +10 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/on-load.mcfunction +11 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/progress.mcfunction +11 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/recovery-kit/00.mcfunction +3 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/recovery-kit/01.mcfunction +4 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/recovery-kit/02.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/recovery-kit/03.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/recovery-kit/04.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/recovery-kit/05.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/recovery-kit/06.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/recovery-kit/07.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/recovery-kit/08.mcfunction +7 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/recovery-kit/09.mcfunction +8 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/recovery-kit/10.mcfunction +7 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/recovery-kit/11.mcfunction +7 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/recovery-kit/12.mcfunction +7 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/recovery-kit/13.mcfunction +7 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/recovery-kit/14.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/recovery-kit/15.mcfunction +7 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/recovery-kit/16.mcfunction +8 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/recovery-kit/get.mcfunction +21 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/respawnendportal.mcfunction +19 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/spawnendportal.mcfunction +28 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/texts.mcfunction +56 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/toggle-features.mcfunction +34 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/fns/world_border.mcfunction +2 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/help.mcfunction +10 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/loop.mcfunction +94 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/main.mcfunction +100 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/about.mcfunction +3 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/actionbar-toggle.mcfunction +14 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/help-phase-00.mcfunction +3 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/help-phase-01.mcfunction +3 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/help-phase-02.mcfunction +3 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/help-phase-03.mcfunction +3 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/help-phase-04.mcfunction +3 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/help-phase-05.mcfunction +3 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/help-phase-06.mcfunction +3 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/help-phase-07.mcfunction +4 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/help-phase-08.mcfunction +3 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/help-phase-09.mcfunction +3 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/help-phase-10.mcfunction +3 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/help-phase-11.mcfunction +3 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/help-phase-12.mcfunction +3 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/help-phase-13.mcfunction +3 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/help-phase-14.mcfunction +3 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/help-phase-15.mcfunction +3 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/help-trigger.mcfunction +16 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/help.mcfunction +38 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/main.mcfunction +15 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/phase-0-msg.mcfunction +4 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/phase-16-msg.mcfunction +4 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/phase-skip-confirm.mcfunction +4 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/phase-skip-trigger.mcfunction +17 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/phase-skip.mcfunction +56 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/scoreboard-toggle.mcfunction +14 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/skip-to-phase-00.mcfunction +8 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/skip-to-phase-01.mcfunction +7 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/skip-to-phase-02.mcfunction +8 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/skip-to-phase-03.mcfunction +7 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/skip-to-phase-04.mcfunction +7 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/skip-to-phase-05.mcfunction +7 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/skip-to-phase-06.mcfunction +7 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/skip-to-phase-07.mcfunction +7 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/skip-to-phase-08.mcfunction +7 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/skip-to-phase-09.mcfunction +7 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/skip-to-phase-10.mcfunction +7 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/skip-to-phase-11.mcfunction +7 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/skip-to-phase-12.mcfunction +7 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/skip-to-phase-13.mcfunction +7 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/skip-to-phase-14.mcfunction +7 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/skip-to-phase-15.mcfunction +7 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/skip-to-phase-16.mcfunction +8 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/menu/start.mcfunction +7 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/01-01-pig.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/01-02-cow.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/01-03-sheep.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/01-04-chicken.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/02-01-mooshro.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/02-02-zombie.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/02-03-rabbit.mcfunction +15 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/02-04-spider.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/02-05-creeper.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/03-01-wolf.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/03-02-stray.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/03-03-fox.mcfunction +14 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/03-04-polar_b.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/03-05-goat.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/03-p01-stray.mcfunction +17 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/03-p02-zombie.mcfunction +17 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/04-01-zombie.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/04-02-skeleton.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/04-03-zombie.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/04-04-creeper.mcfunction +14 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/04-p01-zombie.mcfunction +17 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/04-p02-skeleton.mcfunction +18 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/04-p03-creeper.mcfunction +18 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/05-01-tropical.mcfunction +14 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/05-02-spider_jockey.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/05-03-axolotl.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/05-04-chicken_jockey.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/05-p01-chicken_jockey.mcfunction +24 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/05-p02-spider.mcfunction +18 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/06-01-turtle.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/06-02-drowned.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/06-03-salmon.mcfunction +14 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/06-04-tropica.mcfunction +14 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/06-05-guardia.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/06-06-pufferf.mcfunction +14 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/06-07-cod.mcfunction +14 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/06-08-elder_g copy.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/06-08-elder_g.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/06-09-nautilus.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/06-p01-drowned.mcfunction +18 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/06-p02-guardian.mcfunction +18 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/06-p03-elder_guar.mcfunction +17 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/07-01-fox.mcfunction +14 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/07-02-village.mcfunction +14 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/07-03-armadillo.mcfunction +14 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/07-04-husk.mcfunction +15 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/07-05-pillage.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/07-06-wanderi.mcfunction +19 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/07-07-donkey.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/07-08-camel.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/07-09-vindica.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/07-10-c_husk.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/07-11-parched.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/07-p01-husk.mcfunction +18 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/07-p02-pillager.mcfunction +17 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/07-p03-vindicator.mcfunction +18 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/07-p04-c_husk.mcfunction +24 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/08-01-parrot.mcfunction +14 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/08-02-vex.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/08-03-ocelot.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/08-04-panda.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/08-05-witch.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/08-06-horse.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/08-07-allay.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/08-p01-vex.mcfunction +18 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/08-p02-spider.mcfunction +17 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/08-p03-witch.mcfunction +17 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/09-01-tadpole.mcfunction +15 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/09-02-slime.mcfunction +16 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/09-03-zombie_villager.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/09-04-bogged.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/09-p01-slime.mcfunction +20 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/09-p02-zombie_villager.mcfunction +17 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/09-p03-bogged.mcfunction +18 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/10-01-piglin.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/10-02-magma_c.mcfunction +15 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/10-03-hoglin.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/10-04-blaze.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/10-05-strider.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/10-06-wither_.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/10-07-ghast.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/10-08-happy-ghast.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/10-p01-piglin.mcfunction +18 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/10-p02-magma_cube.mcfunction +19 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/10-p03-blaze.mcfunction +18 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/10-p04-ghast.mcfunction +17 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/11-01-bee.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/11-02-llama.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/11-03-bee.mcfunction +19 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/11-04-sniffer.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/11-p01-bee.mcfunction +23 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/11-p02-witch.mcfunction +18 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/12-01-cat.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/12-02-slime.mcfunction +16 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/12-03-mule.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/12-04-phantom.mcfunction +14 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/12-05-zombie_.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/12-p01-slime.mcfunction +20 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/12-p02-phantom.mcfunction +18 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/12-p03-zombie_.mcfunction +26 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/13-01-skeleto.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/13-02-skele_raid.mcfunction +21 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/13-03-warden.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/13-p01-skele_raid.mcfunction +26 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/13-p02-warden.mcfunction +17 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/14-01-silverf.mcfunction +15 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/14-02-creeper.mcfunction +14 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/14-03-cave_sp.mcfunction +14 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/14-04-skeleto.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/14-05-creeper.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/14-06-evoker.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/14-07-skeleto.mcfunction +14 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/14-p01-silverfish.mcfunction +18 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/14-p02-skeleton.mcfunction +17 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/14-p03-vex.mcfunction +18 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/14-p04-cave_spide.mcfunction +18 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/14-p05-evoker.mcfunction +17 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/15-01-endermi.mcfunction +16 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/15-02-enderma.mcfunction +14 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/15-03-endermi.mcfunction +22 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/15-04-shulker.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/15-p01-endermite.mcfunction +19 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/15-p02-enderman.mcfunction +18 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/mob/15-p03-shulker.mcfunction +18 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/monster-party/03.mcfunction +9 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/monster-party/04.mcfunction +9 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/monster-party/05.mcfunction +9 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/monster-party/06.mcfunction +11 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/monster-party/07.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/monster-party/08.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/monster-party/09.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/monster-party/10.mcfunction +17 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/monster-party/11.mcfunction +11 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/monster-party/12.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/monster-party/13.mcfunction +9 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/monster-party/14.mcfunction +19 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/monster-party/15.mcfunction +23 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/monster-party/manager.mcfunction +30 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/monster-party/random.mcfunction +14 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/on-trigger.mcfunction +47 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/afterphases.mcfunction +18 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/endportal.mcfunction +12 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/phase0.mcfunction +43 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/phase1.mcfunction +149 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/phase10.mcfunction +359 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/phase11.mcfunction +425 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/phase12.mcfunction +488 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/phase13.mcfunction +376 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/phase14.mcfunction +455 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/phase15.mcfunction +321 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/phase2.mcfunction +242 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/phase3.mcfunction +393 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/phase4.mcfunction +356 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/phase5.mcfunction +327 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/phase6.mcfunction +358 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/phase7.mcfunction +418 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/phase8.mcfunction +459 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/phase9.mcfunction +453 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/spawner.mcfunction +32 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/waiting.mcfunction +175 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/phase/waitinginit.mcfunction +68 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-block/01.mcfunction +7 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-block/02.mcfunction +20 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-block/03.mcfunction +32 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-block/04.mcfunction +38 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-block/05.mcfunction +43 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-block/06.mcfunction +49 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-block/07.mcfunction +66 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-block/08.mcfunction +53 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-block/09.mcfunction +87 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-block/10.mcfunction +104 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-block/11.mcfunction +111 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-block/12.mcfunction +114 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-block/13.mcfunction +121 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-block/14.mcfunction +129 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-block/15.mcfunction +133 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-block/trials.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-mob/01.mcfunction +5 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-mob/02.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-mob/03.mcfunction +9 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-mob/04.mcfunction +5 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-mob/05.mcfunction +5 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-mob/06.mcfunction +15 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-mob/07.mcfunction +14 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-mob/08.mcfunction +10 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-mob/09.mcfunction +7 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-mob/10.mcfunction +9 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-mob/11.mcfunction +5 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-mob/12.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-mob/13.mcfunction +4 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-mob/14.mcfunction +8 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-mob/15.mcfunction +5 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/random-mob/all.mcfunction +102 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobamount-1-1.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobamount-1-2.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobamount-1-3.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobamount-2-2.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobamount-2-3.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobamount-2-4.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobamount-3-4.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobamount-3-5.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobamount-8-b.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobamount-main.mcfunction +8 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobtype-1-4b.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobtype-1-5.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobtype-1-8.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobtype-1-a.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobtype-1-b.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobtype-1-e.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobtype-1-g.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobtype-1-h.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobtype-1-i.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobtype-1-j.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobtype-1-k.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobtype-1-l.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobtype-1-n.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-mobtype-main.mcfunction +11 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-partyrand-0-12.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-partyrand-main.mcfunction +8 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randafter-1-b4.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randafter-main.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randblock-1-154.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randblock-1-168.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randblock-1-1cr.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randblock-1-5m.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randblock-1-c1.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randblock-1-ed.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randblock-1-eg.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randblock-1-g01.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randblock-1-gd.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randblock-1-ko.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randblock-1-mg.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randblock-1-n2.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randblock-1-o6.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randblock-1-vu.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randblock-1-xp.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randblock-1-zi.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randblock-main.mcfunction +17 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-randblock-trials.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-variant-1-2.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-variant-1-fr.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-variant-main.mcfunction +8 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-vilname-1-1g.mcfunction +6 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/randomizer/gz-a4-vilname-main.mcfunction +10 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/sb.mcfunction +46 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/trees/acacia_tree.mcfunction +4 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/trees/azalea_tree.mcfunction +4 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/trees/birch_tree.mcfunction +4 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/trees/brown_mushhroom.mcfunction +4 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/trees/cherry_tree.mcfunction +4 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/trees/crimson_tree.mcfunction +4 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/trees/dark_oak_tree.mcfunction +4 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/trees/jungle_tree.mcfunction +4 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/trees/mangrove_tree.mcfunction +4 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/trees/oak_tree.mcfunction +4 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/trees/pale_oak_tree.mcfunction +4 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/trees/red_mushhroom.mcfunction +4 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/trees/spruce_tree.mcfunction +4 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/trees/warped_tree.mcfunction +4 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants/dolphin.mcfunction +3 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants/frog.mcfunction +4 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants/glow_squid.mcfunction +3 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants/squid.mcfunction +3 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants/wolf_cold.mcfunction +3 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants/wolf_dry.mcfunction +3 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants/wolf_jungle.mcfunction +3 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants/zombie_nautilus.mcfunction +3 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/chicken/cold.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/chicken/temperate.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/chicken/warm.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/cow/cold.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/cow/temperate.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/cow/warm.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/dolphin/adult.mcfunction +14 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/dolphin/baby.mcfunction +14 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/frog/01.mcfunction +4 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/frog/02.mcfunction +4 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/frog/03.mcfunction +4 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/glow_squid/adult.mcfunction +14 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/glow_squid/baby.mcfunction +14 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/pig/cold.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/pig/temperate.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/pig/warm.mcfunction +13 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/squid/adult.mcfunction +14 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/squid/baby.mcfunction +14 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/wolf/ashen.mcfunction +14 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/wolf/black.mcfunction +14 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/wolf/chestnut.mcfunction +14 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/wolf/pale.mcfunction +14 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/wolf/rusty.mcfunction +14 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/wolf/snowy.mcfunction +14 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/wolf/spotted.mcfunction +14 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/wolf/striped.mcfunction +14 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/wolf/woods.mcfunction +14 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/zombie_nautilus/temperate.mcfunction +14 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/function/variants-mob/zombie_nautilus/warm.mcfunction +14 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/item_modifier/diamond_axe_default.json +19 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/item_modifier/diamond_hoe_default.json +19 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/item_modifier/diamond_pickaxe_boost.json +30 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/item_modifier/diamond_shovel_default.json +19 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/item_modifier/diamond_sword_default.json +20 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/item_modifier/netherite_axe_default.json +19 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/item_modifier/netherite_hoe_default.json +19 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/item_modifier/netherite_pickaxe_boost.json +30 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/item_modifier/netherite_shovel_default.json +19 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/item_modifier/netherite_sword_default.json +20 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/00-gift.json +80 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/00.json +63 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/01-gift.json +255 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/01.json +171 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/02-gift.json +145 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/02-variety.json +367 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/02.json +143 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/03-gift.json +323 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/03-variety.json +586 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/03.json +293 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/04-gift.json +180 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/04-variety.json +670 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/04.json +227 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/05-gift.json +230 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/05-variety.json +823 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/05.json +269 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/06-gift.json +406 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/06-variety.json +1292 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/06.json +620 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/07-gift.json +392 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/07-variety.json +1553 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/07.json +342 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/08-gift.json +378 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/08-variety.json +1804 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/08.json +344 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/09-gift.json +459 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/09-variety.json +2042 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/09.json +283 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/10-gift.json +305 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/10-variety.json +2294 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/10.json +326 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/11-gift.json +278 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/11-variety.json +2434 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/11.json +171 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/12-gift.json +326 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/12-variety.json +2560 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/12.json +199 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/13-gift.json +330 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/13-variety.json +2686 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/13.json +185 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/14-gift.json +328 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/14-variety.json +2896 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/14.json +245 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/15-gift.json +205 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/15-variety.json +3051 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/15.json +161 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/heavy_core.json +57 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/help-waterbucket.json +30 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/musical.json +631 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/rarechest.json +1216 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/superchest.json +2100 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/trial_ominous_supplies.json +241 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/trial_pot.json +138 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/loot_table/trial_supplies.json +131 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/structure/acacia.nbt +0 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/structure/azalea.nbt +0 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/structure/birch.nbt +0 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/structure/brown_mushroom.nbt +0 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/structure/cherry.nbt +0 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/structure/crimson.nbt +0 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/structure/dark_oak.nbt +0 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/structure/jungle.nbt +0 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/structure/mangrove.nbt +0 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/structure/oak.nbt +0 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/structure/pale_oak.nbt +0 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/structure/red_mushroom.nbt +0 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/structure/spruce.nbt +0 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/gamerz_riot/structure/warped.nbt +0 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/minecraft/recipe/calcite.json +10 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/minecraft/recipe/tuff.json +10 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/minecraft/tags/function/load.json +4 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/minecraft/tags/function/tick.json +4 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/minecraft/trial_spawner/trial_chamber/breeze/ominous_2.json +22 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/minecraft/trial_spawner/trial_chamber/melee/phantom/normal.json +15 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/minecraft/trial_spawner/trial_chamber/melee/phantom/ominous.json +26 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/minecraft/trial_spawner/trial_chamber/melee/phantom/ominous_2.json +22 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/minecraft/trial_spawner/trial_chamber/melee/zombie_villager/normal.json +15 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/minecraft/trial_spawner/trial_chamber/melee/zombie_villager/ominous.json +29 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/minecraft/trial_spawner/trial_chamber/ranged/poison_skeleton/ominous_2.json +25 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/minecraft/trial_spawner/trial_chamber/ranged/skeleton/ominous_2.json +25 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/minecraft/trial_spawner/trial_chamber/small_melee/bee/normal.json +16 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/minecraft/trial_spawner/trial_chamber/small_melee/bee/ominous.json +27 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/data/minecraft/trial_spawner/trial_chamber/small_melee/slime/ominous_2.json +32 -0
- mc_shell-0.8.0/mcshell/data/datapacks/oneblock/pack.mcmeta +7 -0
- mc_shell-0.8.0/mcshell/data/mcjuice-0.1.0.jar +0 -0
- mc_shell-0.8.0/mcshell/data/mcjuice_api.yaml +519 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/powers/stdlib.json +10505 -10244
- mc_shell-0.8.0/mcshell/data/taxonomy.json +12294 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/toolbox_template.xml +0 -9
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/digitalsetactions.py +12 -12
- mc_shell-0.8.0/mcshell/event.py +118 -0
- mc_shell-0.8.0/mcshell/eventactions.py +73 -0
- mc_shell-0.8.0/mcshell/generated_actions.py +268 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/mcactions.py +23 -16
- mc_shell-0.8.0/mcshell/mcactions_base.py +389 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/mcclient.py +8 -3
- mc_shell-0.8.0/mcshell/mcjuice.py +207 -0
- mc_shell-0.8.0/mcshell/mcjuiceconn.py +66 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/mcplayer.py +20 -87
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/mcrepo.py +20 -18
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/mcserver.py +128 -167
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/mcturtle.py +8 -8
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/playeractions.py +14 -2
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/qturtleactions.py +30 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/serveractions.py +27 -3
- {mc_shell-0.7.2 → mc_shell-0.8.0}/pyproject.toml +8 -15
- mc_shell-0.7.2/mcshell/constants.py +0 -439
- mc_shell-0.7.2/mcshell/data/FruitJuice-0.3.0.jar +0 -0
- mc_shell-0.7.2/mcshell/data/FruitJuice-0.4.0.jar +0 -0
- mc_shell-0.7.2/mcshell/data/app/control.a8439284.css +0 -2
- mc_shell-0.7.2/mcshell/data/app/control.a8439284.css.map +0 -1
- mc_shell-0.7.2/mcshell/data/app/control.b03e9afc.js +0 -2
- mc_shell-0.7.2/mcshell/data/app/control.b03e9afc.js.map +0 -1
- mc_shell-0.7.2/mcshell/data/app/control.html +0 -110
- mc_shell-0.7.2/mcshell/data/app/mced.3d4a5c3d.js +0 -271
- mc_shell-0.7.2/mcshell/data/app/mced.3d4a5c3d.js.map +0 -1
- mc_shell-0.7.2/mcshell/data/app/mced.3f8a9cca.css +0 -2
- mc_shell-0.7.2/mcshell/data/app/mced.3f8a9cca.css.map +0 -1
- mc_shell-0.7.2/mcshell/data/app/mced.a4de160c.js +0 -4
- mc_shell-0.7.2/mcshell/data/app/mced.a4de160c.js.map +0 -1
- mc_shell-0.7.2/mcshell/eventactions.py +0 -57
- mc_shell-0.7.2/mcshell/mcactions_base.py +0 -389
- mc_shell-0.7.2/mcshell/mcblockly.py +0 -490
- mc_shell-0.7.2/mcshell/pyncraftcactions.py +0 -148
- mc_shell-0.7.2/mcshell/registry_builder.py +0 -619
- mc_shell-0.7.2/mcshell/vendored/pyncraft/__init__.py +0 -0
- mc_shell-0.7.2/mcshell/vendored/pyncraft/block.py +0 -103
- mc_shell-0.7.2/mcshell/vendored/pyncraft/connection.py +0 -62
- mc_shell-0.7.2/mcshell/vendored/pyncraft/entity.py +0 -102
- mc_shell-0.7.2/mcshell/vendored/pyncraft/event.py +0 -65
- mc_shell-0.7.2/mcshell/vendored/pyncraft/logger.py +0 -44
- mc_shell-0.7.2/mcshell/vendored/pyncraft/minecraft.py +0 -362
- mc_shell-0.7.2/mcshell/vendored/pyncraft/util.py +0 -21
- mc_shell-0.7.2/mcshell/vendored/pyncraft/vec3.py +0 -114
- {mc_shell-0.7.2 → mc_shell-0.8.0}/LICENSE +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/Matrix3.py +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/blueprints/control_api.py +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/blueprints/ipython_api.py +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/FruitJuice-0.4.1.jar +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/app/mced.efd4d8e7.css +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/app/mced.efd4d8e7.css.map +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/control_layout.json +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/datapacks/flat_world/data/minecraft/dimension/overworld.json +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/datapacks/flat_world/data/minecraft/worldgen/biome/the_void.json +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/datapacks/flat_world/pack.mcmeta +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/datapacks/void_world/data/minecraft/dimension/overworld.json +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/datapacks/void_world/data/minecraft/functions/init.mcfunction +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/datapacks/void_world/data/minecraft/tags/functions/load.json +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/datapacks/void_world/data/minecraft/worldgen/biome/the_void.json +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/datapacks/void_world/pack.mcmeta +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/doc/command_docs.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/entities/entity_id_map.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/entities/generate_entity_blocks.mjs +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/entities/pickers.json +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/materials/colourables.json +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/materials/entity_overrides.json +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/materials/generate_material_blocks.mjs +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/materials/item_id_map.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/materials/materials.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/materials/mcblocks.csv +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/materials/pickers.json +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/materials/singles.json +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/paper-global-template.yaml +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/%3F.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/Commands.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/EntityType.java.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/Material.html.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/ability.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/advancement.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/alwaysday.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/attribute.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/ban-ip.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/ban.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/banlist.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/bossbar.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/camera.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/camerashake.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/changesetting.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/clear.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/clearspawnpoint.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/clone.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/connect.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/damage.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/data.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/datapack.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/daylock.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/debug.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/dedicatedwsserver.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/defaultgamemode.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/deop.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/dialogue.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/difficulty.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/effect.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/enchant.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/event.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/execute.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/experience.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/fill.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/fillbiome.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/fog.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/forceload.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/function.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/gamemode.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/gamerule.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/gametest.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/give.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/help.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/immutableworld.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/item.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/jfr.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/kick.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/kill.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/list.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/locate.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/loot.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/me.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/mobevent.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/msg.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/music.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/op.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/ops.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/pardon-ip.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/pardon.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/particle.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/perf.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/permission.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/place_(Java_Edition).pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/playanimation.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/playsound.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/publish.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/random.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/recipe.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/reload.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/remove.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/replaceitem.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/return.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/ride.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/save-all.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/save-off.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/save-on.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/save.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/say.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/schedule.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/scoreboard.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/script.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/scriptevent.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/seed.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/setblock.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/setidletimeout.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/setmaxplayers.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/setworldspawn.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/spawnpoint.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/spectate.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/spreadplayers.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/stop.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/stopsound.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/structure.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/summon.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/tag.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/team.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/teammsg.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/teleport.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/tell.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/tellraw.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/testfor.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/testforblock.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/testforblocks.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/tickingarea.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/time.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/title.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/titleraw.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/tm.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/toggledownfall.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/tp.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/transferserver.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/trigger.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/volumearea.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/w.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/wb.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/weather.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/whitelist.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/worldborder.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/worldbuilder.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/wsserver.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/data/webpage-cache/xp.pkl +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/digitalgeometryactions.py +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/mcexperience_base.py +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/mclsystem.py +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/mcscraper.py +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/mcshell.py +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/mcvoxel.py +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/mcvoxel_original.py +0 -0
- {mc_shell-0.7.2 → mc_shell-0.8.0}/mcshell/ppdownloader.py +0 -0
- {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.
|
|
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.
|
|
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
|
|
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.
|
|
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
|
|
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.
|
|
@@ -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
|
-
|
|
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('
|
|
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
|
|
261
|
-
plugins_dir.joinpath(
|
|
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
|
-
|
|
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
|
|
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
|
|
30
|
+
return "", 204, headers
|
|
38
31
|
except Exception as e:
|
|
39
|
-
print(f"Error saving power
|
|
40
|
-
return jsonify({"error": "
|
|
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
|
|
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
|
-
|
|
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:
|
|
92
|
-
#
|
|
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
|
-
|
|
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
|
|
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
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
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":
|
|
185
|
-
"mode": mode
|
|
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
|
-
|
|
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
|
+
]
|