├── README.md ├── Whole Template ├── Custom Crafting Table │ ├── README.md │ ├── blocks │ │ └── custom_crafting_table_block.json │ ├── recipes │ │ ├── cooking1.json │ │ └── cooking2.json │ ├── textures │ │ ├── kitchen_ui.png │ │ ├── side_cooking.png │ │ ├── terrain_texture.json │ │ ├── top_cooking.png │ │ └── under_cooking.png │ └── ui │ │ ├── _ui_defs.json │ │ ├── custom_craft.json │ │ ├── inventory_screen.json │ │ └── inventory_screen_pocket.json ├── Dissolve Mob │ ├── Dissolve Mob Test B │ │ ├── entities │ │ │ └── Dissolve Entity Template.json │ │ └── manifest.json │ ├── Dissolve Mob Test R │ │ ├── entity │ │ │ └── Dissolve Entity Template.entity.json │ │ ├── manifest.json │ │ ├── render_controllers │ │ │ └── template.render_controllers.json │ │ └── textures │ │ │ └── entity │ │ │ ├── bat.png │ │ │ └── dissolve.png │ └── README.md ├── Freeze Screen UI │ ├── manifest.json │ ├── readme.md │ ├── textures │ │ └── ui │ │ │ └── frozen_effect_screen.png │ └── ui │ │ └── hud_screen.json └── summon tame │ ├── README.md │ ├── entities │ ├── Custom Projectile.json │ └── wolf.json │ ├── items │ └── Custom Item.json │ └── manifest.json ├── behavior pack ├── blocks │ └── multiple_interact.json └── items │ └── Multiple_use.json ├── gametest └── mojang-minecraft │ ├── Block Place and Break Event.js │ ├── Block Raycasting.js │ ├── Entity Raycasting.js │ ├── Player Join and Leave.js │ ├── beforechat event.js │ ├── check_for_specific_item_in_inventory.js │ ├── class │ ├── Enchantment LICENSE.txt │ ├── Enchantments.js │ └── Enchantments_1.20.60.js │ ├── get block when you interact.js │ ├── getting player inventory.js │ ├── item_in_Inventory.js │ └── snippets │ ├── blockToItemStack.js │ └── currentDimension.js └── resource pack └── UI ├── Dynamic_chest_container.json ├── Dynamic_horse_container.json ├── custom_chest_container.json ├── custom_chest_container_with_scrolling.json ├── custom_furnace_ui ├── textures │ └── kitchen_ui.png └── ui │ └── furnace_screen.json ├── custom_horse_container.json └── structure_editor_screen_no_render_structure.json /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/README.md -------------------------------------------------------------------------------- /Whole Template/Custom Crafting Table/README.md: -------------------------------------------------------------------------------- 1 | Will no longer update until we can get a proper UI support 2 | -------------------------------------------------------------------------------- /Whole Template/Custom Crafting Table/blocks/custom_crafting_table_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/Whole Template/Custom Crafting Table/blocks/custom_crafting_table_block.json -------------------------------------------------------------------------------- /Whole Template/Custom Crafting Table/recipes/cooking1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/Whole Template/Custom Crafting Table/recipes/cooking1.json -------------------------------------------------------------------------------- /Whole Template/Custom Crafting Table/recipes/cooking2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/Whole Template/Custom Crafting Table/recipes/cooking2.json -------------------------------------------------------------------------------- /Whole Template/Custom Crafting Table/textures/kitchen_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/Whole Template/Custom Crafting Table/textures/kitchen_ui.png -------------------------------------------------------------------------------- /Whole Template/Custom Crafting Table/textures/side_cooking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/Whole Template/Custom Crafting Table/textures/side_cooking.png -------------------------------------------------------------------------------- /Whole Template/Custom Crafting Table/textures/terrain_texture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/Whole Template/Custom Crafting Table/textures/terrain_texture.json -------------------------------------------------------------------------------- /Whole Template/Custom Crafting Table/textures/top_cooking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/Whole Template/Custom Crafting Table/textures/top_cooking.png -------------------------------------------------------------------------------- /Whole Template/Custom Crafting Table/textures/under_cooking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/Whole Template/Custom Crafting Table/textures/under_cooking.png -------------------------------------------------------------------------------- /Whole Template/Custom Crafting Table/ui/_ui_defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/Whole Template/Custom Crafting Table/ui/_ui_defs.json -------------------------------------------------------------------------------- /Whole Template/Custom Crafting Table/ui/custom_craft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/Whole Template/Custom Crafting Table/ui/custom_craft.json -------------------------------------------------------------------------------- /Whole Template/Custom Crafting Table/ui/inventory_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/Whole Template/Custom Crafting Table/ui/inventory_screen.json -------------------------------------------------------------------------------- /Whole Template/Custom Crafting Table/ui/inventory_screen_pocket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/Whole Template/Custom Crafting Table/ui/inventory_screen_pocket.json -------------------------------------------------------------------------------- /Whole Template/Dissolve Mob/Dissolve Mob Test B/entities/Dissolve Entity Template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/Whole Template/Dissolve Mob/Dissolve Mob Test B/entities/Dissolve Entity Template.json -------------------------------------------------------------------------------- /Whole Template/Dissolve Mob/Dissolve Mob Test B/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/Whole Template/Dissolve Mob/Dissolve Mob Test B/manifest.json -------------------------------------------------------------------------------- /Whole Template/Dissolve Mob/Dissolve Mob Test R/entity/Dissolve Entity Template.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/Whole Template/Dissolve Mob/Dissolve Mob Test R/entity/Dissolve Entity Template.entity.json -------------------------------------------------------------------------------- /Whole Template/Dissolve Mob/Dissolve Mob Test R/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/Whole Template/Dissolve Mob/Dissolve Mob Test R/manifest.json -------------------------------------------------------------------------------- /Whole Template/Dissolve Mob/Dissolve Mob Test R/render_controllers/template.render_controllers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/Whole Template/Dissolve Mob/Dissolve Mob Test R/render_controllers/template.render_controllers.json -------------------------------------------------------------------------------- /Whole Template/Dissolve Mob/Dissolve Mob Test R/textures/entity/bat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/Whole Template/Dissolve Mob/Dissolve Mob Test R/textures/entity/bat.png -------------------------------------------------------------------------------- /Whole Template/Dissolve Mob/Dissolve Mob Test R/textures/entity/dissolve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/Whole Template/Dissolve Mob/Dissolve Mob Test R/textures/entity/dissolve.png -------------------------------------------------------------------------------- /Whole Template/Dissolve Mob/README.md: -------------------------------------------------------------------------------- 1 | # Template for Mob Dissolving 2 | -------------------------------------------------------------------------------- /Whole Template/Freeze Screen UI/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/Whole Template/Freeze Screen UI/manifest.json -------------------------------------------------------------------------------- /Whole Template/Freeze Screen UI/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/Whole Template/Freeze Screen UI/readme.md -------------------------------------------------------------------------------- /Whole Template/Freeze Screen UI/textures/ui/frozen_effect_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/Whole Template/Freeze Screen UI/textures/ui/frozen_effect_screen.png -------------------------------------------------------------------------------- /Whole Template/Freeze Screen UI/ui/hud_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/Whole Template/Freeze Screen UI/ui/hud_screen.json -------------------------------------------------------------------------------- /Whole Template/summon tame/README.md: -------------------------------------------------------------------------------- 1 | # Summoning Tamed Entity Using an Item 2 | -------------------------------------------------------------------------------- /Whole Template/summon tame/entities/Custom Projectile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/Whole Template/summon tame/entities/Custom Projectile.json -------------------------------------------------------------------------------- /Whole Template/summon tame/entities/wolf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/Whole Template/summon tame/entities/wolf.json -------------------------------------------------------------------------------- /Whole Template/summon tame/items/Custom Item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/Whole Template/summon tame/items/Custom Item.json -------------------------------------------------------------------------------- /Whole Template/summon tame/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/Whole Template/summon tame/manifest.json -------------------------------------------------------------------------------- /behavior pack/blocks/multiple_interact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/behavior pack/blocks/multiple_interact.json -------------------------------------------------------------------------------- /behavior pack/items/Multiple_use.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/behavior pack/items/Multiple_use.json -------------------------------------------------------------------------------- /gametest/mojang-minecraft/Block Place and Break Event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/gametest/mojang-minecraft/Block Place and Break Event.js -------------------------------------------------------------------------------- /gametest/mojang-minecraft/Block Raycasting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/gametest/mojang-minecraft/Block Raycasting.js -------------------------------------------------------------------------------- /gametest/mojang-minecraft/Entity Raycasting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/gametest/mojang-minecraft/Entity Raycasting.js -------------------------------------------------------------------------------- /gametest/mojang-minecraft/Player Join and Leave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/gametest/mojang-minecraft/Player Join and Leave.js -------------------------------------------------------------------------------- /gametest/mojang-minecraft/beforechat event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/gametest/mojang-minecraft/beforechat event.js -------------------------------------------------------------------------------- /gametest/mojang-minecraft/check_for_specific_item_in_inventory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/gametest/mojang-minecraft/check_for_specific_item_in_inventory.js -------------------------------------------------------------------------------- /gametest/mojang-minecraft/class/Enchantment LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/gametest/mojang-minecraft/class/Enchantment LICENSE.txt -------------------------------------------------------------------------------- /gametest/mojang-minecraft/class/Enchantments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/gametest/mojang-minecraft/class/Enchantments.js -------------------------------------------------------------------------------- /gametest/mojang-minecraft/class/Enchantments_1.20.60.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/gametest/mojang-minecraft/class/Enchantments_1.20.60.js -------------------------------------------------------------------------------- /gametest/mojang-minecraft/get block when you interact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/gametest/mojang-minecraft/get block when you interact.js -------------------------------------------------------------------------------- /gametest/mojang-minecraft/getting player inventory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/gametest/mojang-minecraft/getting player inventory.js -------------------------------------------------------------------------------- /gametest/mojang-minecraft/item_in_Inventory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/gametest/mojang-minecraft/item_in_Inventory.js -------------------------------------------------------------------------------- /gametest/mojang-minecraft/snippets/blockToItemStack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/gametest/mojang-minecraft/snippets/blockToItemStack.js -------------------------------------------------------------------------------- /gametest/mojang-minecraft/snippets/currentDimension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/gametest/mojang-minecraft/snippets/currentDimension.js -------------------------------------------------------------------------------- /resource pack/UI/Dynamic_chest_container.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/resource pack/UI/Dynamic_chest_container.json -------------------------------------------------------------------------------- /resource pack/UI/Dynamic_horse_container.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/resource pack/UI/Dynamic_horse_container.json -------------------------------------------------------------------------------- /resource pack/UI/custom_chest_container.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/resource pack/UI/custom_chest_container.json -------------------------------------------------------------------------------- /resource pack/UI/custom_chest_container_with_scrolling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/resource pack/UI/custom_chest_container_with_scrolling.json -------------------------------------------------------------------------------- /resource pack/UI/custom_furnace_ui/textures/kitchen_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/resource pack/UI/custom_furnace_ui/textures/kitchen_ui.png -------------------------------------------------------------------------------- /resource pack/UI/custom_furnace_ui/ui/furnace_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/resource pack/UI/custom_furnace_ui/ui/furnace_screen.json -------------------------------------------------------------------------------- /resource pack/UI/custom_horse_container.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/resource pack/UI/custom_horse_container.json -------------------------------------------------------------------------------- /resource pack/UI/structure_editor_screen_no_render_structure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amon28/Addon-Templates/HEAD/resource pack/UI/structure_editor_screen_no_render_structure.json --------------------------------------------------------------------------------