├── .gitattributes ├── .gitignore ├── Addons ├── OnlyTesting │ ├── BlackHole │ │ ├── BlackHoleBP │ │ │ ├── animation_controllers │ │ │ │ └── blackhole.animation_controller.json │ │ │ ├── entities │ │ │ │ └── blackhole.behavior.json │ │ │ └── manifest.json │ │ └── BlackHoleRP │ │ │ ├── animation_controllers │ │ │ └── blackhole.animation_controllers.json │ │ │ ├── entity │ │ │ └── blackhole.entity.json │ │ │ ├── manifest.json │ │ │ ├── materials │ │ │ └── entity.material │ │ │ ├── particles │ │ │ ├── blackhole_fortnite_vortex.json │ │ │ ├── blackhole_fortnite_vortex2.json │ │ │ ├── blackhole_sphere_inside.json │ │ │ ├── blackhole_sphere_outside.json │ │ │ └── blackhole_vanilla_vortex.json │ │ │ ├── render_controllers │ │ │ └── blackhole.render.json │ │ │ ├── sounds.json │ │ │ ├── texts │ │ │ ├── en_US.lang │ │ │ └── languages.json │ │ │ └── textures │ │ │ └── entity │ │ │ ├── blackhole.png │ │ │ └── blackhole_particles.png │ ├── Blokkits │ │ ├── BlokkitsBP │ │ │ ├── entities │ │ │ │ ├── grass_blokkit.json │ │ │ │ ├── magma_blokkit.json │ │ │ │ └── super_blokkit.json │ │ │ ├── loot_tables │ │ │ │ └── blokkit │ │ │ │ │ └── loot │ │ │ │ │ ├── grass_blokkit.json │ │ │ │ │ ├── magma_blokkit.json │ │ │ │ │ └── super_blokkit.json │ │ │ └── manifest.json │ │ └── BlokkitsRP │ │ │ ├── animation_controllers │ │ │ ├── blokkit.animation_controllers.json │ │ │ └── magma_blokkit.animation_controllers.json │ │ │ ├── animations │ │ │ ├── blokkit.animations.json │ │ │ └── super_blokkit.animations.json │ │ │ ├── entity │ │ │ ├── grass_blokkit.entity.json │ │ │ ├── magma_blokkit.entity.json │ │ │ └── super_blokkit.entity.json │ │ │ ├── manifest.json │ │ │ ├── materials │ │ │ └── entity.material │ │ │ ├── models │ │ │ └── entity │ │ │ │ ├── blokkit.json │ │ │ │ └── grass_blokkit.json │ │ │ ├── particles │ │ │ └── magma_blokkit.json │ │ │ ├── render_controllers │ │ │ ├── grass_blokkit.render_controllers.json │ │ │ ├── magma_blokkit.render_controllers.json │ │ │ └── super_blokkit.render_controllers.json │ │ │ ├── texts │ │ │ └── en_US.lang │ │ │ └── textures │ │ │ └── entity │ │ │ └── blokkit │ │ │ ├── grass.png │ │ │ ├── magma │ │ │ ├── magma_0.png │ │ │ └── magma_1.png │ │ │ ├── super │ │ │ ├── super.png │ │ │ └── super_tamed.png │ │ │ └── tnt.png │ ├── CellMachine │ │ ├── CellMachineBP │ │ │ ├── blocks │ │ │ │ └── spmax │ │ │ │ │ └── cells │ │ │ │ │ ├── TEST_cloner.blk.json │ │ │ │ │ ├── TEST_rotator_left.blk.json │ │ │ │ │ ├── blocker_dot.blk.json │ │ │ │ │ ├── blocker_plain.blk.json │ │ │ │ │ ├── blocker_square.blk.json │ │ │ │ │ ├── cloner.blk.json │ │ │ │ │ ├── enemy.blk.json │ │ │ │ │ ├── mover.blk.json │ │ │ │ │ ├── rotator_left.blk.json │ │ │ │ │ ├── rotator_right.blk.json │ │ │ │ │ ├── shield.blk.json │ │ │ │ │ ├── teleporter.blk.json │ │ │ │ │ ├── trasher.blk.json │ │ │ │ │ ├── walker_one.blk.json │ │ │ │ │ └── walker_two.blk.json │ │ │ └── manifest.json │ │ └── CellMachineRP │ │ │ ├── manifest.json │ │ │ └── textures │ │ │ ├── spmax │ │ │ └── blocks │ │ │ │ └── cells │ │ │ │ ├── blocker_dot.png │ │ │ │ ├── blocker_grid.png │ │ │ │ ├── blocker_plain.png │ │ │ │ ├── blocker_square.png │ │ │ │ ├── blocker_undot.png │ │ │ │ ├── blocker_unsquare.png │ │ │ │ ├── cloner_back.png │ │ │ │ ├── cloner_side.png │ │ │ │ ├── enemy_back.png │ │ │ │ ├── enemy_side.png │ │ │ │ ├── mover_back.png │ │ │ │ ├── mover_side.png │ │ │ │ ├── rotator_left_back.png │ │ │ │ ├── rotator_left_side.png │ │ │ │ ├── rotator_right_back.png │ │ │ │ ├── rotator_right_side.png │ │ │ │ ├── shield_back.png │ │ │ │ ├── shield_side.png │ │ │ │ ├── teleporter_back.png │ │ │ │ ├── teleporter_side.png │ │ │ │ ├── trasher_back.png │ │ │ │ ├── trasher_side.png │ │ │ │ ├── walker_back.png │ │ │ │ ├── walker_one.png │ │ │ │ └── walker_two.png │ │ │ └── terrain_texture.json │ ├── CustomBlockUI │ │ ├── CustomBlockUIBP │ │ │ ├── blocks │ │ │ │ ├── bnblk.json │ │ │ │ ├── ctblk.json │ │ │ │ ├── psblk.json │ │ │ │ ├── ptblk.json │ │ │ │ └── wiblk.json │ │ │ └── manifest.json │ │ └── CustomBlockUIRP │ │ │ ├── manifest.json │ │ │ ├── models │ │ │ └── blocks │ │ │ │ └── binaryblock.geo.json │ │ │ ├── texts │ │ │ ├── en_US.lang │ │ │ └── languages.json │ │ │ ├── textures │ │ │ ├── blocks │ │ │ │ └── binaryblock.png │ │ │ └── terrain_texture.json │ │ │ └── ui │ │ │ ├── _ui_defs.json │ │ │ ├── inventory_screen.json │ │ │ └── spmax │ │ │ ├── block_screens │ │ │ ├── custom_crafting_screen.json │ │ │ ├── player_status_screen.json │ │ │ └── world_info_screen.json │ │ │ └── custom_blocks_main.json │ ├── CustomStatueTest │ │ ├── CustomStatueTestBP │ │ │ ├── entities │ │ │ │ └── TestStatue │ │ │ │ │ └── statue.json │ │ │ └── manifest.json │ │ └── CustomStatueTestRP │ │ │ ├── animation_controllers │ │ │ └── statue.animation_controllers.json │ │ │ ├── animations │ │ │ └── statue.animation.json │ │ │ ├── entity │ │ │ └── TestStatue │ │ │ │ └── statue.entity.json │ │ │ ├── manifest.json │ │ │ ├── models │ │ │ └── entity │ │ │ │ └── statue.geo.json │ │ │ ├── render_controllers │ │ │ └── statue.render_controllers.json │ │ │ └── textures │ │ │ └── TestStatue │ │ │ └── statue.png │ ├── FluidPipe │ │ ├── FluidPipeBP │ │ │ ├── blocks │ │ │ │ └── sprintermax │ │ │ │ │ └── TestPipes │ │ │ │ │ ├── GenericPipe.json │ │ │ │ │ └── glass_pipe.json │ │ │ └── manifest.json │ │ └── FluidPipeRP │ │ │ ├── manifest.json │ │ │ ├── models │ │ │ └── blocks │ │ │ │ └── sprintermax │ │ │ │ └── TestPipes │ │ │ │ ├── GenericPipe.json │ │ │ │ └── GlassPipe.json │ │ │ └── textures │ │ │ ├── blocks │ │ │ └── sprintermax │ │ │ │ └── pipes │ │ │ │ ├── old.png │ │ │ │ ├── pipe_base_black.png │ │ │ │ ├── pipe_base_blue.png │ │ │ │ ├── pipe_base_green.png │ │ │ │ ├── pipe_base_red.png │ │ │ │ ├── pipe_base_white.png │ │ │ │ ├── pipe_base_yellow.png │ │ │ │ ├── pipe_bases.png │ │ │ │ ├── pipe_fluid_exp.png │ │ │ │ ├── pipe_fluid_lava.png │ │ │ │ ├── pipe_fluid_water.png │ │ │ │ └── pipe_glass.png │ │ │ └── terrain_texture.json │ ├── GameTestScripting │ │ └── GameTestScriptingBP │ │ │ ├── manifest.json │ │ │ └── scripts │ │ │ └── spmax │ │ │ └── index.js │ ├── HUDPlus │ │ ├── HUDPlus Core RP │ │ │ ├── manifest.json │ │ │ ├── texts │ │ │ │ ├── en_US.lang │ │ │ │ └── languages.json │ │ │ └── ui │ │ │ │ ├── _ui_defs.json │ │ │ │ ├── chat_screen.json │ │ │ │ ├── hud_screen.json │ │ │ │ └── mxui │ │ │ │ ├── hudplus_chat_common.json │ │ │ │ ├── hudplus_common.json │ │ │ │ └── hudplus_screen_definitions.json │ │ └── HUDPlus Examples RP │ │ │ ├── manifest.json │ │ │ ├── texts │ │ │ ├── en_US.lang │ │ │ └── languages.json │ │ │ └── ui │ │ │ ├── _ui_defs.json │ │ │ ├── mxui │ │ │ ├── hudplus_chat_common.json │ │ │ └── hudplus_screen_definitions.json │ │ │ └── spmax │ │ │ ├── hudplus_cinemabars.json │ │ │ ├── hudplus_messagetext.json │ │ │ └── hudplus_notification.json │ ├── MoreMobs │ │ ├── MoreMobsBP │ │ │ ├── entities │ │ │ │ ├── ant.json │ │ │ │ ├── car.json │ │ │ │ └── tyrannosaur.json │ │ │ ├── manifest.json │ │ │ └── spawn_rules │ │ │ │ └── ant.json │ │ └── MoreMobsRP │ │ │ ├── animation_controllers │ │ │ ├── ant.json │ │ │ ├── car.json │ │ │ └── tyrannosaur.json │ │ │ ├── animations │ │ │ ├── ant.json │ │ │ ├── car.json │ │ │ └── tyrannosaur.json │ │ │ ├── entity │ │ │ ├── ant.json │ │ │ ├── car.json │ │ │ └── tyrannosaur.json │ │ │ ├── manifest.json │ │ │ ├── materials │ │ │ └── entity.material │ │ │ ├── models │ │ │ └── entity │ │ │ │ ├── ant.json │ │ │ │ ├── car.json │ │ │ │ └── tyrannosaur.json │ │ │ ├── particles │ │ │ └── turboboost.json │ │ │ ├── render_controllers │ │ │ ├── ant.json │ │ │ ├── car.json │ │ │ └── tyrannosaur.json │ │ │ ├── sounds.json │ │ │ ├── texts │ │ │ └── en_US.lang │ │ │ └── textures │ │ │ └── entity │ │ │ ├── ant │ │ │ ├── black.png │ │ │ └── brown.png │ │ │ ├── car │ │ │ └── car.png │ │ │ └── tyrannosaur │ │ │ └── default.png │ ├── MysthicCraft │ │ ├── MysthicCraftBP │ │ │ ├── bridge │ │ │ │ ├── .editor-cache │ │ │ │ └── uninstalled_plugins.json │ │ │ ├── entities │ │ │ │ ├── axolotl.json │ │ │ │ ├── carrage.json │ │ │ │ ├── centaur.json │ │ │ │ ├── crafting_table.json │ │ │ │ ├── crafting_table_internal.json │ │ │ │ ├── forcefield.json │ │ │ │ ├── gust.json │ │ │ │ ├── invocation.json │ │ │ │ ├── minotaur.json │ │ │ │ ├── raven.json │ │ │ │ ├── siren.json │ │ │ │ ├── syclop.json │ │ │ │ └── werewolf.json │ │ │ ├── functions │ │ │ │ ├── main.mcfunction │ │ │ │ ├── ores.mcfunction │ │ │ │ └── setup.mcfunction │ │ │ ├── loot_tables │ │ │ │ └── mystic │ │ │ │ │ ├── gear │ │ │ │ │ ├── centaur_melee.json │ │ │ │ │ └── centaur_ranged.json │ │ │ │ │ └── loot │ │ │ │ │ ├── axolotl.json │ │ │ │ │ ├── centaur.json │ │ │ │ │ ├── forcefield_deactivate.json │ │ │ │ │ ├── minotaur.json │ │ │ │ │ ├── raven.json │ │ │ │ │ └── syclop.json │ │ │ ├── manifest.json │ │ │ ├── pack_icon.png │ │ │ ├── scripts │ │ │ │ ├── client │ │ │ │ │ └── mystic_client.js │ │ │ │ └── server │ │ │ │ │ └── mystic_server.js │ │ │ ├── spawn_egg_drops │ │ │ │ └── crafting_table.json │ │ │ ├── spawn_rules │ │ │ │ └── syclop.json │ │ │ └── trading │ │ │ │ ├── crafting_table.json │ │ │ │ └── custom_crafting_table.json │ │ └── MysthicCraftRP │ │ │ ├── animation_controllers │ │ │ ├── axolotl.json │ │ │ ├── carrage.json │ │ │ ├── centaur.json │ │ │ ├── forcefield.json │ │ │ ├── gust.json │ │ │ ├── minotaur.json │ │ │ ├── raven.json │ │ │ └── syclop.json │ │ │ ├── animations │ │ │ ├── axolotl.json │ │ │ ├── carrage.json │ │ │ ├── centaur.json │ │ │ ├── forcefield.json │ │ │ ├── gust.json │ │ │ ├── minotaur.json │ │ │ ├── raven.json │ │ │ └── syclop.json │ │ │ ├── blocks.json │ │ │ ├── entity │ │ │ ├── axolotl.json │ │ │ ├── carrage.json │ │ │ ├── centaur.json │ │ │ ├── crafting_table.json │ │ │ ├── forcefield.json │ │ │ ├── gust.json │ │ │ ├── invocation.json │ │ │ ├── minotaur.json │ │ │ ├── raven.json │ │ │ ├── siren.json │ │ │ ├── syclop.json │ │ │ └── werewolf.json │ │ │ ├── manifest.json │ │ │ ├── materials │ │ │ └── entity.material │ │ │ ├── models │ │ │ └── entity │ │ │ │ ├── Invocation.json │ │ │ │ ├── axolotl.json │ │ │ │ ├── carrage.json │ │ │ │ ├── centaur.json │ │ │ │ ├── forcefield.json │ │ │ │ ├── gust.json │ │ │ │ ├── minotaur.json │ │ │ │ ├── raven.json │ │ │ │ ├── siren.json │ │ │ │ ├── syclop.json │ │ │ │ ├── table.json │ │ │ │ └── werewolf.json │ │ │ ├── pack_icon.png │ │ │ ├── particles │ │ │ ├── compressed_explode.json │ │ │ ├── shield_beam.json │ │ │ ├── shield_sphere.json │ │ │ └── shield_top.json │ │ │ ├── render_controllers │ │ │ ├── axolotl.json │ │ │ ├── carrage.json │ │ │ ├── centaur.json │ │ │ ├── crafting_table.json │ │ │ ├── forcefield.json │ │ │ ├── gust.json │ │ │ ├── invocation.json │ │ │ ├── minotaur.json │ │ │ ├── raven.json │ │ │ ├── siren.json │ │ │ ├── syclop.json │ │ │ └── werewolf.json │ │ │ ├── sounds.json │ │ │ ├── texts │ │ │ └── en_US.lang │ │ │ └── textures │ │ │ ├── blocks │ │ │ └── mystic │ │ │ │ └── container.png │ │ │ ├── entity │ │ │ ├── axolotl │ │ │ │ ├── axolotl.png │ │ │ │ └── axolotl_water.png │ │ │ ├── carrage │ │ │ │ ├── carrage_black.png │ │ │ │ ├── carrage_blue.png │ │ │ │ ├── carrage_brown.png │ │ │ │ ├── carrage_cyan.png │ │ │ │ ├── carrage_gray.png │ │ │ │ ├── carrage_green.png │ │ │ │ ├── carrage_light_blue.png │ │ │ │ ├── carrage_lime.png │ │ │ │ ├── carrage_magenta.png │ │ │ │ ├── carrage_orange.png │ │ │ │ ├── carrage_pink.png │ │ │ │ ├── carrage_purple.png │ │ │ │ ├── carrage_red.png │ │ │ │ ├── carrage_silver.png │ │ │ │ ├── carrage_undyed.png │ │ │ │ ├── carrage_white.png │ │ │ │ └── carrage_yellow.png │ │ │ ├── centaur │ │ │ │ ├── centaur_autumn.png │ │ │ │ ├── centaur_blue.png │ │ │ │ ├── centaur_purple.png │ │ │ │ └── centaur_red.png │ │ │ ├── crafting_table.png │ │ │ ├── forcefield │ │ │ │ ├── forcefield_no_item.png │ │ │ │ ├── forcefield_with_item.png │ │ │ │ └── sphere_particle.png │ │ │ ├── invocation.png │ │ │ ├── minotaur.png │ │ │ ├── raven.png │ │ │ ├── siren.png │ │ │ ├── syclop │ │ │ │ ├── gust.png │ │ │ │ └── syclop.png │ │ │ └── werewolf.png │ │ │ ├── item_texture.json │ │ │ ├── items │ │ │ ├── spawn_egg_carrage.png │ │ │ ├── spawn_egg_forcefield.png │ │ │ ├── spawn_egg_invocation.png │ │ │ └── spawn_egg_table.png │ │ │ └── terrain_texture.json │ ├── NPCPlus │ │ ├── NPCPlus Core RP │ │ │ ├── manifest.json │ │ │ ├── pack_icon.png │ │ │ ├── texts │ │ │ │ ├── en_US.lang │ │ │ │ └── languages.json │ │ │ └── ui │ │ │ │ ├── _global_variables.json │ │ │ │ ├── _ui_defs.json │ │ │ │ ├── mxui │ │ │ │ ├── npcplus_common.json │ │ │ │ ├── npcplus_fullscreen_common.json │ │ │ │ ├── npcplus_screen_definitions.json │ │ │ │ ├── npcplus_teacher_view.json │ │ │ │ └── npcplus_vanilla_screen.json │ │ │ │ └── npc_interact_screen.json │ │ ├── NPCPlus Examples BP │ │ │ ├── dialogue │ │ │ │ ├── change_ui_1.json │ │ │ │ ├── change_ui_2.json │ │ │ │ ├── change_ui_3.json │ │ │ │ ├── change_ui_4.json │ │ │ │ ├── test_bottomaction_1.json │ │ │ │ ├── test_fullscreen_1.json │ │ │ │ ├── test_scrollbox_1.json │ │ │ │ ├── test_scrollbox_2.json │ │ │ │ └── test_scrollbox_3.json │ │ │ ├── manifest.json │ │ │ ├── pack_icon.png │ │ │ └── texts │ │ │ │ ├── en_US.lang │ │ │ │ └── languages.json │ │ └── NPCPlus Examples RP │ │ │ ├── manifest.json │ │ │ ├── pack_icon.png │ │ │ ├── texts │ │ │ ├── en_US.lang │ │ │ └── languages.json │ │ │ └── ui │ │ │ ├── _ui_defs.json │ │ │ ├── mxui │ │ │ └── npcplus_screen_definitions.json │ │ │ └── spmax │ │ │ ├── npcplus_bottom_action_screen.json │ │ │ ├── npcplus_fullscreen_menu.json │ │ │ └── npcplus_scrollbox_screen.json │ ├── RainbowCreeper │ │ └── RainbowCreeperRP │ │ │ ├── entity │ │ │ └── creeper.v1.0.entity.json │ │ │ ├── manifest.json │ │ │ ├── materials │ │ │ └── entity.material │ │ │ ├── render_controllers │ │ │ ├── creeper.render_controllers.json │ │ │ ├── creeper_armor.render_controllers.json │ │ │ └── creeper_rainbow.render_controllers.json │ │ │ └── textures │ │ │ └── entity │ │ │ └── creeper │ │ │ ├── creeper_details.png │ │ │ └── rainbow.png │ ├── ServerFormPlus │ │ ├── SFPlus Core RP │ │ │ ├── manifest.json │ │ │ ├── pack_icon.png │ │ │ ├── texts │ │ │ │ ├── en_US.lang │ │ │ │ └── languages.json │ │ │ └── ui │ │ │ │ ├── _global_variables.json │ │ │ │ ├── _ui_defs.json │ │ │ │ ├── mxui │ │ │ │ ├── sfplus_common.json │ │ │ │ ├── sfplus_fullscreen_common.json │ │ │ │ └── sfplus_screen_definitions.json │ │ │ │ └── server_form.json │ │ ├── SFPlus Examples RP │ │ │ ├── manifest.json │ │ │ ├── pack_icon.png │ │ │ ├── texts │ │ │ │ ├── en_US.lang │ │ │ │ └── languages.json │ │ │ └── ui │ │ │ │ ├── _ui_defs.json │ │ │ │ ├── mxui │ │ │ │ └── sfplus_screen_definitions.json │ │ │ │ └── spmax │ │ │ │ └── sfplus_fullscreen_form.json │ │ └── SFPlus Testing Script BP │ │ │ ├── manifest.json │ │ │ ├── pack_icon.png │ │ │ ├── scripts │ │ │ └── index.js │ │ │ └── texts │ │ │ ├── en_US.lang │ │ │ └── languages.json │ └── UITitleAnimTest │ │ └── UITitleAnimTestRP │ │ ├── pack_icon.png │ │ ├── pack_manifest.json │ │ ├── textures │ │ └── anim │ │ │ ├── logoanimated.png │ │ │ ├── minelogo.png │ │ │ └── minelogox.png │ │ └── ui │ │ └── ui_art_assets_common.json └── Released │ ├── AnimatedPlayer │ ├── AnimatedPlayerRP │ │ ├── animation_controllers │ │ │ └── player.animation_controllers.json │ │ ├── animations │ │ │ └── player.animation.json │ │ ├── entity │ │ │ └── player.entity.json │ │ ├── manifest.json │ │ ├── pack_icon.png │ │ ├── particles │ │ │ └── sword_swipe.json │ │ ├── render_controllers │ │ │ └── player.render_controllers.json │ │ ├── subpacks │ │ │ ├── alexnew │ │ │ │ └── models │ │ │ │ │ └── entity │ │ │ │ │ └── custom_player.geo.json │ │ │ ├── alexold │ │ │ │ └── models │ │ │ │ │ └── entity │ │ │ │ │ └── custom_player.geo.json │ │ │ ├── stevenew │ │ │ │ └── models │ │ │ │ │ └── entity │ │ │ │ │ └── custom_player.geo.json │ │ │ └── steveold │ │ │ │ └── models │ │ │ │ └── entity │ │ │ │ └── custom_player.geo.json │ │ └── textures │ │ │ └── particles │ │ │ └── sweep_attack.png │ └── OBSOLETE_AnimatedPlayer.mcpack │ ├── LuckyBlock │ ├── LuckyBlockBP │ │ ├── entities │ │ │ └── lucky_block.json │ │ ├── loot_tables │ │ │ └── entities │ │ │ │ ├── loot0.json │ │ │ │ ├── loot1.json │ │ │ │ ├── loot10.json │ │ │ │ ├── loot11.json │ │ │ │ ├── loot12.json │ │ │ │ ├── loot13.json │ │ │ │ ├── loot14.json │ │ │ │ ├── loot2.json │ │ │ │ ├── loot3.json │ │ │ │ ├── loot4.json │ │ │ │ ├── loot5.json │ │ │ │ ├── loot6.json │ │ │ │ ├── loot7.json │ │ │ │ ├── loot8.json │ │ │ │ └── loot9.json │ │ ├── manifest.json │ │ ├── pack_icon.png │ │ └── spawn_rules │ │ │ └── lucky_block.json │ ├── LuckyBlockRP │ │ ├── entity │ │ │ └── lucky_block.json │ │ ├── manifest.json │ │ ├── materials │ │ │ └── entity.material │ │ ├── models │ │ │ └── entity │ │ │ │ └── lucky_block.json │ │ ├── pack_icon.png │ │ ├── render_controllers │ │ │ └── lucky_block.json │ │ ├── texts │ │ │ └── en_US.lang │ │ └── textures │ │ │ └── entity │ │ │ └── lucky_block.png │ └── OBSOLETE_LuckyBlock.mcaddon │ └── RealisticMobs │ ├── OBSOLETE_RealisticMobs.mcpack │ └── RealisticMobsBP │ ├── entities.list │ ├── entities │ ├── bat.json │ ├── blaze.json │ ├── cavespider.json │ ├── enderman.json │ ├── ghast.json │ ├── guardian.json │ ├── guardian_elder.json │ ├── irongolem.json │ ├── silverfish.json │ ├── skeleton.json │ ├── snowgolem.json │ ├── spider.json │ ├── stray.json │ ├── wither.json │ ├── wither_boss.json │ ├── wither_skull.json │ └── wither_skull_dangerous.json │ ├── pack_icon.png │ └── pack_manifest.json ├── LICENSE ├── SkinPacks └── Blokkits │ ├── Blokkits Skin Pack.mcpack │ └── SP │ ├── Diamond.png │ ├── Gold.png │ ├── Grass.png │ ├── Iron.png │ ├── Stone.png │ ├── Wood.png │ ├── content.zipe │ ├── geometry.json │ ├── manifest.json │ ├── skins.json │ └── texts │ └── en_US.lang ├── WorkTools ├── BedrockContentLogWatcher │ ├── ContentLogWatcher.py │ ├── Icon.ico │ ├── SimpleAutoBuild.bat │ └── compiled_exe │ │ └── ContentLogWatcher.exe ├── JSONEncodingChanger │ ├── compiled_exe │ │ └── JSONChanger.exe │ ├── index.js │ └── package.json └── LiveReloadExperimentalUI │ └── liveReload.js └── Worlds └── InfiniteVoidWorld.mctemplate /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Addons/OnlyTesting/BlackHole/BlackHoleBP/animation_controllers/blackhole.animation_controller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/BlackHole/BlackHoleBP/animation_controllers/blackhole.animation_controller.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/BlackHole/BlackHoleBP/entities/blackhole.behavior.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/BlackHole/BlackHoleBP/entities/blackhole.behavior.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/BlackHole/BlackHoleBP/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/BlackHole/BlackHoleBP/manifest.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/BlackHole/BlackHoleRP/animation_controllers/blackhole.animation_controllers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/BlackHole/BlackHoleRP/animation_controllers/blackhole.animation_controllers.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/BlackHole/BlackHoleRP/entity/blackhole.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/BlackHole/BlackHoleRP/entity/blackhole.entity.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/BlackHole/BlackHoleRP/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/BlackHole/BlackHoleRP/manifest.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/BlackHole/BlackHoleRP/materials/entity.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/BlackHole/BlackHoleRP/materials/entity.material -------------------------------------------------------------------------------- /Addons/OnlyTesting/BlackHole/BlackHoleRP/particles/blackhole_fortnite_vortex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/BlackHole/BlackHoleRP/particles/blackhole_fortnite_vortex.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/BlackHole/BlackHoleRP/particles/blackhole_fortnite_vortex2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/BlackHole/BlackHoleRP/particles/blackhole_fortnite_vortex2.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/BlackHole/BlackHoleRP/particles/blackhole_sphere_inside.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/BlackHole/BlackHoleRP/particles/blackhole_sphere_inside.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/BlackHole/BlackHoleRP/particles/blackhole_sphere_outside.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/BlackHole/BlackHoleRP/particles/blackhole_sphere_outside.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/BlackHole/BlackHoleRP/particles/blackhole_vanilla_vortex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/BlackHole/BlackHoleRP/particles/blackhole_vanilla_vortex.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/BlackHole/BlackHoleRP/render_controllers/blackhole.render.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/BlackHole/BlackHoleRP/render_controllers/blackhole.render.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/BlackHole/BlackHoleRP/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/BlackHole/BlackHoleRP/sounds.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/BlackHole/BlackHoleRP/texts/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/BlackHole/BlackHoleRP/texts/en_US.lang -------------------------------------------------------------------------------- /Addons/OnlyTesting/BlackHole/BlackHoleRP/texts/languages.json: -------------------------------------------------------------------------------- 1 | ["en_US"] 2 | -------------------------------------------------------------------------------- /Addons/OnlyTesting/BlackHole/BlackHoleRP/textures/entity/blackhole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/BlackHole/BlackHoleRP/textures/entity/blackhole.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/BlackHole/BlackHoleRP/textures/entity/blackhole_particles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/BlackHole/BlackHoleRP/textures/entity/blackhole_particles.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/Blokkits/BlokkitsBP/entities/grass_blokkit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/Blokkits/BlokkitsBP/entities/grass_blokkit.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/Blokkits/BlokkitsBP/entities/magma_blokkit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/Blokkits/BlokkitsBP/entities/magma_blokkit.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/Blokkits/BlokkitsBP/entities/super_blokkit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/Blokkits/BlokkitsBP/entities/super_blokkit.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/Blokkits/BlokkitsBP/loot_tables/blokkit/loot/grass_blokkit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/Blokkits/BlokkitsBP/loot_tables/blokkit/loot/grass_blokkit.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/Blokkits/BlokkitsBP/loot_tables/blokkit/loot/magma_blokkit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/Blokkits/BlokkitsBP/loot_tables/blokkit/loot/magma_blokkit.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/Blokkits/BlokkitsBP/loot_tables/blokkit/loot/super_blokkit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/Blokkits/BlokkitsBP/loot_tables/blokkit/loot/super_blokkit.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/Blokkits/BlokkitsBP/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/Blokkits/BlokkitsBP/manifest.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/Blokkits/BlokkitsRP/animation_controllers/blokkit.animation_controllers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/Blokkits/BlokkitsRP/animation_controllers/blokkit.animation_controllers.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/Blokkits/BlokkitsRP/animation_controllers/magma_blokkit.animation_controllers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/Blokkits/BlokkitsRP/animation_controllers/magma_blokkit.animation_controllers.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/Blokkits/BlokkitsRP/animations/blokkit.animations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/Blokkits/BlokkitsRP/animations/blokkit.animations.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/Blokkits/BlokkitsRP/animations/super_blokkit.animations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/Blokkits/BlokkitsRP/animations/super_blokkit.animations.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/Blokkits/BlokkitsRP/entity/grass_blokkit.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/Blokkits/BlokkitsRP/entity/grass_blokkit.entity.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/Blokkits/BlokkitsRP/entity/magma_blokkit.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/Blokkits/BlokkitsRP/entity/magma_blokkit.entity.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/Blokkits/BlokkitsRP/entity/super_blokkit.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/Blokkits/BlokkitsRP/entity/super_blokkit.entity.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/Blokkits/BlokkitsRP/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/Blokkits/BlokkitsRP/manifest.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/Blokkits/BlokkitsRP/materials/entity.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/Blokkits/BlokkitsRP/materials/entity.material -------------------------------------------------------------------------------- /Addons/OnlyTesting/Blokkits/BlokkitsRP/models/entity/blokkit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/Blokkits/BlokkitsRP/models/entity/blokkit.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/Blokkits/BlokkitsRP/models/entity/grass_blokkit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/Blokkits/BlokkitsRP/models/entity/grass_blokkit.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/Blokkits/BlokkitsRP/particles/magma_blokkit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/Blokkits/BlokkitsRP/particles/magma_blokkit.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/Blokkits/BlokkitsRP/render_controllers/grass_blokkit.render_controllers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/Blokkits/BlokkitsRP/render_controllers/grass_blokkit.render_controllers.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/Blokkits/BlokkitsRP/render_controllers/magma_blokkit.render_controllers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/Blokkits/BlokkitsRP/render_controllers/magma_blokkit.render_controllers.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/Blokkits/BlokkitsRP/render_controllers/super_blokkit.render_controllers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/Blokkits/BlokkitsRP/render_controllers/super_blokkit.render_controllers.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/Blokkits/BlokkitsRP/texts/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/Blokkits/BlokkitsRP/texts/en_US.lang -------------------------------------------------------------------------------- /Addons/OnlyTesting/Blokkits/BlokkitsRP/textures/entity/blokkit/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/Blokkits/BlokkitsRP/textures/entity/blokkit/grass.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/Blokkits/BlokkitsRP/textures/entity/blokkit/magma/magma_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/Blokkits/BlokkitsRP/textures/entity/blokkit/magma/magma_0.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/Blokkits/BlokkitsRP/textures/entity/blokkit/magma/magma_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/Blokkits/BlokkitsRP/textures/entity/blokkit/magma/magma_1.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/Blokkits/BlokkitsRP/textures/entity/blokkit/super/super.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/Blokkits/BlokkitsRP/textures/entity/blokkit/super/super.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/Blokkits/BlokkitsRP/textures/entity/blokkit/super/super_tamed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/Blokkits/BlokkitsRP/textures/entity/blokkit/super/super_tamed.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/Blokkits/BlokkitsRP/textures/entity/blokkit/tnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/Blokkits/BlokkitsRP/textures/entity/blokkit/tnt.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineBP/blocks/spmax/cells/TEST_cloner.blk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineBP/blocks/spmax/cells/TEST_cloner.blk.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineBP/blocks/spmax/cells/TEST_rotator_left.blk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineBP/blocks/spmax/cells/TEST_rotator_left.blk.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineBP/blocks/spmax/cells/blocker_dot.blk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineBP/blocks/spmax/cells/blocker_dot.blk.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineBP/blocks/spmax/cells/blocker_plain.blk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineBP/blocks/spmax/cells/blocker_plain.blk.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineBP/blocks/spmax/cells/blocker_square.blk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineBP/blocks/spmax/cells/blocker_square.blk.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineBP/blocks/spmax/cells/cloner.blk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineBP/blocks/spmax/cells/cloner.blk.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineBP/blocks/spmax/cells/enemy.blk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineBP/blocks/spmax/cells/enemy.blk.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineBP/blocks/spmax/cells/mover.blk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineBP/blocks/spmax/cells/mover.blk.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineBP/blocks/spmax/cells/rotator_left.blk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineBP/blocks/spmax/cells/rotator_left.blk.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineBP/blocks/spmax/cells/rotator_right.blk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineBP/blocks/spmax/cells/rotator_right.blk.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineBP/blocks/spmax/cells/shield.blk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineBP/blocks/spmax/cells/shield.blk.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineBP/blocks/spmax/cells/teleporter.blk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineBP/blocks/spmax/cells/teleporter.blk.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineBP/blocks/spmax/cells/trasher.blk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineBP/blocks/spmax/cells/trasher.blk.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineBP/blocks/spmax/cells/walker_one.blk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineBP/blocks/spmax/cells/walker_one.blk.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineBP/blocks/spmax/cells/walker_two.blk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineBP/blocks/spmax/cells/walker_two.blk.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineBP/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineBP/manifest.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineRP/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineRP/manifest.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/blocker_dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/blocker_dot.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/blocker_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/blocker_grid.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/blocker_plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/blocker_plain.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/blocker_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/blocker_square.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/blocker_undot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/blocker_undot.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/blocker_unsquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/blocker_unsquare.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/cloner_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/cloner_back.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/cloner_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/cloner_side.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/enemy_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/enemy_back.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/enemy_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/enemy_side.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/mover_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/mover_back.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/mover_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/mover_side.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/rotator_left_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/rotator_left_back.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/rotator_left_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/rotator_left_side.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/rotator_right_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/rotator_right_back.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/rotator_right_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/rotator_right_side.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/shield_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/shield_back.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/shield_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/shield_side.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/teleporter_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/teleporter_back.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/teleporter_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/teleporter_side.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/trasher_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/trasher_back.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/trasher_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/trasher_side.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/walker_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/walker_back.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/walker_one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/walker_one.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/walker_two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineRP/textures/spmax/blocks/cells/walker_two.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/CellMachine/CellMachineRP/textures/terrain_texture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CellMachine/CellMachineRP/textures/terrain_texture.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CustomBlockUI/CustomBlockUIBP/blocks/bnblk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CustomBlockUI/CustomBlockUIBP/blocks/bnblk.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CustomBlockUI/CustomBlockUIBP/blocks/ctblk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CustomBlockUI/CustomBlockUIBP/blocks/ctblk.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CustomBlockUI/CustomBlockUIBP/blocks/psblk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CustomBlockUI/CustomBlockUIBP/blocks/psblk.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CustomBlockUI/CustomBlockUIBP/blocks/ptblk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CustomBlockUI/CustomBlockUIBP/blocks/ptblk.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CustomBlockUI/CustomBlockUIBP/blocks/wiblk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CustomBlockUI/CustomBlockUIBP/blocks/wiblk.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CustomBlockUI/CustomBlockUIBP/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CustomBlockUI/CustomBlockUIBP/manifest.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CustomBlockUI/CustomBlockUIRP/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CustomBlockUI/CustomBlockUIRP/manifest.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CustomBlockUI/CustomBlockUIRP/models/blocks/binaryblock.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CustomBlockUI/CustomBlockUIRP/models/blocks/binaryblock.geo.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CustomBlockUI/CustomBlockUIRP/texts/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CustomBlockUI/CustomBlockUIRP/texts/en_US.lang -------------------------------------------------------------------------------- /Addons/OnlyTesting/CustomBlockUI/CustomBlockUIRP/texts/languages.json: -------------------------------------------------------------------------------- 1 | ["en_US"] 2 | -------------------------------------------------------------------------------- /Addons/OnlyTesting/CustomBlockUI/CustomBlockUIRP/textures/blocks/binaryblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CustomBlockUI/CustomBlockUIRP/textures/blocks/binaryblock.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/CustomBlockUI/CustomBlockUIRP/textures/terrain_texture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CustomBlockUI/CustomBlockUIRP/textures/terrain_texture.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CustomBlockUI/CustomBlockUIRP/ui/_ui_defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CustomBlockUI/CustomBlockUIRP/ui/_ui_defs.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CustomBlockUI/CustomBlockUIRP/ui/inventory_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CustomBlockUI/CustomBlockUIRP/ui/inventory_screen.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CustomBlockUI/CustomBlockUIRP/ui/spmax/block_screens/custom_crafting_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CustomBlockUI/CustomBlockUIRP/ui/spmax/block_screens/custom_crafting_screen.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CustomBlockUI/CustomBlockUIRP/ui/spmax/block_screens/player_status_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CustomBlockUI/CustomBlockUIRP/ui/spmax/block_screens/player_status_screen.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CustomBlockUI/CustomBlockUIRP/ui/spmax/block_screens/world_info_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CustomBlockUI/CustomBlockUIRP/ui/spmax/block_screens/world_info_screen.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CustomBlockUI/CustomBlockUIRP/ui/spmax/custom_blocks_main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CustomBlockUI/CustomBlockUIRP/ui/spmax/custom_blocks_main.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CustomStatueTest/CustomStatueTestBP/entities/TestStatue/statue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CustomStatueTest/CustomStatueTestBP/entities/TestStatue/statue.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CustomStatueTest/CustomStatueTestBP/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CustomStatueTest/CustomStatueTestBP/manifest.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CustomStatueTest/CustomStatueTestRP/animation_controllers/statue.animation_controllers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CustomStatueTest/CustomStatueTestRP/animation_controllers/statue.animation_controllers.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CustomStatueTest/CustomStatueTestRP/animations/statue.animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CustomStatueTest/CustomStatueTestRP/animations/statue.animation.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CustomStatueTest/CustomStatueTestRP/entity/TestStatue/statue.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CustomStatueTest/CustomStatueTestRP/entity/TestStatue/statue.entity.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CustomStatueTest/CustomStatueTestRP/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CustomStatueTest/CustomStatueTestRP/manifest.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CustomStatueTest/CustomStatueTestRP/models/entity/statue.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CustomStatueTest/CustomStatueTestRP/models/entity/statue.geo.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CustomStatueTest/CustomStatueTestRP/render_controllers/statue.render_controllers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CustomStatueTest/CustomStatueTestRP/render_controllers/statue.render_controllers.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/CustomStatueTest/CustomStatueTestRP/textures/TestStatue/statue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/CustomStatueTest/CustomStatueTestRP/textures/TestStatue/statue.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/FluidPipe/FluidPipeBP/blocks/sprintermax/TestPipes/GenericPipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/FluidPipe/FluidPipeBP/blocks/sprintermax/TestPipes/GenericPipe.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/FluidPipe/FluidPipeBP/blocks/sprintermax/TestPipes/glass_pipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/FluidPipe/FluidPipeBP/blocks/sprintermax/TestPipes/glass_pipe.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/FluidPipe/FluidPipeBP/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/FluidPipe/FluidPipeBP/manifest.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/FluidPipe/FluidPipeRP/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/FluidPipe/FluidPipeRP/manifest.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/FluidPipe/FluidPipeRP/models/blocks/sprintermax/TestPipes/GenericPipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/FluidPipe/FluidPipeRP/models/blocks/sprintermax/TestPipes/GenericPipe.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/FluidPipe/FluidPipeRP/models/blocks/sprintermax/TestPipes/GlassPipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/FluidPipe/FluidPipeRP/models/blocks/sprintermax/TestPipes/GlassPipe.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/FluidPipe/FluidPipeRP/textures/blocks/sprintermax/pipes/old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/FluidPipe/FluidPipeRP/textures/blocks/sprintermax/pipes/old.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/FluidPipe/FluidPipeRP/textures/blocks/sprintermax/pipes/pipe_base_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/FluidPipe/FluidPipeRP/textures/blocks/sprintermax/pipes/pipe_base_black.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/FluidPipe/FluidPipeRP/textures/blocks/sprintermax/pipes/pipe_base_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/FluidPipe/FluidPipeRP/textures/blocks/sprintermax/pipes/pipe_base_blue.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/FluidPipe/FluidPipeRP/textures/blocks/sprintermax/pipes/pipe_base_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/FluidPipe/FluidPipeRP/textures/blocks/sprintermax/pipes/pipe_base_green.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/FluidPipe/FluidPipeRP/textures/blocks/sprintermax/pipes/pipe_base_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/FluidPipe/FluidPipeRP/textures/blocks/sprintermax/pipes/pipe_base_red.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/FluidPipe/FluidPipeRP/textures/blocks/sprintermax/pipes/pipe_base_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/FluidPipe/FluidPipeRP/textures/blocks/sprintermax/pipes/pipe_base_white.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/FluidPipe/FluidPipeRP/textures/blocks/sprintermax/pipes/pipe_base_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/FluidPipe/FluidPipeRP/textures/blocks/sprintermax/pipes/pipe_base_yellow.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/FluidPipe/FluidPipeRP/textures/blocks/sprintermax/pipes/pipe_bases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/FluidPipe/FluidPipeRP/textures/blocks/sprintermax/pipes/pipe_bases.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/FluidPipe/FluidPipeRP/textures/blocks/sprintermax/pipes/pipe_fluid_exp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/FluidPipe/FluidPipeRP/textures/blocks/sprintermax/pipes/pipe_fluid_exp.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/FluidPipe/FluidPipeRP/textures/blocks/sprintermax/pipes/pipe_fluid_lava.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/FluidPipe/FluidPipeRP/textures/blocks/sprintermax/pipes/pipe_fluid_lava.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/FluidPipe/FluidPipeRP/textures/blocks/sprintermax/pipes/pipe_fluid_water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/FluidPipe/FluidPipeRP/textures/blocks/sprintermax/pipes/pipe_fluid_water.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/FluidPipe/FluidPipeRP/textures/blocks/sprintermax/pipes/pipe_glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/FluidPipe/FluidPipeRP/textures/blocks/sprintermax/pipes/pipe_glass.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/FluidPipe/FluidPipeRP/textures/terrain_texture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/FluidPipe/FluidPipeRP/textures/terrain_texture.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/GameTestScripting/GameTestScriptingBP/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/GameTestScripting/GameTestScriptingBP/manifest.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/GameTestScripting/GameTestScriptingBP/scripts/spmax/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/GameTestScripting/GameTestScriptingBP/scripts/spmax/index.js -------------------------------------------------------------------------------- /Addons/OnlyTesting/HUDPlus/HUDPlus Core RP/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/HUDPlus/HUDPlus Core RP/manifest.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/HUDPlus/HUDPlus Core RP/texts/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/HUDPlus/HUDPlus Core RP/texts/en_US.lang -------------------------------------------------------------------------------- /Addons/OnlyTesting/HUDPlus/HUDPlus Core RP/texts/languages.json: -------------------------------------------------------------------------------- 1 | ["en_US"] 2 | -------------------------------------------------------------------------------- /Addons/OnlyTesting/HUDPlus/HUDPlus Core RP/ui/_ui_defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/HUDPlus/HUDPlus Core RP/ui/_ui_defs.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/HUDPlus/HUDPlus Core RP/ui/chat_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/HUDPlus/HUDPlus Core RP/ui/chat_screen.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/HUDPlus/HUDPlus Core RP/ui/hud_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/HUDPlus/HUDPlus Core RP/ui/hud_screen.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/HUDPlus/HUDPlus Core RP/ui/mxui/hudplus_chat_common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/HUDPlus/HUDPlus Core RP/ui/mxui/hudplus_chat_common.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/HUDPlus/HUDPlus Core RP/ui/mxui/hudplus_common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/HUDPlus/HUDPlus Core RP/ui/mxui/hudplus_common.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/HUDPlus/HUDPlus Core RP/ui/mxui/hudplus_screen_definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/HUDPlus/HUDPlus Core RP/ui/mxui/hudplus_screen_definitions.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/HUDPlus/HUDPlus Examples RP/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/HUDPlus/HUDPlus Examples RP/manifest.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/HUDPlus/HUDPlus Examples RP/texts/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/HUDPlus/HUDPlus Examples RP/texts/en_US.lang -------------------------------------------------------------------------------- /Addons/OnlyTesting/HUDPlus/HUDPlus Examples RP/texts/languages.json: -------------------------------------------------------------------------------- 1 | ["en_US"] 2 | -------------------------------------------------------------------------------- /Addons/OnlyTesting/HUDPlus/HUDPlus Examples RP/ui/_ui_defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/HUDPlus/HUDPlus Examples RP/ui/_ui_defs.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/HUDPlus/HUDPlus Examples RP/ui/mxui/hudplus_chat_common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/HUDPlus/HUDPlus Examples RP/ui/mxui/hudplus_chat_common.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/HUDPlus/HUDPlus Examples RP/ui/mxui/hudplus_screen_definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/HUDPlus/HUDPlus Examples RP/ui/mxui/hudplus_screen_definitions.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/HUDPlus/HUDPlus Examples RP/ui/spmax/hudplus_cinemabars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/HUDPlus/HUDPlus Examples RP/ui/spmax/hudplus_cinemabars.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/HUDPlus/HUDPlus Examples RP/ui/spmax/hudplus_messagetext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/HUDPlus/HUDPlus Examples RP/ui/spmax/hudplus_messagetext.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/HUDPlus/HUDPlus Examples RP/ui/spmax/hudplus_notification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/HUDPlus/HUDPlus Examples RP/ui/spmax/hudplus_notification.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MoreMobs/MoreMobsBP/entities/ant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MoreMobs/MoreMobsBP/entities/ant.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MoreMobs/MoreMobsBP/entities/car.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MoreMobs/MoreMobsBP/entities/car.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MoreMobs/MoreMobsBP/entities/tyrannosaur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MoreMobs/MoreMobsBP/entities/tyrannosaur.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MoreMobs/MoreMobsBP/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MoreMobs/MoreMobsBP/manifest.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MoreMobs/MoreMobsBP/spawn_rules/ant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MoreMobs/MoreMobsBP/spawn_rules/ant.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MoreMobs/MoreMobsRP/animation_controllers/ant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MoreMobs/MoreMobsRP/animation_controllers/ant.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MoreMobs/MoreMobsRP/animation_controllers/car.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MoreMobs/MoreMobsRP/animation_controllers/car.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MoreMobs/MoreMobsRP/animation_controllers/tyrannosaur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MoreMobs/MoreMobsRP/animation_controllers/tyrannosaur.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MoreMobs/MoreMobsRP/animations/ant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MoreMobs/MoreMobsRP/animations/ant.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MoreMobs/MoreMobsRP/animations/car.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MoreMobs/MoreMobsRP/animations/car.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MoreMobs/MoreMobsRP/animations/tyrannosaur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MoreMobs/MoreMobsRP/animations/tyrannosaur.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MoreMobs/MoreMobsRP/entity/ant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MoreMobs/MoreMobsRP/entity/ant.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MoreMobs/MoreMobsRP/entity/car.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MoreMobs/MoreMobsRP/entity/car.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MoreMobs/MoreMobsRP/entity/tyrannosaur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MoreMobs/MoreMobsRP/entity/tyrannosaur.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MoreMobs/MoreMobsRP/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MoreMobs/MoreMobsRP/manifest.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MoreMobs/MoreMobsRP/materials/entity.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MoreMobs/MoreMobsRP/materials/entity.material -------------------------------------------------------------------------------- /Addons/OnlyTesting/MoreMobs/MoreMobsRP/models/entity/ant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MoreMobs/MoreMobsRP/models/entity/ant.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MoreMobs/MoreMobsRP/models/entity/car.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MoreMobs/MoreMobsRP/models/entity/car.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MoreMobs/MoreMobsRP/models/entity/tyrannosaur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MoreMobs/MoreMobsRP/models/entity/tyrannosaur.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MoreMobs/MoreMobsRP/particles/turboboost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MoreMobs/MoreMobsRP/particles/turboboost.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MoreMobs/MoreMobsRP/render_controllers/ant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MoreMobs/MoreMobsRP/render_controllers/ant.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MoreMobs/MoreMobsRP/render_controllers/car.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MoreMobs/MoreMobsRP/render_controllers/car.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MoreMobs/MoreMobsRP/render_controllers/tyrannosaur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MoreMobs/MoreMobsRP/render_controllers/tyrannosaur.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MoreMobs/MoreMobsRP/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MoreMobs/MoreMobsRP/sounds.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MoreMobs/MoreMobsRP/texts/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MoreMobs/MoreMobsRP/texts/en_US.lang -------------------------------------------------------------------------------- /Addons/OnlyTesting/MoreMobs/MoreMobsRP/textures/entity/ant/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MoreMobs/MoreMobsRP/textures/entity/ant/black.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MoreMobs/MoreMobsRP/textures/entity/ant/brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MoreMobs/MoreMobsRP/textures/entity/ant/brown.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MoreMobs/MoreMobsRP/textures/entity/car/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MoreMobs/MoreMobsRP/textures/entity/car/car.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MoreMobs/MoreMobsRP/textures/entity/tyrannosaur/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MoreMobs/MoreMobsRP/textures/entity/tyrannosaur/default.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/bridge/.editor-cache: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/bridge/uninstalled_plugins.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/entities/axolotl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/entities/axolotl.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/entities/carrage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/entities/carrage.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/entities/centaur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/entities/centaur.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/entities/crafting_table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/entities/crafting_table.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/entities/crafting_table_internal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/entities/crafting_table_internal.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/entities/forcefield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/entities/forcefield.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/entities/gust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/entities/gust.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/entities/invocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/entities/invocation.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/entities/minotaur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/entities/minotaur.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/entities/raven.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/entities/raven.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/entities/siren.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/entities/siren.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/entities/syclop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/entities/syclop.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/entities/werewolf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/entities/werewolf.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/functions/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/functions/main.mcfunction -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/functions/ores.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/functions/ores.mcfunction -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/functions/setup.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/functions/setup.mcfunction -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/loot_tables/mystic/gear/centaur_melee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/loot_tables/mystic/gear/centaur_melee.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/loot_tables/mystic/gear/centaur_ranged.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/loot_tables/mystic/gear/centaur_ranged.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/loot_tables/mystic/loot/axolotl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/loot_tables/mystic/loot/axolotl.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/loot_tables/mystic/loot/centaur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/loot_tables/mystic/loot/centaur.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/loot_tables/mystic/loot/forcefield_deactivate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/loot_tables/mystic/loot/forcefield_deactivate.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/loot_tables/mystic/loot/minotaur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/loot_tables/mystic/loot/minotaur.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/loot_tables/mystic/loot/raven.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/loot_tables/mystic/loot/raven.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/loot_tables/mystic/loot/syclop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/loot_tables/mystic/loot/syclop.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/manifest.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/pack_icon.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/scripts/client/mystic_client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/scripts/client/mystic_client.js -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/scripts/server/mystic_server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/scripts/server/mystic_server.js -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/spawn_egg_drops/crafting_table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/spawn_egg_drops/crafting_table.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/spawn_rules/syclop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/spawn_rules/syclop.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/trading/crafting_table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/trading/crafting_table.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/trading/custom_crafting_table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftBP/trading/custom_crafting_table.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/animation_controllers/axolotl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/animation_controllers/axolotl.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/animation_controllers/carrage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/animation_controllers/carrage.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/animation_controllers/centaur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/animation_controllers/centaur.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/animation_controllers/forcefield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/animation_controllers/forcefield.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/animation_controllers/gust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/animation_controllers/gust.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/animation_controllers/minotaur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/animation_controllers/minotaur.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/animation_controllers/raven.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/animation_controllers/raven.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/animation_controllers/syclop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/animation_controllers/syclop.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/animations/axolotl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/animations/axolotl.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/animations/carrage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/animations/carrage.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/animations/centaur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/animations/centaur.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/animations/forcefield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/animations/forcefield.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/animations/gust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/animations/gust.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/animations/minotaur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/animations/minotaur.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/animations/raven.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/animations/raven.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/animations/syclop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/animations/syclop.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/blocks.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/entity/axolotl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/entity/axolotl.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/entity/carrage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/entity/carrage.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/entity/centaur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/entity/centaur.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/entity/crafting_table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/entity/crafting_table.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/entity/forcefield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/entity/forcefield.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/entity/gust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/entity/gust.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/entity/invocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/entity/invocation.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/entity/minotaur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/entity/minotaur.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/entity/raven.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/entity/raven.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/entity/siren.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/entity/siren.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/entity/syclop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/entity/syclop.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/entity/werewolf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/entity/werewolf.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/manifest.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/materials/entity.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/materials/entity.material -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/models/entity/Invocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/models/entity/Invocation.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/models/entity/axolotl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/models/entity/axolotl.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/models/entity/carrage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/models/entity/carrage.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/models/entity/centaur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/models/entity/centaur.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/models/entity/forcefield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/models/entity/forcefield.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/models/entity/gust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/models/entity/gust.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/models/entity/minotaur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/models/entity/minotaur.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/models/entity/raven.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/models/entity/raven.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/models/entity/siren.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/models/entity/siren.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/models/entity/syclop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/models/entity/syclop.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/models/entity/table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/models/entity/table.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/models/entity/werewolf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/models/entity/werewolf.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/pack_icon.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/particles/compressed_explode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/particles/compressed_explode.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/particles/shield_beam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/particles/shield_beam.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/particles/shield_sphere.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/particles/shield_sphere.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/particles/shield_top.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/particles/shield_top.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/render_controllers/axolotl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/render_controllers/axolotl.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/render_controllers/carrage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/render_controllers/carrage.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/render_controllers/centaur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/render_controllers/centaur.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/render_controllers/crafting_table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/render_controllers/crafting_table.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/render_controllers/forcefield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/render_controllers/forcefield.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/render_controllers/gust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/render_controllers/gust.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/render_controllers/invocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/render_controllers/invocation.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/render_controllers/minotaur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/render_controllers/minotaur.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/render_controllers/raven.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/render_controllers/raven.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/render_controllers/siren.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/render_controllers/siren.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/render_controllers/syclop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/render_controllers/syclop.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/render_controllers/werewolf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/render_controllers/werewolf.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/sounds.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/texts/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/texts/en_US.lang -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/blocks/mystic/container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/blocks/mystic/container.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/axolotl/axolotl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/axolotl/axolotl.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/axolotl/axolotl_water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/axolotl/axolotl_water.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/carrage/carrage_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/carrage/carrage_black.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/carrage/carrage_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/carrage/carrage_blue.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/carrage/carrage_brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/carrage/carrage_brown.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/carrage/carrage_cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/carrage/carrage_cyan.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/carrage/carrage_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/carrage/carrage_gray.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/carrage/carrage_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/carrage/carrage_green.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/carrage/carrage_light_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/carrage/carrage_light_blue.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/carrage/carrage_lime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/carrage/carrage_lime.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/carrage/carrage_magenta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/carrage/carrage_magenta.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/carrage/carrage_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/carrage/carrage_orange.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/carrage/carrage_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/carrage/carrage_pink.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/carrage/carrage_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/carrage/carrage_purple.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/carrage/carrage_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/carrage/carrage_red.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/carrage/carrage_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/carrage/carrage_silver.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/carrage/carrage_undyed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/carrage/carrage_undyed.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/carrage/carrage_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/carrage/carrage_white.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/carrage/carrage_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/carrage/carrage_yellow.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/centaur/centaur_autumn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/centaur/centaur_autumn.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/centaur/centaur_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/centaur/centaur_blue.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/centaur/centaur_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/centaur/centaur_purple.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/centaur/centaur_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/centaur/centaur_red.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/crafting_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/crafting_table.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/forcefield/forcefield_no_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/forcefield/forcefield_no_item.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/forcefield/forcefield_with_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/forcefield/forcefield_with_item.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/forcefield/sphere_particle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/forcefield/sphere_particle.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/invocation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/invocation.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/minotaur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/minotaur.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/raven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/raven.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/siren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/siren.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/syclop/gust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/syclop/gust.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/syclop/syclop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/syclop/syclop.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/werewolf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/entity/werewolf.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/item_texture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/item_texture.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/items/spawn_egg_carrage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/items/spawn_egg_carrage.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/items/spawn_egg_forcefield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/items/spawn_egg_forcefield.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/items/spawn_egg_invocation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/items/spawn_egg_invocation.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/items/spawn_egg_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/items/spawn_egg_table.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/terrain_texture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/MysthicCraft/MysthicCraftRP/textures/terrain_texture.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/NPCPlus/NPCPlus Core RP/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/NPCPlus/NPCPlus Core RP/manifest.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/NPCPlus/NPCPlus Core RP/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/NPCPlus/NPCPlus Core RP/pack_icon.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/NPCPlus/NPCPlus Core RP/texts/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/NPCPlus/NPCPlus Core RP/texts/en_US.lang -------------------------------------------------------------------------------- /Addons/OnlyTesting/NPCPlus/NPCPlus Core RP/texts/languages.json: -------------------------------------------------------------------------------- 1 | ["en_US"] 2 | -------------------------------------------------------------------------------- /Addons/OnlyTesting/NPCPlus/NPCPlus Core RP/ui/_global_variables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/NPCPlus/NPCPlus Core RP/ui/_global_variables.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/NPCPlus/NPCPlus Core RP/ui/_ui_defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/NPCPlus/NPCPlus Core RP/ui/_ui_defs.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/NPCPlus/NPCPlus Core RP/ui/mxui/npcplus_common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/NPCPlus/NPCPlus Core RP/ui/mxui/npcplus_common.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/NPCPlus/NPCPlus Core RP/ui/mxui/npcplus_fullscreen_common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/NPCPlus/NPCPlus Core RP/ui/mxui/npcplus_fullscreen_common.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/NPCPlus/NPCPlus Core RP/ui/mxui/npcplus_screen_definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/NPCPlus/NPCPlus Core RP/ui/mxui/npcplus_screen_definitions.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/NPCPlus/NPCPlus Core RP/ui/mxui/npcplus_teacher_view.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/NPCPlus/NPCPlus Core RP/ui/mxui/npcplus_teacher_view.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/NPCPlus/NPCPlus Core RP/ui/mxui/npcplus_vanilla_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/NPCPlus/NPCPlus Core RP/ui/mxui/npcplus_vanilla_screen.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/NPCPlus/NPCPlus Core RP/ui/npc_interact_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/NPCPlus/NPCPlus Core RP/ui/npc_interact_screen.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/NPCPlus/NPCPlus Examples BP/dialogue/change_ui_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/NPCPlus/NPCPlus Examples BP/dialogue/change_ui_1.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/NPCPlus/NPCPlus Examples BP/dialogue/change_ui_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/NPCPlus/NPCPlus Examples BP/dialogue/change_ui_2.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/NPCPlus/NPCPlus Examples BP/dialogue/change_ui_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/NPCPlus/NPCPlus Examples BP/dialogue/change_ui_3.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/NPCPlus/NPCPlus Examples BP/dialogue/change_ui_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/NPCPlus/NPCPlus Examples BP/dialogue/change_ui_4.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/NPCPlus/NPCPlus Examples BP/dialogue/test_bottomaction_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/NPCPlus/NPCPlus Examples BP/dialogue/test_bottomaction_1.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/NPCPlus/NPCPlus Examples BP/dialogue/test_fullscreen_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/NPCPlus/NPCPlus Examples BP/dialogue/test_fullscreen_1.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/NPCPlus/NPCPlus Examples BP/dialogue/test_scrollbox_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/NPCPlus/NPCPlus Examples BP/dialogue/test_scrollbox_1.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/NPCPlus/NPCPlus Examples BP/dialogue/test_scrollbox_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/NPCPlus/NPCPlus Examples BP/dialogue/test_scrollbox_2.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/NPCPlus/NPCPlus Examples BP/dialogue/test_scrollbox_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/NPCPlus/NPCPlus Examples BP/dialogue/test_scrollbox_3.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/NPCPlus/NPCPlus Examples BP/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/NPCPlus/NPCPlus Examples BP/manifest.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/NPCPlus/NPCPlus Examples BP/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/NPCPlus/NPCPlus Examples BP/pack_icon.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/NPCPlus/NPCPlus Examples BP/texts/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/NPCPlus/NPCPlus Examples BP/texts/en_US.lang -------------------------------------------------------------------------------- /Addons/OnlyTesting/NPCPlus/NPCPlus Examples BP/texts/languages.json: -------------------------------------------------------------------------------- 1 | ["en_US"] 2 | -------------------------------------------------------------------------------- /Addons/OnlyTesting/NPCPlus/NPCPlus Examples RP/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/NPCPlus/NPCPlus Examples RP/manifest.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/NPCPlus/NPCPlus Examples RP/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/NPCPlus/NPCPlus Examples RP/pack_icon.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/NPCPlus/NPCPlus Examples RP/texts/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/NPCPlus/NPCPlus Examples RP/texts/en_US.lang -------------------------------------------------------------------------------- /Addons/OnlyTesting/NPCPlus/NPCPlus Examples RP/texts/languages.json: -------------------------------------------------------------------------------- 1 | ["en_US"] 2 | -------------------------------------------------------------------------------- /Addons/OnlyTesting/NPCPlus/NPCPlus Examples RP/ui/_ui_defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/NPCPlus/NPCPlus Examples RP/ui/_ui_defs.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/NPCPlus/NPCPlus Examples RP/ui/mxui/npcplus_screen_definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/NPCPlus/NPCPlus Examples RP/ui/mxui/npcplus_screen_definitions.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/NPCPlus/NPCPlus Examples RP/ui/spmax/npcplus_bottom_action_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/NPCPlus/NPCPlus Examples RP/ui/spmax/npcplus_bottom_action_screen.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/NPCPlus/NPCPlus Examples RP/ui/spmax/npcplus_fullscreen_menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/NPCPlus/NPCPlus Examples RP/ui/spmax/npcplus_fullscreen_menu.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/NPCPlus/NPCPlus Examples RP/ui/spmax/npcplus_scrollbox_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/NPCPlus/NPCPlus Examples RP/ui/spmax/npcplus_scrollbox_screen.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/RainbowCreeper/RainbowCreeperRP/entity/creeper.v1.0.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/RainbowCreeper/RainbowCreeperRP/entity/creeper.v1.0.entity.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/RainbowCreeper/RainbowCreeperRP/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/RainbowCreeper/RainbowCreeperRP/manifest.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/RainbowCreeper/RainbowCreeperRP/materials/entity.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/RainbowCreeper/RainbowCreeperRP/materials/entity.material -------------------------------------------------------------------------------- /Addons/OnlyTesting/RainbowCreeper/RainbowCreeperRP/render_controllers/creeper.render_controllers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/RainbowCreeper/RainbowCreeperRP/render_controllers/creeper.render_controllers.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/RainbowCreeper/RainbowCreeperRP/render_controllers/creeper_armor.render_controllers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/RainbowCreeper/RainbowCreeperRP/render_controllers/creeper_armor.render_controllers.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/RainbowCreeper/RainbowCreeperRP/render_controllers/creeper_rainbow.render_controllers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/RainbowCreeper/RainbowCreeperRP/render_controllers/creeper_rainbow.render_controllers.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/RainbowCreeper/RainbowCreeperRP/textures/entity/creeper/creeper_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/RainbowCreeper/RainbowCreeperRP/textures/entity/creeper/creeper_details.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/RainbowCreeper/RainbowCreeperRP/textures/entity/creeper/rainbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/RainbowCreeper/RainbowCreeperRP/textures/entity/creeper/rainbow.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/ServerFormPlus/SFPlus Core RP/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/ServerFormPlus/SFPlus Core RP/manifest.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/ServerFormPlus/SFPlus Core RP/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/ServerFormPlus/SFPlus Core RP/pack_icon.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/ServerFormPlus/SFPlus Core RP/texts/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/ServerFormPlus/SFPlus Core RP/texts/en_US.lang -------------------------------------------------------------------------------- /Addons/OnlyTesting/ServerFormPlus/SFPlus Core RP/texts/languages.json: -------------------------------------------------------------------------------- 1 | ["en_US"] 2 | -------------------------------------------------------------------------------- /Addons/OnlyTesting/ServerFormPlus/SFPlus Core RP/ui/_global_variables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/ServerFormPlus/SFPlus Core RP/ui/_global_variables.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/ServerFormPlus/SFPlus Core RP/ui/_ui_defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/ServerFormPlus/SFPlus Core RP/ui/_ui_defs.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/ServerFormPlus/SFPlus Core RP/ui/mxui/sfplus_common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/ServerFormPlus/SFPlus Core RP/ui/mxui/sfplus_common.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/ServerFormPlus/SFPlus Core RP/ui/mxui/sfplus_fullscreen_common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/ServerFormPlus/SFPlus Core RP/ui/mxui/sfplus_fullscreen_common.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/ServerFormPlus/SFPlus Core RP/ui/mxui/sfplus_screen_definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/ServerFormPlus/SFPlus Core RP/ui/mxui/sfplus_screen_definitions.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/ServerFormPlus/SFPlus Core RP/ui/server_form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/ServerFormPlus/SFPlus Core RP/ui/server_form.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/ServerFormPlus/SFPlus Examples RP/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/ServerFormPlus/SFPlus Examples RP/manifest.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/ServerFormPlus/SFPlus Examples RP/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/ServerFormPlus/SFPlus Examples RP/pack_icon.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/ServerFormPlus/SFPlus Examples RP/texts/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/ServerFormPlus/SFPlus Examples RP/texts/en_US.lang -------------------------------------------------------------------------------- /Addons/OnlyTesting/ServerFormPlus/SFPlus Examples RP/texts/languages.json: -------------------------------------------------------------------------------- 1 | ["en_US"] 2 | -------------------------------------------------------------------------------- /Addons/OnlyTesting/ServerFormPlus/SFPlus Examples RP/ui/_ui_defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/ServerFormPlus/SFPlus Examples RP/ui/_ui_defs.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/ServerFormPlus/SFPlus Examples RP/ui/mxui/sfplus_screen_definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/ServerFormPlus/SFPlus Examples RP/ui/mxui/sfplus_screen_definitions.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/ServerFormPlus/SFPlus Examples RP/ui/spmax/sfplus_fullscreen_form.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/ServerFormPlus/SFPlus Examples RP/ui/spmax/sfplus_fullscreen_form.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/ServerFormPlus/SFPlus Testing Script BP/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/ServerFormPlus/SFPlus Testing Script BP/manifest.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/ServerFormPlus/SFPlus Testing Script BP/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/ServerFormPlus/SFPlus Testing Script BP/pack_icon.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/ServerFormPlus/SFPlus Testing Script BP/scripts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/ServerFormPlus/SFPlus Testing Script BP/scripts/index.js -------------------------------------------------------------------------------- /Addons/OnlyTesting/ServerFormPlus/SFPlus Testing Script BP/texts/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/ServerFormPlus/SFPlus Testing Script BP/texts/en_US.lang -------------------------------------------------------------------------------- /Addons/OnlyTesting/ServerFormPlus/SFPlus Testing Script BP/texts/languages.json: -------------------------------------------------------------------------------- 1 | ["en_US"] 2 | -------------------------------------------------------------------------------- /Addons/OnlyTesting/UITitleAnimTest/UITitleAnimTestRP/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/UITitleAnimTest/UITitleAnimTestRP/pack_icon.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/UITitleAnimTest/UITitleAnimTestRP/pack_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/UITitleAnimTest/UITitleAnimTestRP/pack_manifest.json -------------------------------------------------------------------------------- /Addons/OnlyTesting/UITitleAnimTest/UITitleAnimTestRP/textures/anim/logoanimated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/UITitleAnimTest/UITitleAnimTestRP/textures/anim/logoanimated.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/UITitleAnimTest/UITitleAnimTestRP/textures/anim/minelogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/UITitleAnimTest/UITitleAnimTestRP/textures/anim/minelogo.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/UITitleAnimTest/UITitleAnimTestRP/textures/anim/minelogox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/UITitleAnimTest/UITitleAnimTestRP/textures/anim/minelogox.png -------------------------------------------------------------------------------- /Addons/OnlyTesting/UITitleAnimTest/UITitleAnimTestRP/ui/ui_art_assets_common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/OnlyTesting/UITitleAnimTest/UITitleAnimTestRP/ui/ui_art_assets_common.json -------------------------------------------------------------------------------- /Addons/Released/AnimatedPlayer/AnimatedPlayerRP/animation_controllers/player.animation_controllers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/AnimatedPlayer/AnimatedPlayerRP/animation_controllers/player.animation_controllers.json -------------------------------------------------------------------------------- /Addons/Released/AnimatedPlayer/AnimatedPlayerRP/animations/player.animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/AnimatedPlayer/AnimatedPlayerRP/animations/player.animation.json -------------------------------------------------------------------------------- /Addons/Released/AnimatedPlayer/AnimatedPlayerRP/entity/player.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/AnimatedPlayer/AnimatedPlayerRP/entity/player.entity.json -------------------------------------------------------------------------------- /Addons/Released/AnimatedPlayer/AnimatedPlayerRP/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/AnimatedPlayer/AnimatedPlayerRP/manifest.json -------------------------------------------------------------------------------- /Addons/Released/AnimatedPlayer/AnimatedPlayerRP/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/AnimatedPlayer/AnimatedPlayerRP/pack_icon.png -------------------------------------------------------------------------------- /Addons/Released/AnimatedPlayer/AnimatedPlayerRP/particles/sword_swipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/AnimatedPlayer/AnimatedPlayerRP/particles/sword_swipe.json -------------------------------------------------------------------------------- /Addons/Released/AnimatedPlayer/AnimatedPlayerRP/render_controllers/player.render_controllers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/AnimatedPlayer/AnimatedPlayerRP/render_controllers/player.render_controllers.json -------------------------------------------------------------------------------- /Addons/Released/AnimatedPlayer/AnimatedPlayerRP/subpacks/alexnew/models/entity/custom_player.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/AnimatedPlayer/AnimatedPlayerRP/subpacks/alexnew/models/entity/custom_player.geo.json -------------------------------------------------------------------------------- /Addons/Released/AnimatedPlayer/AnimatedPlayerRP/subpacks/alexold/models/entity/custom_player.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/AnimatedPlayer/AnimatedPlayerRP/subpacks/alexold/models/entity/custom_player.geo.json -------------------------------------------------------------------------------- /Addons/Released/AnimatedPlayer/AnimatedPlayerRP/subpacks/stevenew/models/entity/custom_player.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/AnimatedPlayer/AnimatedPlayerRP/subpacks/stevenew/models/entity/custom_player.geo.json -------------------------------------------------------------------------------- /Addons/Released/AnimatedPlayer/AnimatedPlayerRP/subpacks/steveold/models/entity/custom_player.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/AnimatedPlayer/AnimatedPlayerRP/subpacks/steveold/models/entity/custom_player.geo.json -------------------------------------------------------------------------------- /Addons/Released/AnimatedPlayer/AnimatedPlayerRP/textures/particles/sweep_attack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/AnimatedPlayer/AnimatedPlayerRP/textures/particles/sweep_attack.png -------------------------------------------------------------------------------- /Addons/Released/AnimatedPlayer/OBSOLETE_AnimatedPlayer.mcpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/AnimatedPlayer/OBSOLETE_AnimatedPlayer.mcpack -------------------------------------------------------------------------------- /Addons/Released/LuckyBlock/LuckyBlockBP/entities/lucky_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/LuckyBlock/LuckyBlockBP/entities/lucky_block.json -------------------------------------------------------------------------------- /Addons/Released/LuckyBlock/LuckyBlockBP/loot_tables/entities/loot0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/LuckyBlock/LuckyBlockBP/loot_tables/entities/loot0.json -------------------------------------------------------------------------------- /Addons/Released/LuckyBlock/LuckyBlockBP/loot_tables/entities/loot1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/LuckyBlock/LuckyBlockBP/loot_tables/entities/loot1.json -------------------------------------------------------------------------------- /Addons/Released/LuckyBlock/LuckyBlockBP/loot_tables/entities/loot10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/LuckyBlock/LuckyBlockBP/loot_tables/entities/loot10.json -------------------------------------------------------------------------------- /Addons/Released/LuckyBlock/LuckyBlockBP/loot_tables/entities/loot11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/LuckyBlock/LuckyBlockBP/loot_tables/entities/loot11.json -------------------------------------------------------------------------------- /Addons/Released/LuckyBlock/LuckyBlockBP/loot_tables/entities/loot12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/LuckyBlock/LuckyBlockBP/loot_tables/entities/loot12.json -------------------------------------------------------------------------------- /Addons/Released/LuckyBlock/LuckyBlockBP/loot_tables/entities/loot13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/LuckyBlock/LuckyBlockBP/loot_tables/entities/loot13.json -------------------------------------------------------------------------------- /Addons/Released/LuckyBlock/LuckyBlockBP/loot_tables/entities/loot14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/LuckyBlock/LuckyBlockBP/loot_tables/entities/loot14.json -------------------------------------------------------------------------------- /Addons/Released/LuckyBlock/LuckyBlockBP/loot_tables/entities/loot2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/LuckyBlock/LuckyBlockBP/loot_tables/entities/loot2.json -------------------------------------------------------------------------------- /Addons/Released/LuckyBlock/LuckyBlockBP/loot_tables/entities/loot3.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /Addons/Released/LuckyBlock/LuckyBlockBP/loot_tables/entities/loot4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/LuckyBlock/LuckyBlockBP/loot_tables/entities/loot4.json -------------------------------------------------------------------------------- /Addons/Released/LuckyBlock/LuckyBlockBP/loot_tables/entities/loot5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/LuckyBlock/LuckyBlockBP/loot_tables/entities/loot5.json -------------------------------------------------------------------------------- /Addons/Released/LuckyBlock/LuckyBlockBP/loot_tables/entities/loot6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/LuckyBlock/LuckyBlockBP/loot_tables/entities/loot6.json -------------------------------------------------------------------------------- /Addons/Released/LuckyBlock/LuckyBlockBP/loot_tables/entities/loot7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/LuckyBlock/LuckyBlockBP/loot_tables/entities/loot7.json -------------------------------------------------------------------------------- /Addons/Released/LuckyBlock/LuckyBlockBP/loot_tables/entities/loot8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/LuckyBlock/LuckyBlockBP/loot_tables/entities/loot8.json -------------------------------------------------------------------------------- /Addons/Released/LuckyBlock/LuckyBlockBP/loot_tables/entities/loot9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/LuckyBlock/LuckyBlockBP/loot_tables/entities/loot9.json -------------------------------------------------------------------------------- /Addons/Released/LuckyBlock/LuckyBlockBP/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/LuckyBlock/LuckyBlockBP/manifest.json -------------------------------------------------------------------------------- /Addons/Released/LuckyBlock/LuckyBlockBP/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/LuckyBlock/LuckyBlockBP/pack_icon.png -------------------------------------------------------------------------------- /Addons/Released/LuckyBlock/LuckyBlockBP/spawn_rules/lucky_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/LuckyBlock/LuckyBlockBP/spawn_rules/lucky_block.json -------------------------------------------------------------------------------- /Addons/Released/LuckyBlock/LuckyBlockRP/entity/lucky_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/LuckyBlock/LuckyBlockRP/entity/lucky_block.json -------------------------------------------------------------------------------- /Addons/Released/LuckyBlock/LuckyBlockRP/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/LuckyBlock/LuckyBlockRP/manifest.json -------------------------------------------------------------------------------- /Addons/Released/LuckyBlock/LuckyBlockRP/materials/entity.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/LuckyBlock/LuckyBlockRP/materials/entity.material -------------------------------------------------------------------------------- /Addons/Released/LuckyBlock/LuckyBlockRP/models/entity/lucky_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/LuckyBlock/LuckyBlockRP/models/entity/lucky_block.json -------------------------------------------------------------------------------- /Addons/Released/LuckyBlock/LuckyBlockRP/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/LuckyBlock/LuckyBlockRP/pack_icon.png -------------------------------------------------------------------------------- /Addons/Released/LuckyBlock/LuckyBlockRP/render_controllers/lucky_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/LuckyBlock/LuckyBlockRP/render_controllers/lucky_block.json -------------------------------------------------------------------------------- /Addons/Released/LuckyBlock/LuckyBlockRP/texts/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/LuckyBlock/LuckyBlockRP/texts/en_US.lang -------------------------------------------------------------------------------- /Addons/Released/LuckyBlock/LuckyBlockRP/textures/entity/lucky_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/LuckyBlock/LuckyBlockRP/textures/entity/lucky_block.png -------------------------------------------------------------------------------- /Addons/Released/LuckyBlock/OBSOLETE_LuckyBlock.mcaddon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/LuckyBlock/OBSOLETE_LuckyBlock.mcaddon -------------------------------------------------------------------------------- /Addons/Released/RealisticMobs/OBSOLETE_RealisticMobs.mcpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/RealisticMobs/OBSOLETE_RealisticMobs.mcpack -------------------------------------------------------------------------------- /Addons/Released/RealisticMobs/RealisticMobsBP/entities.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/RealisticMobs/RealisticMobsBP/entities.list -------------------------------------------------------------------------------- /Addons/Released/RealisticMobs/RealisticMobsBP/entities/bat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/RealisticMobs/RealisticMobsBP/entities/bat.json -------------------------------------------------------------------------------- /Addons/Released/RealisticMobs/RealisticMobsBP/entities/blaze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/RealisticMobs/RealisticMobsBP/entities/blaze.json -------------------------------------------------------------------------------- /Addons/Released/RealisticMobs/RealisticMobsBP/entities/cavespider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/RealisticMobs/RealisticMobsBP/entities/cavespider.json -------------------------------------------------------------------------------- /Addons/Released/RealisticMobs/RealisticMobsBP/entities/enderman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/RealisticMobs/RealisticMobsBP/entities/enderman.json -------------------------------------------------------------------------------- /Addons/Released/RealisticMobs/RealisticMobsBP/entities/ghast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/RealisticMobs/RealisticMobsBP/entities/ghast.json -------------------------------------------------------------------------------- /Addons/Released/RealisticMobs/RealisticMobsBP/entities/guardian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/RealisticMobs/RealisticMobsBP/entities/guardian.json -------------------------------------------------------------------------------- /Addons/Released/RealisticMobs/RealisticMobsBP/entities/guardian_elder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/RealisticMobs/RealisticMobsBP/entities/guardian_elder.json -------------------------------------------------------------------------------- /Addons/Released/RealisticMobs/RealisticMobsBP/entities/irongolem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/RealisticMobs/RealisticMobsBP/entities/irongolem.json -------------------------------------------------------------------------------- /Addons/Released/RealisticMobs/RealisticMobsBP/entities/silverfish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/RealisticMobs/RealisticMobsBP/entities/silverfish.json -------------------------------------------------------------------------------- /Addons/Released/RealisticMobs/RealisticMobsBP/entities/skeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/RealisticMobs/RealisticMobsBP/entities/skeleton.json -------------------------------------------------------------------------------- /Addons/Released/RealisticMobs/RealisticMobsBP/entities/snowgolem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/RealisticMobs/RealisticMobsBP/entities/snowgolem.json -------------------------------------------------------------------------------- /Addons/Released/RealisticMobs/RealisticMobsBP/entities/spider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/RealisticMobs/RealisticMobsBP/entities/spider.json -------------------------------------------------------------------------------- /Addons/Released/RealisticMobs/RealisticMobsBP/entities/stray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/RealisticMobs/RealisticMobsBP/entities/stray.json -------------------------------------------------------------------------------- /Addons/Released/RealisticMobs/RealisticMobsBP/entities/wither.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/RealisticMobs/RealisticMobsBP/entities/wither.json -------------------------------------------------------------------------------- /Addons/Released/RealisticMobs/RealisticMobsBP/entities/wither_boss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/RealisticMobs/RealisticMobsBP/entities/wither_boss.json -------------------------------------------------------------------------------- /Addons/Released/RealisticMobs/RealisticMobsBP/entities/wither_skull.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/RealisticMobs/RealisticMobsBP/entities/wither_skull.json -------------------------------------------------------------------------------- /Addons/Released/RealisticMobs/RealisticMobsBP/entities/wither_skull_dangerous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/RealisticMobs/RealisticMobsBP/entities/wither_skull_dangerous.json -------------------------------------------------------------------------------- /Addons/Released/RealisticMobs/RealisticMobsBP/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/RealisticMobs/RealisticMobsBP/pack_icon.png -------------------------------------------------------------------------------- /Addons/Released/RealisticMobs/RealisticMobsBP/pack_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Addons/Released/RealisticMobs/RealisticMobsBP/pack_manifest.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/LICENSE -------------------------------------------------------------------------------- /SkinPacks/Blokkits/Blokkits Skin Pack.mcpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/SkinPacks/Blokkits/Blokkits Skin Pack.mcpack -------------------------------------------------------------------------------- /SkinPacks/Blokkits/SP/Diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/SkinPacks/Blokkits/SP/Diamond.png -------------------------------------------------------------------------------- /SkinPacks/Blokkits/SP/Gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/SkinPacks/Blokkits/SP/Gold.png -------------------------------------------------------------------------------- /SkinPacks/Blokkits/SP/Grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/SkinPacks/Blokkits/SP/Grass.png -------------------------------------------------------------------------------- /SkinPacks/Blokkits/SP/Iron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/SkinPacks/Blokkits/SP/Iron.png -------------------------------------------------------------------------------- /SkinPacks/Blokkits/SP/Stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/SkinPacks/Blokkits/SP/Stone.png -------------------------------------------------------------------------------- /SkinPacks/Blokkits/SP/Wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/SkinPacks/Blokkits/SP/Wood.png -------------------------------------------------------------------------------- /SkinPacks/Blokkits/SP/content.zipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/SkinPacks/Blokkits/SP/content.zipe -------------------------------------------------------------------------------- /SkinPacks/Blokkits/SP/geometry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/SkinPacks/Blokkits/SP/geometry.json -------------------------------------------------------------------------------- /SkinPacks/Blokkits/SP/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/SkinPacks/Blokkits/SP/manifest.json -------------------------------------------------------------------------------- /SkinPacks/Blokkits/SP/skins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/SkinPacks/Blokkits/SP/skins.json -------------------------------------------------------------------------------- /SkinPacks/Blokkits/SP/texts/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/SkinPacks/Blokkits/SP/texts/en_US.lang -------------------------------------------------------------------------------- /WorkTools/BedrockContentLogWatcher/ContentLogWatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/WorkTools/BedrockContentLogWatcher/ContentLogWatcher.py -------------------------------------------------------------------------------- /WorkTools/BedrockContentLogWatcher/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/WorkTools/BedrockContentLogWatcher/Icon.ico -------------------------------------------------------------------------------- /WorkTools/BedrockContentLogWatcher/SimpleAutoBuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/WorkTools/BedrockContentLogWatcher/SimpleAutoBuild.bat -------------------------------------------------------------------------------- /WorkTools/BedrockContentLogWatcher/compiled_exe/ContentLogWatcher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/WorkTools/BedrockContentLogWatcher/compiled_exe/ContentLogWatcher.exe -------------------------------------------------------------------------------- /WorkTools/JSONEncodingChanger/compiled_exe/JSONChanger.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/WorkTools/JSONEncodingChanger/compiled_exe/JSONChanger.exe -------------------------------------------------------------------------------- /WorkTools/JSONEncodingChanger/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/WorkTools/JSONEncodingChanger/index.js -------------------------------------------------------------------------------- /WorkTools/JSONEncodingChanger/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/WorkTools/JSONEncodingChanger/package.json -------------------------------------------------------------------------------- /WorkTools/LiveReloadExperimentalUI/liveReload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/WorkTools/LiveReloadExperimentalUI/liveReload.js -------------------------------------------------------------------------------- /Worlds/InfiniteVoidWorld.mctemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprintermax/MCBedrock-Things/HEAD/Worlds/InfiniteVoidWorld.mctemplate --------------------------------------------------------------------------------