├── .github └── workflows │ └── create-release.yml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── add_entity_robot ├── README.md ├── full │ ├── robot_example_full_behavior │ │ ├── animation_controllers │ │ │ └── robot.animation_controllers.json │ │ ├── animations │ │ │ └── robot.animation.json │ │ ├── entities │ │ │ └── robot.json │ │ ├── manifest.json │ │ ├── pack_icon.png │ │ └── spawn_rules │ │ │ └── robot.json │ └── robot_example_full_resources │ │ ├── animations │ │ └── robot.animation.json │ │ ├── entity │ │ └── robot.entity.json │ │ ├── manifest.json │ │ ├── models │ │ └── entity │ │ │ └── robot.geo.json │ │ ├── pack_icon.png │ │ ├── render_controllers │ │ └── robot.render_controllers.json │ │ ├── texts │ │ └── en_US.lang │ │ └── textures │ │ └── entity │ │ ├── robot.png │ │ ├── robot_b.png │ │ └── robot_c.png ├── install_uwp.cmd └── min │ ├── robot_example_min_behavior │ ├── entities │ │ └── robot.json │ ├── manifest.json │ └── pack_icon.png │ └── robot_example_min_resources │ ├── entity │ └── robot.entity.json │ ├── manifest.json │ ├── models │ └── entity │ │ └── robot.geo.json │ ├── pack_icon.png │ ├── texts │ └── en_US.lang │ └── textures │ └── entity │ └── robot.png ├── addon_starter ├── 1_hello_world │ ├── .env │ ├── .prettierrc.json │ ├── .vscode │ │ ├── extensions.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── behavior_packs │ │ └── aop_mobs │ │ │ ├── entities │ │ │ └── sheepomelon.behavior.json │ │ │ ├── loot_tables │ │ │ └── entities │ │ │ │ ├── sheepomelon.json │ │ │ │ └── sheepomelon_shear.json │ │ │ ├── manifest.json │ │ │ └── pack_icon.png │ ├── eslint.config.mjs │ ├── just.config.ts │ ├── package-lock.json │ ├── package.json │ ├── resource_packs │ │ └── aop_mobs │ │ │ ├── animations │ │ │ └── sheepomelon.animation.json │ │ │ ├── entity │ │ │ └── sheepomelon.entity.json │ │ │ ├── manifest.json │ │ │ ├── models │ │ │ └── entity │ │ │ │ └── sheepomelon.geo.json │ │ │ ├── pack_icon.png │ │ │ ├── sounds.json │ │ │ ├── texts │ │ │ └── en_US.lang │ │ │ └── textures │ │ │ └── entity │ │ │ └── sheepomelon.png │ ├── scripts │ │ └── main.ts │ └── tsconfig.json ├── 2_entities │ ├── .env │ ├── .prettierrc.json │ ├── .vscode │ │ ├── extensions.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── behavior_packs │ │ └── aop_mobs │ │ │ ├── animation_controllers │ │ │ └── sheepomelon.bp_ac.json │ │ │ ├── animations │ │ │ └── sheepomelon.bp_anims.json │ │ │ ├── entities │ │ │ ├── biceson.behavior.json │ │ │ ├── frost_moose.behavior.json │ │ │ ├── nardolphle.behavior.json │ │ │ ├── sheepomelon.behavior.json │ │ │ └── sheepomelon.behavior.json.pastein │ │ │ ├── loot_tables │ │ │ └── entities │ │ │ │ ├── sheepomelon.json │ │ │ │ └── sheepomelon_shear.json │ │ │ ├── manifest.json │ │ │ └── pack_icon.png │ ├── eslint.config.mjs │ ├── just.config.ts │ ├── package-lock.json │ ├── package.json │ ├── resource_packs │ │ └── aop_mobs │ │ │ ├── animations │ │ │ ├── biceson.animation.json │ │ │ ├── frost_moose.animation.json │ │ │ ├── nardolphle.animation.json │ │ │ └── sheepomelon.animation.json │ │ │ ├── entity │ │ │ ├── biceson.entity.json │ │ │ ├── frost_moose.entity.json │ │ │ ├── nardolphle.entity.json │ │ │ └── sheepomelon.entity.json │ │ │ ├── manifest.json │ │ │ ├── models │ │ │ └── entity │ │ │ │ ├── biceson.geo.json │ │ │ │ ├── frost_moose.geo.json │ │ │ │ ├── nardolphle.geo.json │ │ │ │ └── sheepomelon.geo.json │ │ │ ├── pack_icon.png │ │ │ ├── particles │ │ │ ├── fireworks_pop.json │ │ │ └── smoke_puff.json │ │ │ ├── sounds.json │ │ │ ├── texts │ │ │ └── en_US.lang │ │ │ └── textures │ │ │ └── entity │ │ │ ├── biceson.png │ │ │ ├── frost_moose │ │ │ ├── brown.png │ │ │ ├── decor_black.png │ │ │ ├── decor_blue.png │ │ │ ├── decor_brown.png │ │ │ ├── decor_cyan.png │ │ │ ├── decor_gray.png │ │ │ ├── decor_green.png │ │ │ ├── decor_light_blue.png │ │ │ ├── decor_lime.png │ │ │ ├── decor_magenta.png │ │ │ ├── decor_none.png │ │ │ ├── decor_orange.png │ │ │ ├── decor_pink.png │ │ │ ├── decor_purple.png │ │ │ ├── decor_red.png │ │ │ ├── decor_silver.png │ │ │ ├── decor_white.png │ │ │ ├── decor_yellow.png │ │ │ ├── frost1.png │ │ │ ├── gray.png │ │ │ ├── trader_llama_decor.png │ │ │ └── white.png │ │ │ ├── nardolphle.png │ │ │ └── sheepomelon.png │ ├── scripts │ │ └── main.ts │ └── tsconfig.json ├── README.md ├── complete │ ├── .env │ ├── .prettierrc.json │ ├── .vscode │ │ ├── extensions.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── behavior_packs │ │ └── aop_mobs │ │ │ ├── animation_controllers │ │ │ └── sheepomelon.bp_ac.json │ │ │ ├── animations │ │ │ └── sheepomelon.bp_anims.json │ │ │ ├── entities │ │ │ ├── biceson.behavior.json │ │ │ ├── frost_moose.behavior.json │ │ │ ├── nardolphle.behavior.json │ │ │ └── sheepomelon.behavior.json │ │ │ ├── loot_tables │ │ │ └── entities │ │ │ │ ├── sheepomelon.json │ │ │ │ └── sheepomelon_shear.json │ │ │ ├── manifest.json │ │ │ ├── pack_icon.png │ │ │ └── spawn_rules │ │ │ ├── biceson.json │ │ │ ├── frost_moose.json │ │ │ ├── nardolphle.json │ │ │ └── sheepomelon.json │ ├── eslint.config.mjs │ ├── just.config.ts │ ├── package-lock.json │ ├── package.json │ ├── resource_packs │ │ └── aop_mobs │ │ │ ├── animations │ │ │ ├── biceson.animation.json │ │ │ ├── frost_moose.animation.json │ │ │ ├── nardolphle.animation.json │ │ │ └── sheepomelon.animation.json │ │ │ ├── entity │ │ │ ├── biceson.entity.json │ │ │ ├── frost_moose.entity.json │ │ │ ├── nardolphle.entity.json │ │ │ └── sheepomelon.entity.json │ │ │ ├── manifest.json │ │ │ ├── models │ │ │ └── entity │ │ │ │ ├── biceson.geo.json │ │ │ │ ├── frost_moose.geo.json │ │ │ │ ├── nardolphle.geo.json │ │ │ │ └── sheepomelon.geo.json │ │ │ ├── pack_icon.png │ │ │ ├── particles │ │ │ ├── fireworks_pop.json │ │ │ └── smoke_puff.json │ │ │ ├── sounds.json │ │ │ ├── texts │ │ │ └── en_US.lang │ │ │ └── textures │ │ │ └── entity │ │ │ ├── biceson.png │ │ │ ├── frost_moose │ │ │ ├── brown.png │ │ │ ├── decor_black.png │ │ │ ├── decor_blue.png │ │ │ ├── decor_brown.png │ │ │ ├── decor_cyan.png │ │ │ ├── decor_gray.png │ │ │ ├── decor_green.png │ │ │ ├── decor_light_blue.png │ │ │ ├── decor_lime.png │ │ │ ├── decor_magenta.png │ │ │ ├── decor_none.png │ │ │ ├── decor_orange.png │ │ │ ├── decor_pink.png │ │ │ ├── decor_purple.png │ │ │ ├── decor_red.png │ │ │ ├── decor_silver.png │ │ │ ├── decor_white.png │ │ │ ├── decor_yellow.png │ │ │ ├── frost1.png │ │ │ ├── gray.png │ │ │ ├── trader_llama_decor.png │ │ │ └── white.png │ │ │ ├── nardolphle.png │ │ │ └── sheepomelon.png │ ├── scripts │ │ ├── Utilities.ts │ │ └── main.ts │ └── tsconfig.json ├── misc │ ├── bices.png │ └── start.png └── start │ ├── .env │ ├── .prettierrc.json │ ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json │ ├── behavior_packs │ └── aop_mobs │ │ ├── manifest.json │ │ └── pack_icon.png │ ├── eslint.config.mjs │ ├── just.config.ts │ ├── package-lock.json │ ├── package.json │ ├── resource_packs │ └── aop_mobs │ │ ├── manifest.json │ │ └── pack_icon.png │ ├── scripts │ └── main.ts │ └── tsconfig.json ├── behavior_pack_sample ├── README.md ├── entities │ └── cow.json ├── manifest.json └── pack_icon.png ├── casual_creator ├── chill_dreams │ ├── 1_dream_turkey │ │ ├── .env │ │ ├── .prettierrc.json │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ ├── launch.json │ │ │ ├── settings.json │ │ │ └── tasks.json │ │ ├── behavior_packs │ │ │ └── mamm_cds │ │ │ │ ├── entities │ │ │ │ └── dream_turkey.json │ │ │ │ ├── items │ │ │ │ ├── cooked_dream_turkey.json │ │ │ │ ├── dream_essence.json │ │ │ │ └── dream_turkey.json │ │ │ │ ├── loot_tables │ │ │ │ └── mamm │ │ │ │ │ └── cds │ │ │ │ │ └── dream_turkey.json │ │ │ │ ├── manifest.json │ │ │ │ ├── pack_icon.png │ │ │ │ ├── recipes │ │ │ │ └── furnace_dream_turkey.json │ │ │ │ └── spawn_rules │ │ │ │ └── dream_turkey.json │ │ ├── eslint.config.mjs │ │ ├── just.config.ts │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── resource_packs │ │ │ └── mamm_cds │ │ │ │ ├── animations │ │ │ │ └── dream_turkey.animation.json │ │ │ │ ├── entity │ │ │ │ └── dream_turkey.entity.json │ │ │ │ ├── manifest.json │ │ │ │ ├── models │ │ │ │ └── entity │ │ │ │ │ └── dream_turkey.geo.json │ │ │ │ ├── pack_icon.png │ │ │ │ ├── sounds.json │ │ │ │ ├── texts │ │ │ │ └── en_US.lang │ │ │ │ └── textures │ │ │ │ ├── item_texture.json │ │ │ │ └── mamm │ │ │ │ └── cds │ │ │ │ ├── cooked_dream_turkey_ico.png │ │ │ │ ├── dream_essence.png │ │ │ │ ├── dream_turkey.png │ │ │ │ └── dream_turkey_ico.png │ │ ├── scripts │ │ │ └── main.ts │ │ └── tsconfig.json │ ├── 2_dreams_come_true │ │ ├── .env │ │ ├── .prettierrc.json │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ ├── launch.json │ │ │ ├── settings.json │ │ │ └── tasks.json │ │ ├── behavior_packs │ │ │ └── mamm_cds │ │ │ │ ├── animations │ │ │ │ └── mamm │ │ │ │ │ └── cds │ │ │ │ │ └── memory.animation.json │ │ │ │ ├── entities │ │ │ │ └── dream_turkey.json │ │ │ │ ├── items │ │ │ │ ├── cooked_dream_turkey.json │ │ │ │ ├── dream_essence.json │ │ │ │ └── dream_turkey.json │ │ │ │ ├── loot_tables │ │ │ │ └── mamm │ │ │ │ │ └── cds │ │ │ │ │ └── dream_turkey.json │ │ │ │ ├── manifest.json │ │ │ │ ├── pack_icon.png │ │ │ │ ├── recipes │ │ │ │ └── furnace_dream_turkey.json │ │ │ │ └── spawn_rules │ │ │ │ └── dream_turkey.json │ │ ├── eslint.config.mjs │ │ ├── just.config.ts │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── resource_packs │ │ │ └── mamm_cds │ │ │ │ ├── animations │ │ │ │ └── dream_turkey.animation.json │ │ │ │ ├── entity │ │ │ │ └── dream_turkey.entity.json │ │ │ │ ├── manifest.json │ │ │ │ ├── models │ │ │ │ └── entity │ │ │ │ │ └── dream_turkey.geo.json │ │ │ │ ├── pack_icon.png │ │ │ │ ├── sounds.json │ │ │ │ ├── texts │ │ │ │ └── en_US.lang │ │ │ │ └── textures │ │ │ │ ├── item_texture.json │ │ │ │ └── mamm │ │ │ │ └── cds │ │ │ │ ├── cooked_dream_turkey_ico.png │ │ │ │ ├── dream_essence.png │ │ │ │ ├── dream_turkey.png │ │ │ │ └── dream_turkey_ico.png │ │ ├── scripts │ │ │ ├── Dream.ts │ │ │ ├── DreamTrack.ts │ │ │ ├── IDreamReference.ts │ │ │ ├── IPlayerSettings.ts │ │ │ ├── IVectorXZ.ts │ │ │ ├── Utilities.ts │ │ │ └── main.ts │ │ └── tsconfig.json │ ├── README.md │ └── complete │ │ ├── .env │ │ ├── .prettierrc.json │ │ ├── .vscode │ │ ├── extensions.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ │ ├── behavior_packs │ │ └── mamm_cds │ │ │ ├── animations │ │ │ └── mamm │ │ │ │ └── cds │ │ │ │ └── memory.animation.json │ │ │ ├── entities │ │ │ ├── dream_turkey.json │ │ │ └── memory_jar.json │ │ │ ├── items │ │ │ ├── cooked_dream_turkey.json │ │ │ ├── dream_essence.json │ │ │ ├── dream_turkey.json │ │ │ ├── journal.json │ │ │ └── journal_pencil.json │ │ │ ├── loot_tables │ │ │ └── mamm │ │ │ │ └── cds │ │ │ │ └── dream_turkey.json │ │ │ ├── manifest.json │ │ │ ├── pack_icon.png │ │ │ ├── recipes │ │ │ ├── dream_journal.json │ │ │ ├── dream_journal_pencil.json │ │ │ └── furnace_dream_turkey.json │ │ │ └── spawn_rules │ │ │ └── dream_turkey.json │ │ ├── eslint.config.mjs │ │ ├── just.config.ts │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── resource_packs │ │ └── mamm_cds │ │ │ ├── animations │ │ │ └── dream_turkey.animation.json │ │ │ ├── attachables │ │ │ ├── journal.json │ │ │ └── journal_pencil.json │ │ │ ├── entity │ │ │ ├── dream_turkey.entity.json │ │ │ └── memory_jar.entity.json │ │ │ ├── manifest.json │ │ │ ├── models │ │ │ └── entity │ │ │ │ ├── dream_turkey.geo.json │ │ │ │ ├── journal.geo.json │ │ │ │ ├── journal_pencil.geo.json │ │ │ │ └── memory_jar.geo.json │ │ │ ├── pack_icon.png │ │ │ ├── particles │ │ │ └── incense.json │ │ │ ├── render_controllers │ │ │ └── memory_jar.render_controllers.json │ │ │ ├── sounds.json │ │ │ ├── texts │ │ │ └── en_US.lang │ │ │ └── textures │ │ │ ├── item_texture.json │ │ │ └── mamm │ │ │ └── cds │ │ │ ├── cooked_dream_turkey_ico.png │ │ │ ├── dream_essence.png │ │ │ ├── dream_turkey.png │ │ │ ├── dream_turkey_ico.png │ │ │ ├── journal_ico.png │ │ │ ├── journal_minecraft.png │ │ │ ├── journal_pencil.png │ │ │ ├── journal_pencil_ico.png │ │ │ └── memory_jar.png │ │ ├── scripts │ │ ├── Dream.ts │ │ ├── DreamTrack.ts │ │ ├── IDreamReference.ts │ │ ├── IMemory.ts │ │ ├── IMemorySet.ts │ │ ├── IPlayerSettings.ts │ │ ├── IVectorXZ.ts │ │ ├── Memory.ts │ │ ├── MemorySet.ts │ │ ├── Utilities.ts │ │ └── main.ts │ │ └── tsconfig.json ├── concerts │ └── README.md ├── custom_cat_eliza │ ├── .env │ ├── .prettierrc.json │ ├── .vscode │ │ ├── extensions.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── assets │ │ ├── models │ │ │ └── eliza.geo.bbmodel │ │ └── sound │ │ │ ├── meow.mp3 │ │ │ └── meow.ogg │ ├── behavior_packs │ │ └── mike_eliz │ │ │ ├── entities │ │ │ └── eliza.json │ │ │ ├── loot_tables │ │ │ └── entities │ │ │ │ └── eliza.json │ │ │ ├── manifest.json │ │ │ ├── pack_icon.png │ │ │ └── spawn_rules │ │ │ └── eliza.json │ ├── eslint.config.mjs │ ├── just.config.ts │ ├── package-lock.json │ ├── package.json │ ├── resource_packs │ │ └── mike_eliz │ │ │ ├── animation_controllers │ │ │ └── eliza.animation_controllers.json │ │ │ ├── animations │ │ │ └── eliza.animation.json │ │ │ ├── entity │ │ │ └── eliza.entity.json │ │ │ ├── manifest.json │ │ │ ├── models │ │ │ └── entity │ │ │ │ └── eliza.geo.json │ │ │ ├── pack_icon.png │ │ │ ├── render_controllers │ │ │ └── eliza.render_controllers.json │ │ │ ├── sounds │ │ │ ├── meow.ogg │ │ │ └── sound_definitions.json │ │ │ └── textures │ │ │ └── entity │ │ │ └── eliza │ │ │ └── siamesecat.png │ ├── scripts │ │ └── main.ts │ └── tsconfig.json └── gray_wave │ ├── .env │ ├── .prettierrc.json │ ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json │ ├── README.md │ ├── behavior_packs │ └── mikeamm_gwve │ │ ├── blocks │ │ ├── fabricator.block.json │ │ └── gray_ore.block.json │ │ ├── entities │ │ ├── axe_turret.behavior.json │ │ ├── bow_turret.behavior.json │ │ ├── crossbow_turret.behavior.json │ │ ├── gray_wave.json │ │ ├── gray_wave_generator.json │ │ ├── gray_zombie_leader.behavior.json │ │ ├── shbullet_turret.behavior.json │ │ └── smfireball_turret.behavior.json │ │ ├── feature_rules │ │ └── gray_ore_feature_rules.json │ │ ├── features │ │ └── gray_ore_feature.json │ │ ├── item_catalog │ │ └── crafting_item_catalog.json │ │ ├── items │ │ ├── axe_turret_kit.item.json │ │ ├── bow_turret_kit.item.json │ │ ├── crossbow_turret_kit.item.json │ │ ├── depleted_gray_shard.item.json │ │ ├── gray_wave_generator_kit.item.json │ │ ├── shbullet_turret_kit.item.json │ │ └── smfireball_turret_kit.item.json │ │ ├── loot_tables │ │ └── mikeamm │ │ │ └── gray_wave │ │ │ ├── axe_turret.loot.json │ │ │ ├── bow_turret.loot.json │ │ │ ├── crossbow_turret.loot.json │ │ │ ├── fabricator.loot.json │ │ │ ├── gray_ore.loot.json │ │ │ ├── gray_wave_generator.loot.json │ │ │ ├── gray_zombie_leader.loot.json │ │ │ ├── shbullet_turret.loot.json │ │ │ └── smfireball_turret.loot.json │ │ ├── manifest.json │ │ ├── pack_icon.png │ │ └── recipes │ │ └── mikeamm │ │ └── gray_wave │ │ ├── axe_turret_kit.recipe.json │ │ ├── bow_turret_kit.recipe.json │ │ ├── crossbow_turret_kit.recipe.json │ │ ├── emeralds.recipe.json │ │ ├── fabricator.recipe.json │ │ ├── gray_wave_generator_kit.recipe.json │ │ ├── shbullet_turret_kit.recipe.json │ │ └── smfireball_turret_kit.recipe.json │ ├── docs │ ├── axe_recipe.png │ ├── bow_recipe.png │ ├── crossbow_recipe.png │ ├── damaged_bow.png │ ├── depletedgrayshard.png │ ├── fabricator_recipe.png │ ├── generator_recipe.png │ ├── grayore.png │ ├── gwm.png │ ├── items.png │ ├── shbullet_recipe.png │ └── smfireball_recipe.png │ ├── eslint.config.mjs │ ├── just.config.ts │ ├── package-lock.json │ ├── package.json │ ├── resource_packs │ └── mikeamm_gwve │ │ ├── animation_controllers │ │ ├── gray_wave_generator.ac.json │ │ └── turret.ac.json │ │ ├── animations │ │ ├── gray_wave.animation.json │ │ ├── gray_wave_generator.animation.json │ │ ├── gray_wave_generator_kit.animation.json │ │ ├── gray_zombie_leader.animation.json │ │ ├── turret.animation.json │ │ └── turret_kit.animation.json │ │ ├── attachables │ │ ├── axe_turret_kit.attachable.json │ │ ├── bow_turret_kit.attachable.json │ │ ├── crossbow_turret_kit.attachable.json │ │ ├── gray_wave_generator_kit.attachable.json │ │ ├── shbullet_turret_kit.attachable.json │ │ └── smfireball_turret_kit.attachable.json │ │ ├── blocks.json │ │ ├── entity │ │ ├── axe_turret.entity.json │ │ ├── bow_turret.entity.json │ │ ├── crossbow_turret.entity.json │ │ ├── gray_wave.entity.json │ │ ├── gray_wave_generator.entity.json │ │ ├── gray_zombie_leader.entity.json │ │ ├── shbullet_turret.entity.json │ │ └── smfireball_turret.entity.json │ │ ├── manifest.json │ │ ├── models │ │ ├── blocks │ │ │ ├── fabricator.geo.json │ │ │ ├── fabricator_in_hand.geo.json │ │ │ └── gray_ore.geo.json │ │ └── entity │ │ │ ├── attachable │ │ │ ├── gray_wave_generator_kit.geo.json │ │ │ └── turret_kit.geo.json │ │ │ ├── axe_turret.geo.json │ │ │ ├── bow_turret.geo.json │ │ │ ├── crossbow_turret.geo.json │ │ │ ├── gray_wave.geo.json │ │ │ ├── gray_wave_generator.geo.json │ │ │ ├── gray_zombie_leader.geo.json │ │ │ ├── shbullet_turret.geo.json │ │ │ └── smfireball_turret.geo.json │ │ ├── pack_icon.png │ │ ├── render_controllers │ │ ├── gray_wave.rc.json │ │ ├── gray_wave_generator.rc.json │ │ └── turret.rc.json │ │ ├── sounds.json │ │ ├── texts │ │ └── en_US.lang │ │ └── textures │ │ ├── item_texture.json │ │ ├── mikeamm │ │ └── gray_wave │ │ │ ├── attachable │ │ │ ├── axe_turret_kit.png │ │ │ ├── bow_turret_kit.png │ │ │ ├── carry_start.png │ │ │ ├── crossbow_turret_kit.png │ │ │ ├── gray_wave_generator_kit.png │ │ │ ├── shbullet_turret_kit.png │ │ │ └── smfireball_turret_kit.png │ │ │ ├── blocks │ │ │ ├── fabricator.png │ │ │ ├── fabricator_in_hand.png │ │ │ └── gray_ore.png │ │ │ ├── entity │ │ │ ├── gray_wave │ │ │ │ └── black.png │ │ │ ├── gray_wave_generator │ │ │ │ └── black.png │ │ │ ├── gray_zombie_leader │ │ │ │ └── gray_zombie_leader.png │ │ │ └── turret │ │ │ │ ├── four.png │ │ │ │ ├── main.png │ │ │ │ ├── one.png │ │ │ │ ├── three.png │ │ │ │ └── two.png │ │ │ └── items │ │ │ ├── axe_turret_kit.png │ │ │ ├── bow_turret_kit.png │ │ │ ├── crossbow_turret_kit.png │ │ │ ├── depleted_gray_shard.png │ │ │ ├── gray_wave_generator_kit.png │ │ │ ├── gray_wave_machines_group.png │ │ │ ├── shbullet_turret_kit.png │ │ │ └── smfireball_turret_kit.png │ │ └── terrain_texture.json │ ├── scripts │ ├── GrayWaveManager.ts │ ├── Utilities.ts │ └── main.ts │ └── tsconfig.json ├── chill_oasis_blocks_and_features ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── README.md ├── chill_oasis_assets │ ├── .env │ ├── .prettierrc.json │ ├── .vscode │ │ ├── extensions.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── behavior_packs │ │ └── chill_oasis_assets │ │ │ ├── blocks │ │ │ ├── frond_top.block.json │ │ │ ├── palm_leave.block.json │ │ │ ├── palm_leave_corner.block.json │ │ │ ├── palm_leave_tip.block.json │ │ │ ├── palm_tree_top.block.json │ │ │ ├── palm_trunk.block.json │ │ │ └── white_sand.block.json │ │ │ ├── entities │ │ │ └── beachager.behavior.json │ │ │ ├── manifest.json │ │ │ ├── pack_icon.png │ │ │ └── spawn_rules │ │ │ └── beachager.json │ ├── eslint.config.mjs │ ├── just.config.ts │ ├── package-lock.json │ ├── package.json │ ├── resource_packs │ │ └── chill_oasis_assets │ │ │ ├── animations │ │ │ └── beachager.animation.json │ │ │ ├── blocks.json │ │ │ ├── entity │ │ │ └── beachager.entity.json │ │ │ ├── manifest.json │ │ │ ├── models │ │ │ ├── blocks │ │ │ │ ├── frond_top.geo.json │ │ │ │ ├── palm_leave.geo.json │ │ │ │ ├── palm_leave_corner.geo.json │ │ │ │ ├── palm_leave_tip.geo.json │ │ │ │ ├── palm_tree_top.geo.json │ │ │ │ ├── palm_trunk.geo.json │ │ │ │ └── white_sand.geo.json │ │ │ └── entity │ │ │ │ └── beachager.geo.json │ │ │ ├── pack_icon.png │ │ │ ├── sounds.json │ │ │ ├── texts │ │ │ └── en_US.lang │ │ │ └── textures │ │ │ ├── blocks │ │ │ ├── frond_top.png │ │ │ ├── palm_leave.png │ │ │ ├── palm_leave_corner.png │ │ │ ├── palm_leave_tip.png │ │ │ ├── palm_tree_top.png │ │ │ ├── palm_trunk.png │ │ │ └── white_sand.png │ │ │ ├── entity │ │ │ └── beachager │ │ │ │ ├── armorer.png │ │ │ │ ├── base.png │ │ │ │ ├── base2.png │ │ │ │ ├── base3.png │ │ │ │ ├── base4.png │ │ │ │ ├── base5.png │ │ │ │ ├── base6.png │ │ │ │ ├── butcher.png │ │ │ │ ├── cartographer.png │ │ │ │ ├── cleric.png │ │ │ │ ├── desert.png │ │ │ │ ├── farmer.png │ │ │ │ ├── fisherman.png │ │ │ │ ├── fletcher.png │ │ │ │ ├── jungle.png │ │ │ │ ├── leatherworker.png │ │ │ │ ├── level_diamond.png │ │ │ │ ├── level_emerald.png │ │ │ │ ├── level_gold.png │ │ │ │ ├── level_iron.png │ │ │ │ ├── level_stone.png │ │ │ │ ├── librarian.png │ │ │ │ ├── nitwit.png │ │ │ │ ├── plains.png │ │ │ │ ├── savanna.png │ │ │ │ ├── shepherd.png │ │ │ │ ├── snow.png │ │ │ │ ├── stonemason.png │ │ │ │ ├── swamp.png │ │ │ │ ├── taiga.png │ │ │ │ ├── toolsmith.png │ │ │ │ ├── unskilled.png │ │ │ │ └── weaponsmith.png │ │ │ └── terrain_texture.json │ ├── scripts │ │ └── main.ts │ └── tsconfig.json └── chill_oasis_biome │ ├── .env │ ├── .prettierrc.json │ ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json │ ├── behavior_packs │ └── chill_oasis_biome │ │ ├── biomes │ │ ├── beach.biome.json │ │ └── chill_oasis.biome.json │ │ ├── feature_rules │ │ ├── oasis_after_surface_dry_grass_feature_rules.json │ │ └── palm_trees.json │ │ ├── features │ │ ├── oasis_random_dry_grass_block_feature.json │ │ ├── oasis_scatter_dry_grass_feature.json │ │ ├── oasis_short_dry_grass_feature.json │ │ ├── oasis_tall_dry_grass_feature.json │ │ ├── palm_tree_distro.json │ │ ├── palm_tree_large.json │ │ ├── palm_tree_med.json │ │ ├── palm_tree_meds.json │ │ ├── palm_tree_scatter.json │ │ └── palm_tree_small.json │ │ ├── manifest.json │ │ ├── pack_icon.png │ │ └── structures │ │ └── mike │ │ ├── palm_tree_large.mcstructure │ │ ├── palm_tree_med.mcstructure │ │ ├── palm_tree_meds.mcstructure │ │ └── palm_tree_small.mcstructure │ ├── eslint.config.mjs │ ├── just.config.ts │ ├── package-lock.json │ ├── package.json │ ├── resource_packs │ └── chill_oasis_biome │ │ ├── biomes │ │ ├── beach.json │ │ └── chill_oasis.json │ │ ├── manifest.json │ │ ├── pack_icon.png │ │ ├── sounds.json │ │ └── sounds │ │ ├── ambient │ │ └── waves.ogg │ │ └── sound_definitions.json │ ├── scripts │ └── main.ts │ └── tsconfig.json ├── configurable_packs ├── .env ├── .prettierrc.json ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── behavior_packs │ └── configurable_pack │ │ ├── manifest.json │ │ └── pack_icon.png ├── eslint.config.mjs ├── just.config.ts ├── package-lock.json ├── package.json ├── resource_packs │ └── configurable_pack │ │ ├── manifest.json │ │ └── pack_icon.png ├── scripts │ └── main.ts └── tsconfig.json ├── creator_camp ├── .env ├── .prettierrc.json ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── README.md ├── behavior_packs │ └── creator_camp │ │ ├── blocks │ │ └── leaf_pile.block.json │ │ ├── entities │ │ └── campghost.json │ │ ├── feature_rules │ │ ├── camp_tree_feature_rule.json │ │ └── scatter_camp_tree_feature_rule.json │ │ ├── features │ │ ├── camp_tree_feature.json │ │ └── scatter_camp_tree_feature.json │ │ ├── items │ │ └── bag_o_leaves.json │ │ ├── loot_tables │ │ └── entities │ │ │ └── campghost.json │ │ ├── manifest.json │ │ ├── pack_icon.png │ │ ├── spawn_rules │ │ └── campghost.json │ │ ├── structures │ │ └── campsite │ │ │ ├── campfires │ │ │ └── campfire.mcstructure │ │ │ ├── paths │ │ │ ├── path.mcstructure │ │ │ ├── path_end_1.mcstructure │ │ │ ├── path_end_2.mcstructure │ │ │ └── tent_corridor.mcstructure │ │ │ └── tents │ │ │ └── blue_tent.mcstructure │ │ └── worldgen │ │ ├── jigsaw_structures │ │ └── basic_camp.json │ │ ├── processors │ │ └── grass_path_replacement.json │ │ ├── structure_sets │ │ └── basic_camp.json │ │ └── template_pools │ │ ├── campfires.json │ │ ├── paths.json │ │ └── tents.json ├── eslint.config.mjs ├── just.config.ts ├── package-lock.json ├── package.json ├── resource_packs │ └── creator_camp │ │ ├── animation_controllers │ │ └── campghost.animation_controllers.json │ │ ├── animations │ │ └── campghost.animation.json │ │ ├── blocks.json │ │ ├── entity │ │ └── campghost.entity.json │ │ ├── manifest.json │ │ ├── models │ │ ├── blocks │ │ │ └── leaf_pile.geo.json │ │ └── entity │ │ │ └── campghost.geo.json │ │ ├── pack_icon.png │ │ ├── particles │ │ └── cloud_biome_tinted_leaves_particle.json │ │ ├── render_controllers │ │ └── campghost.render_controllers.json │ │ ├── sounds │ │ ├── scary.ogg │ │ └── sound_definitions.json │ │ ├── texts │ │ └── en_US.lang │ │ └── textures │ │ ├── blocks │ │ └── leaf_pile.png │ │ ├── entity │ │ └── campghost │ │ │ ├── campghost.png │ │ │ └── creeper_armor.png │ │ ├── item_texture.json │ │ ├── items │ │ └── leaf_bag.png │ │ └── terrain_texture.json ├── scripts │ ├── CommonUtils.ts │ ├── LeafPileInteractionCustomComponent.ts │ ├── ThrowLeavesCustomComponent.ts │ └── main.ts └── tsconfig.json ├── culled_block_sample ├── README.md ├── culled_block_behavior_pack │ ├── blocks │ │ └── tuna_roll.json │ └── manifest.json ├── culled_block_resource_pack │ ├── block_culling │ │ └── sushi_cull.json │ ├── blocks.json │ ├── manifest.json │ ├── models │ │ └── blocks │ │ │ └── sushi.geo.json │ ├── texts │ │ └── en_US.lang │ └── textures │ │ ├── blocks │ │ ├── california_roll.png │ │ ├── salmon_roll.png │ │ ├── sushi_wrap.png │ │ └── tuna_roll.png │ │ └── terrain_texture.json └── install_uwp.cmd ├── custom_blocks ├── .env ├── .prettierrc.json ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── README.md ├── behavior_packs │ └── custom_blocks │ │ ├── blocks │ │ ├── blue_bubble_fish.json │ │ ├── california_roll.json │ │ ├── die.json │ │ ├── green_bubble_fish.json │ │ ├── orange_bubble_fish.json │ │ ├── salmon_roll.json │ │ └── tuna_roll.json │ │ └── manifest.json ├── eslint.config.mjs ├── just.config.ts ├── package-lock.json ├── package.json ├── resource_packs │ └── custom_blocks │ │ ├── blocks.json │ │ ├── manifest.json │ │ ├── models │ │ └── blocks │ │ │ ├── bubble.geo.json │ │ │ ├── bubble_fish.geo.json │ │ │ └── sushi.geo.json │ │ ├── texts │ │ └── en_US.lang │ │ └── textures │ │ ├── blocks │ │ ├── bubble_fish_blue.png │ │ ├── bubble_fish_green.png │ │ ├── bubble_fish_orange.png │ │ ├── california_roll.png │ │ ├── die_1.png │ │ ├── die_2.png │ │ ├── die_3.png │ │ ├── die_4.png │ │ ├── die_5.png │ │ ├── die_6.png │ │ ├── die_red.png │ │ ├── salmon_roll.png │ │ ├── sushi_wrap.png │ │ └── tuna_roll.png │ │ └── terrain_texture.json ├── scripts │ └── main.ts └── tsconfig.json ├── custom_features ├── README.md ├── basic_orange_ore │ ├── .env │ ├── .prettierrc.json │ ├── .vscode │ │ ├── extensions.json │ │ ├── launch.json │ │ └── settings.json │ ├── behavior_packs │ │ └── basic_orange_ore │ │ │ ├── blocks │ │ │ └── orange_ore.block.json │ │ │ ├── feature_rules │ │ │ └── orange_ore_geode_feature_rules.json │ │ │ ├── features │ │ │ └── orange_ore_geode_feature.json │ │ │ ├── loot_tables │ │ │ └── blocks │ │ │ │ └── orange_ore.json │ │ │ ├── manifest.json │ │ │ └── pack_icon.png │ ├── eslint.config.mjs │ ├── just.config.ts │ ├── package-lock.json │ ├── package.json │ ├── resource_packs │ │ └── basic_orange_ore │ │ │ ├── blocks.json │ │ │ ├── manifest.json │ │ │ ├── models │ │ │ └── blocks │ │ │ │ └── orange_ore.geo.json │ │ │ ├── pack_icon.png │ │ │ ├── texts │ │ │ └── en_US.lang │ │ │ └── textures │ │ │ ├── blocks │ │ │ └── orange_ore.png │ │ │ └── terrain_texture.json │ ├── scripts │ │ └── main.ts │ └── tsconfig.json └── example_feature_set │ ├── .env │ ├── .prettierrc.json │ ├── .vscode │ ├── extensions.json │ ├── launch.json │ └── settings.json │ ├── behavior_packs │ └── example_feature_set │ │ ├── blocks │ │ ├── andesite_malachite_ore.json │ │ ├── apple_block.json │ │ ├── blue_vine.json │ │ ├── granite_malachite_ore.json │ │ ├── malachite_ore.json │ │ └── oil_block.json │ │ ├── feature_rules │ │ ├── azalea_tree_feature_rules.json │ │ ├── blue_vines_feature_rules.json │ │ ├── cave_vine_feature_rules.json │ │ ├── cave_vine_snapped_to_ceiling_feature_rules.json │ │ ├── clay_pool_with_dripleaves_feature_rules.json │ │ ├── diamond_geode_feature_rules.json │ │ ├── find_valid_apples_feature_rules.json │ │ ├── hot_air_balloon_feature_rules.json │ │ ├── malachite_ore_feature_rules.json │ │ ├── monument_with_flowers_feature_rules.json │ │ ├── oak_tree_then_apples_feature_rules.json │ │ ├── oil_deposit_feature_rules.json │ │ ├── scatter_flowers_feature_rules.json │ │ ├── select_flower_feature_rules.json │ │ ├── single_pumpkin_feature_rules.json │ │ ├── underground_cave_carver_feature_rules.json │ │ ├── underwater_cave_carver_feature_rules.json │ │ ├── underwater_magma_feature_rules.json │ │ └── underwater_magma_underground_feature_rules.json │ │ ├── features │ │ ├── apple_feature.json │ │ ├── azalea_tree_feature.json │ │ ├── blue_flower_feature.json │ │ ├── blue_vines_feature.json │ │ ├── cave_vine_feature.json │ │ ├── cave_vine_snapped_to_ceiling_feature.json │ │ ├── clay_pool_with_dripleaves_feature.json │ │ ├── diamond_geode_feature.json │ │ ├── find_valid_apples_feature.json │ │ ├── flower_feature.json │ │ ├── hot_air_balloon_feature.json │ │ ├── malachite_ore_feature.json │ │ ├── monument_feature.json │ │ ├── monument_with_flowers_feature.json │ │ ├── oak_tree_feature.json │ │ ├── oak_tree_then_apples_feature.json │ │ ├── oil_deposit_feature.json │ │ ├── red_flower_feature.json │ │ ├── scatter_apples_feature.json │ │ ├── scatter_flowers_feature.json │ │ ├── scatter_white_flowers_feature.json │ │ ├── scatter_yellow_flower_feature.json │ │ ├── select_flower_feature.json │ │ ├── single_pumpkin_feature.json │ │ ├── underground_cave_carver_feature.json │ │ ├── underwater_cave_carver_feature.json │ │ ├── underwater_magma_feature.json │ │ ├── underwater_magma_snap_to_surface_feature.json │ │ ├── underwater_magma_underground_feature.json │ │ ├── white_flower_feature.json │ │ └── yellow_flower_feature.json │ │ ├── loot_tables │ │ └── blocks │ │ │ └── apple_block.json │ │ ├── manifest.json │ │ └── structures │ │ └── example │ │ ├── hot_air_balloon.mcstructure │ │ └── monument.mcstructure │ ├── eslint.config.mjs │ ├── just.config.ts │ ├── package-lock.json │ ├── package.json │ ├── resource_packs │ └── example_feature_set │ │ ├── blocks.json │ │ ├── manifest.json │ │ ├── models │ │ └── blocks │ │ │ └── apple_block.geo.json │ │ ├── texts │ │ └── en_US.lang │ │ └── textures │ │ ├── blocks │ │ ├── andesite_malachite_ore.png │ │ ├── apple_block.png │ │ ├── blue_vines.png │ │ ├── granite_malachite_ore.png │ │ ├── malachite_ore.png │ │ └── oil_block.png │ │ └── terrain_texture.json │ ├── scripts │ └── main.ts │ └── tsconfig.json ├── custom_items ├── .env ├── .prettierrc.json ├── .vscode │ ├── extensions.json │ ├── launch.json │ └── settings.json ├── README.md ├── behavior_packs │ └── custom_item │ │ ├── items │ │ ├── chestplate.json │ │ ├── crown.json │ │ ├── goo.json │ │ ├── my_boots.json │ │ ├── my_helm.json │ │ ├── my_leggings.json │ │ ├── my_sword.json │ │ ├── my_sword_chuck.json │ │ ├── my_sword_shoot.json │ │ ├── my_sword_singing.json │ │ ├── my_sword_turtle.json │ │ ├── my_sword_weak.json │ │ └── wrench.json │ │ ├── loot_tables │ │ └── test_loot.json │ │ ├── manifest.json │ │ └── recipes │ │ └── my_sword.json ├── eslint.config.mjs ├── just.config.ts ├── package-lock.json ├── package.json ├── resource_packs │ └── custom_item │ │ ├── animations │ │ ├── first_person.json │ │ └── right_arm.json │ │ ├── attachables │ │ ├── crown.player.json │ │ ├── my_chestplate.json │ │ ├── my_feet.json │ │ ├── my_helm.json │ │ ├── my_legs.json │ │ └── wrench.player.json │ │ ├── manifest.json │ │ ├── models │ │ └── entity │ │ │ ├── crown.geo.json │ │ │ └── wrench.geo.json │ │ ├── texts │ │ └── en_US.lang │ │ └── textures │ │ ├── item_texture.json │ │ ├── items │ │ ├── crown_ico.png │ │ ├── crown_minecraft.png │ │ ├── custom_boots.png │ │ ├── custom_chestplate.png │ │ ├── custom_helmet.png │ │ ├── custom_leggings.png │ │ ├── diamond_boots_purple.png │ │ ├── diamond_chestplate_purple.png │ │ ├── diamond_helmet_purple.png │ │ ├── diamond_leggings_purple.png │ │ ├── goo.png │ │ ├── my_sword.png │ │ ├── my_sword1.png │ │ ├── my_sword2.png │ │ ├── wrench.png │ │ └── wrench_ico.png │ │ └── models │ │ └── armor │ │ ├── armor_purple_bottom.png │ │ ├── armor_purple_top.png │ │ ├── custom_legs.png │ │ └── custom_main.png ├── scripts │ └── main.ts └── tsconfig.json ├── custom_sounds ├── README.md └── chestopen.ogg ├── debug_tools ├── .env-editor ├── .env-ingame ├── .prettierrc.json ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── README.md ├── behavior_packs │ ├── common │ │ ├── items │ │ │ ├── magnifying_glass.json │ │ │ └── wrench.json │ │ └── pack_icon.png │ ├── debug_tools_editor │ │ └── manifest.json │ └── debug_tools_ingame │ │ └── manifest.json ├── eslint.config.mjs ├── just.config.ts ├── package-lock.json ├── package.json ├── resource_packs │ ├── common │ │ ├── animations │ │ │ └── first_person.json │ │ ├── attachables │ │ │ ├── magnifying_glass.json │ │ │ └── wrench.json │ │ ├── models │ │ │ └── entity │ │ │ │ ├── magnifying_glass.json │ │ │ │ └── wrench.geo.json │ │ ├── pack_icon.png │ │ ├── texts │ │ │ └── en_US.lang │ │ ├── textures │ │ │ ├── item_texture.json │ │ │ └── items │ │ │ │ ├── magnifying_glass.png │ │ │ │ ├── magnifying_glass_ico.png │ │ │ │ ├── wrench.png │ │ │ │ └── wrench_ico.png │ │ └── ui │ │ │ └── hud_screen.json │ ├── debug_tools_editor │ │ └── manifest.json │ └── debug_tools_ingame │ │ └── manifest.json ├── scripts │ ├── DebugToolRegistry.ts │ ├── DebugTools.ts │ ├── IDebugToolsData.ts │ ├── ITool.ts │ ├── IToolData.ts │ ├── IWatchTool.ts │ ├── Utilities.ts │ ├── editor │ │ ├── DebugToolsEditorExtension.ts │ │ └── main.ts │ ├── ingame │ │ └── main.ts │ └── tools │ │ ├── CommandResultWatchTool.ts │ │ ├── CustomWatchTool.ts │ │ ├── DynamicPropertyWatchTool.ts │ │ ├── GameModeWatchTool.ts │ │ ├── LocationWatchTool.ts │ │ ├── ScoreboardWatchTool.ts │ │ ├── TickWatchTool.ts │ │ └── TimeOfDayWatchTool.ts ├── tsconfig.editor.json └── tsconfig.ingame.json ├── deferred_lighting_starter ├── .env ├── .prettierrc.json ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── README.md ├── eslint.config.mjs ├── just.config.ts ├── package-lock.json ├── package.json └── resource_packs │ └── samp_dlstarter │ ├── atmospherics │ └── atmospherics.json │ ├── biomes │ ├── bamboo_jungle.client_biome.json │ ├── bamboo_jungle_hills.client_biome.json │ ├── basalt_deltas.client_biome.json │ ├── beach.client_biome.json │ ├── birch_forest.client_biome.json │ ├── birch_forest_hills.client_biome.json │ ├── birch_forest_hills_mutated.client_biome.json │ ├── birch_forest_mutated.client_biome.json │ ├── cherry_grove.client_biome.json │ ├── cold_beach.client_biome.json │ ├── cold_ocean.client_biome.json │ ├── cold_taiga.client_biome.json │ ├── cold_taiga_hills.client_biome.json │ ├── cold_taiga_mutated.client_biome.json │ ├── crimson_forest.client_biome.json │ ├── deep_cold_ocean.client_biome.json │ ├── deep_dark.client_biome.json │ ├── deep_frozen_ocean.client_biome.json │ ├── deep_lukewarm_ocean.client_biome.json │ ├── deep_ocean.client_biome.json │ ├── deep_warm_ocean.client_biome.json │ ├── desert.client_biome.json │ ├── desert_hills.client_biome.json │ ├── desert_mutated.client_biome.json │ ├── dripstone_caves.client_biome.json │ ├── extreme_hills.client_biome.json │ ├── extreme_hills_edge.client_biome.json │ ├── extreme_hills_mutated.client_biome.json │ ├── extreme_hills_plus_trees.client_biome.json │ ├── extreme_hills_plus_trees_mutated.client_biome.json │ ├── flower_forest.client_biome.json │ ├── forest.client_biome.json │ ├── forest_hills.client_biome.json │ ├── frozen_ocean.client_biome.json │ ├── frozen_peaks.client_biome.json │ ├── frozen_river.client_biome.json │ ├── grove.client_biome.json │ ├── hell.client_biome.json │ ├── ice_mountains.client_biome.json │ ├── ice_plains.client_biome.json │ ├── ice_plains_spikes.client_biome.json │ ├── jagged_peaks.client_biome.json │ ├── jungle.client_biome.json │ ├── jungle_edge.client_biome.json │ ├── jungle_edge_mutated.client_biome.json │ ├── jungle_hills.client_biome.json │ ├── jungle_mutated.client_biome.json │ ├── legacy_frozen_ocean.client_biome.json │ ├── lukewarm_ocean.client_biome.json │ ├── lush_caves.client_biome.json │ ├── mangrove_swamp.client_biome.json │ ├── meadow.client_biome.json │ ├── mega_taiga.client_biome.json │ ├── mega_taiga_hills.client_biome.json │ ├── mesa.client_biome.json │ ├── mesa_bryce.client_biome.json │ ├── mesa_plateau.client_biome.json │ ├── mesa_plateau_mutated.client_biome.json │ ├── mesa_plateau_stone.client_biome.json │ ├── mesa_plateau_stone_mutated.client_biome.json │ ├── mushroom_island.client_biome.json │ ├── mushroom_island_shore.client_biome.json │ ├── ocean.client_biome.json │ ├── pale_garden.client_biome.json │ ├── plains.client_biome.json │ ├── redwood_taiga_hills_mutated.client_biome.json │ ├── redwood_taiga_mutated.client_biome.json │ ├── river.client_biome.json │ ├── roofed_forest.client_biome.json │ ├── roofed_forest_mutated.client_biome.json │ ├── savanna.client_biome.json │ ├── savanna_mutated.client_biome.json │ ├── savanna_plateau.client_biome.json │ ├── savanna_plateau_mutated.client_biome.json │ ├── snowy_slopes.client_biome.json │ ├── soulsand_valley.client_biome.json │ ├── stone_beach.client_biome.json │ ├── stony_peaks.client_biome.json │ ├── sunflower_plains.client_biome.json │ ├── swampland.client_biome.json │ ├── swampland_mutated.client_biome.json │ ├── taiga.client_biome.json │ ├── taiga_hills.client_biome.json │ ├── taiga_mutated.client_biome.json │ ├── the_end.client_biome.json │ ├── warm_ocean.client_biome.json │ └── warped_forest.client_biome.json │ ├── color_grading │ └── color_grading.json │ ├── lighting │ └── global.json │ ├── manifest.json │ ├── pack_icon.png │ ├── pbr │ └── global.json │ ├── point_lights │ └── global.json │ ├── shadows │ └── shadows.json │ └── water │ └── water.json ├── jigsaws ├── README.md └── basic_dungeon │ ├── .env │ ├── .prettierrc.json │ ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json │ ├── behavior_packs │ └── mike_basi │ │ ├── manifest.json │ │ ├── pack_icon.png │ │ ├── structures │ │ └── mike │ │ │ ├── 21room.mcstructure │ │ │ ├── beds5x5int.mcstructure │ │ │ ├── chestcarpet5x5int.mcstructure │ │ │ ├── ewcap.mcstructure │ │ │ ├── ewhall.mcstructure │ │ │ ├── kitchen5x5int.mcstructure │ │ │ ├── nscap.mcstructure │ │ │ └── nshall.mcstructure │ │ └── worldgen │ │ ├── processors │ │ └── stone_brick_replacement.json │ │ ├── structure_sets │ │ └── basic_dungeon.json │ │ ├── structures │ │ └── basic_dungeon.json │ │ └── template_pools │ │ ├── 5x5int.json │ │ ├── ew7x4.json │ │ ├── ewcap.json │ │ ├── ns7x4.json │ │ └── nscap.json │ ├── eslint.config.mjs │ ├── just.config.ts │ ├── package-lock.json │ ├── package.json │ ├── packs │ └── structures_world │ │ ├── db │ │ ├── 000035.ldb │ │ ├── 000037.ldb │ │ ├── CURRENT │ │ └── MANIFEST-000032 │ │ ├── level.dat │ │ ├── level.dat_old │ │ ├── levelname.txt │ │ ├── world_behavior_packs.json │ │ ├── world_icon.jpeg │ │ └── world_resource_packs.json │ ├── resource_packs │ └── mike_basi │ │ ├── manifest.json │ │ └── pack_icon.png │ ├── scripts │ └── main.ts │ └── tsconfig.json ├── lucky_block ├── README.md └── version_1 │ ├── .env │ ├── .prettierrc.json │ ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json │ ├── behavior_packs │ └── mike_luck │ │ ├── blocks │ │ └── luckyblock.json │ │ ├── manifest.json │ │ └── pack_icon.png │ ├── eslint.config.mjs │ ├── just.config.ts │ ├── package-lock.json │ ├── package.json │ ├── resource_packs │ └── mike_luck │ │ ├── blocks.json │ │ ├── manifest.json │ │ ├── models │ │ └── blocks │ │ │ └── luckyblock.geo.json │ │ ├── pack_icon.png │ │ ├── sounds │ │ ├── sound_definitions.json │ │ └── wood_sprung.ogg │ │ ├── texts │ │ └── en_US.lang │ │ └── textures │ │ ├── blocks │ │ └── luckyblock.png │ │ └── terrain_texture.json │ ├── scripts │ ├── LuckyblockActions.ts │ └── main.ts │ └── tsconfig.json ├── mclive2022_addon ├── mclive2022.mcaddon ├── mclive2022behaviorpack │ ├── entities │ │ ├── biceson.behavior.json │ │ ├── black_bear.behavior.json │ │ ├── boomfly.behavior.json │ │ ├── booshroom.behavior.json │ │ ├── butterfly.behavior.json │ │ ├── eyeder.behavior.json │ │ ├── flying_cow.behavior.json │ │ ├── frost_moose.behavior.json │ │ ├── ghost.behavior.json │ │ ├── hornbill.behavior.json │ │ ├── lilydog.behavior.json │ │ ├── nardolphle.behavior.json │ │ ├── narwhal.behavior.json │ │ ├── pearrot.behavior.json │ │ ├── pheonix.behavior.json │ │ ├── raccoon.behavior.json │ │ ├── robot.behavior.json │ │ ├── sea_chicken.behavior.json │ │ ├── sheepomelon.behavior.json │ │ ├── smick_mimic.behavior.json │ │ ├── snow_wizard.behavior.json │ │ ├── spooky_golem.behavior.json │ │ └── wraith.behavior.json │ ├── loot_tables │ │ └── entities │ │ │ ├── sheepomelon.json │ │ │ └── sheepomelon_shear.json │ ├── manifest.json │ └── pack_icon.png └── mclive2022resourcepack │ ├── animations │ ├── biceson.animation.json │ ├── black_bear.animation.json │ ├── boomfly.animation.json │ ├── booshroom.animation.json │ ├── butterfly.animation.json │ ├── eyeder.animation.json │ ├── flying_cow.animation.json │ ├── frost_moose.animation.json │ ├── ghost.animation.json │ ├── hornbill.animation.json │ ├── lilydog.animation.json │ ├── nardolphle.animation.json │ ├── narwhal.animation.json │ ├── pearrot.animation.json │ ├── phoenix.animation.json │ ├── raccoon.animation.json │ ├── robot.animation.json │ ├── sea_chicken.animation.json │ ├── sheepomelon.animation.json │ ├── smick_mimic.animation.json │ ├── snow_wizard.animation.json │ ├── spooky_golem.animation.json │ └── wraith.animation.json │ ├── entity │ ├── biceson.entity.json │ ├── black_bear.entity.json │ ├── boomfly.entity.json │ ├── booshroom.entity.json │ ├── butterfly.entity.json │ ├── eyeder.entity.json │ ├── flying_cow.entity.json │ ├── frost_moose.entity.json │ ├── ghost.entity.json │ ├── hornbill.entity.json │ ├── lilydog.entity.json │ ├── nardolphle.entity.json │ ├── narwhal.entity.json │ ├── pearrot.entity.json │ ├── phoenix.entity.json │ ├── raccoon.entity.json │ ├── robot.entity.json │ ├── sea_chicken.entity.json │ ├── sheepomelon.entity.json │ ├── smick_mimic.entity.json │ ├── snow_wizard.entity.json │ ├── spooky_golem.entity.json │ └── wraith.entity.json │ ├── manifest.json │ ├── models │ └── entity │ │ ├── biceson.geo.json │ │ ├── black_bear.geo.json │ │ ├── boomfly.geo.json │ │ ├── booshroom.geo.json │ │ ├── butterfly.geo.json │ │ ├── eyeder.geo.json │ │ ├── flying_cow.geo.json │ │ ├── frost_moose.geo.json │ │ ├── ghost.geo.json │ │ ├── hornbill.geo.json │ │ ├── lilydog.geo.json │ │ ├── nardolphle.geo.json │ │ ├── narwhal.geo.json │ │ ├── pearrot.geo.json │ │ ├── phoenix.geo.json │ │ ├── raccoon.geo.json │ │ ├── robot.geo.json │ │ ├── sea_chicken.geo.json │ │ ├── sheepomelon.geo.json │ │ ├── smick_mimic.geo.json │ │ ├── snow_wizard.geo.json │ │ ├── spooky_golem.geo.json │ │ └── wraith.geo.json │ ├── pack_icon.png │ ├── sounds.json │ ├── texts │ └── en_US.lang │ └── textures │ └── entity │ ├── biceson.png │ ├── black_bear.png │ ├── boomfly.png │ ├── booshroom.png │ ├── butterfly.png │ ├── eyeder.png │ ├── flying_cow.png │ ├── frost_moose │ ├── brown.png │ ├── creamy.png │ ├── decor_black.png │ ├── decor_blue.png │ ├── decor_brown.png │ ├── decor_cyan.png │ ├── decor_gray.png │ ├── decor_green.png │ ├── decor_light_blue.png │ ├── decor_lime.png │ ├── decor_magenta.png │ ├── decor_none.png │ ├── decor_orange.png │ ├── decor_pink.png │ ├── decor_purple.png │ ├── decor_red.png │ ├── decor_silver.png │ ├── decor_white.png │ ├── decor_yellow.png │ ├── frost1.png │ ├── gray.png │ ├── texture1.png │ ├── texture2.png │ ├── trader_llama_decor.png │ └── white.png │ ├── ghost.png │ ├── hornbill │ ├── blue.png │ ├── green.png │ ├── grey.png │ ├── red_blue.png │ └── yellow_blue.png │ ├── lilydog │ ├── angry.png │ ├── lilydog.png │ └── tame.png │ ├── nardolphle.png │ ├── narwhal.png │ ├── pearrot │ ├── blue.png │ ├── green.png │ ├── grey.png │ ├── red_blue.png │ └── yellow_blue.png │ ├── phoenix.png │ ├── raccoon.png │ ├── robot.png │ ├── sea_chicken.png │ ├── sheepomelon.png │ ├── smick_mimic.png │ ├── snow_wizard.png │ ├── spooky_golem.png │ └── wraith.png ├── npc_dialogue_sample ├── README.md ├── dialogue │ └── scene.json ├── manifest.json └── pack_icon.png ├── palm_tree_blocks_and_features ├── README.md ├── palm_tree_blocks │ ├── .env │ ├── .prettierrc.json │ ├── .vscode │ │ ├── extensions.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── behavior_packs │ │ └── palm_tree │ │ │ ├── blocks │ │ │ ├── frond_top.block.json │ │ │ ├── palm_leave.block.json │ │ │ ├── palm_leave_corner.block.json │ │ │ ├── palm_leave_tip.block.json │ │ │ ├── palm_tree_top.block.json │ │ │ └── palm_trunk.block.json │ │ │ ├── manifest.json │ │ │ └── pack_icon.png │ ├── eslint.config.mjs │ ├── just.config.ts │ ├── package-lock.json │ ├── package.json │ ├── resource_packs │ │ └── palm_tree │ │ │ ├── blocks.json │ │ │ ├── manifest.json │ │ │ ├── models │ │ │ └── blocks │ │ │ │ ├── frond_top.geo.json │ │ │ │ ├── palm_leave.geo.json │ │ │ │ ├── palm_leave_corner.geo.json │ │ │ │ ├── palm_leave_tip.geo.json │ │ │ │ ├── palm_tree_top.geo.json │ │ │ │ └── palm_trunk.geo.json │ │ │ ├── pack_icon.png │ │ │ ├── texts │ │ │ └── en_US.lang │ │ │ └── textures │ │ │ ├── blocks │ │ │ ├── frond_top.png │ │ │ ├── palm_leave.png │ │ │ ├── palm_leave_corner.png │ │ │ ├── palm_leave_tip.png │ │ │ ├── palm_tree_top.png │ │ │ └── palm_trunk.png │ │ │ └── terrain_texture.json │ ├── scripts │ │ └── main.ts │ └── tsconfig.json └── palm_tree_blocks_features │ ├── .env │ ├── .prettierrc.json │ ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json │ ├── behavior_packs │ └── palm_tree_features │ │ ├── feature_rules │ │ └── palm_trees.json │ │ ├── features │ │ ├── palm_tree_distro.json │ │ ├── palm_tree_large.json │ │ ├── palm_tree_med.json │ │ ├── palm_tree_meds.json │ │ ├── palm_tree_scatter.json │ │ └── palm_tree_small.json │ │ ├── manifest.json │ │ ├── pack_icon.png │ │ └── structures │ │ └── mike │ │ ├── palm_tree_large.mcstructure │ │ ├── palm_tree_med.mcstructure │ │ ├── palm_tree_meds.mcstructure │ │ └── palm_tree_small.mcstructure │ ├── eslint.config.mjs │ ├── just.config.ts │ ├── package-lock.json │ ├── package.json │ ├── resource_packs │ └── palm_tree_features │ │ ├── manifest.json │ │ └── pack_icon.png │ ├── scripts │ └── main.ts │ └── tsconfig.json ├── parkour_sample_world ├── README.md └── SampleParkourWorld.mcworld ├── particles_examples_1.19 ├── ParticlesExamples1.19.mcpack └── unzipped │ ├── manifest.json │ └── particles │ ├── example_beziercurve.json │ ├── example_blendmode_add.json │ ├── example_blendmode_alpha.json │ ├── example_blendmode_blend.json │ ├── example_bounce.json │ ├── example_catmullromcurve.json │ ├── example_colorcurve.json │ ├── example_colorcurve2.json │ ├── example_combocurve.json │ ├── example_directional_sphere.json │ ├── example_enitity_sparkle_box.json │ ├── example_entity_sparkle_aabb.json │ ├── example_expire_on_contact.json │ ├── example_flipbook.json │ ├── example_highrestitution.json │ ├── example_linearcurve.json │ ├── example_particle_event_system.json │ ├── example_smoke_puff.json │ ├── example_spiral.json │ ├── example_vertexrandom.json │ ├── example_watertest.json │ ├── fireworks_events_demo.json │ ├── fireworks_pop_part.json │ ├── fireworks_rocket_part.json │ ├── fireworks_trail.json │ └── fireworks_twinkles.json ├── resource_pack_sample ├── README.md ├── manifest.json ├── pack_icon.png └── textures │ └── blocks │ └── dirt.png ├── rtx_resource_pack ├── README.md ├── manifest.json ├── pack_icon.png └── textures │ └── blocks │ ├── concrete_white.png │ ├── concrete_white.texture_set.json │ ├── concrete_white_mer.png │ ├── emerald_ore.png │ ├── emerald_ore.texture_set.json │ ├── emerald_ore_mer.png │ ├── height.png │ ├── iron_block.png │ ├── iron_block.texture_set.json │ └── iron_block_mer.png ├── skinpack ├── README.md ├── skins.mcpack └── skins.zip ├── starter_blocks ├── .env ├── .prettierrc.json ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── README.md ├── behavior_packs │ └── starter_blocks │ │ ├── blocks │ │ ├── crate.json │ │ └── simple_cube.json │ │ └── manifest.json ├── eslint.config.mjs ├── just.config.ts ├── package-lock.json ├── package.json ├── resource_packs │ └── starter_blocks │ │ ├── blocks.json │ │ ├── manifest.json │ │ ├── models │ │ └── blocks │ │ │ └── crate.geo.json │ │ ├── texts │ │ └── en_US.lang │ │ └── textures │ │ ├── blocks │ │ ├── crate.png │ │ └── simple_cube.png │ │ └── terrain_texture.json ├── scripts │ └── main.ts └── tsconfig.json ├── starter_items ├── .env ├── .prettierrc.json ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── README.md ├── behavior_packs │ └── starter_Items │ │ ├── items │ │ ├── elixir.json │ │ ├── hard_biscuit.json │ │ ├── key.json │ │ ├── pear.json │ │ └── rod.json │ │ ├── manifest.json │ │ └── recipes │ │ └── elixir.json ├── eslint.config.mjs ├── just.config.ts ├── package-lock.json ├── package.json ├── resource_packs │ └── starter_items │ │ ├── manifest.json │ │ ├── texts │ │ └── en_US.lang │ │ └── textures │ │ ├── item_texture.json │ │ └── items │ │ ├── elixir.png │ │ ├── elixir.texture_set.json │ │ ├── elixir_mers.tga │ │ ├── hard_biscuit.png │ │ ├── hard_biscuit.texture_set.json │ │ ├── hard_biscuit_mers.tga │ │ ├── key.png │ │ ├── key.texture_set.json │ │ ├── key_mers.tga │ │ ├── pear.png │ │ ├── pear.texture_set.json │ │ ├── pear_mers.tga │ │ ├── rod.png │ │ ├── rod.texture_set.json │ │ └── rod_mers.tga ├── scripts │ └── main.ts └── tsconfig.json └── structure_blocks_sample_behavior_pack ├── README.md ├── manifest.json ├── pack_icon.png └── structures ├── house1.mcstructure ├── house2.mcstructure ├── house3.mcstructure └── statue.mcstructure /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /add_entity_robot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/add_entity_robot/README.md -------------------------------------------------------------------------------- /add_entity_robot/full/robot_example_full_behavior/entities/robot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/add_entity_robot/full/robot_example_full_behavior/entities/robot.json -------------------------------------------------------------------------------- /add_entity_robot/full/robot_example_full_behavior/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/add_entity_robot/full/robot_example_full_behavior/manifest.json -------------------------------------------------------------------------------- /add_entity_robot/full/robot_example_full_behavior/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/add_entity_robot/full/robot_example_full_behavior/pack_icon.png -------------------------------------------------------------------------------- /add_entity_robot/full/robot_example_full_behavior/spawn_rules/robot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/add_entity_robot/full/robot_example_full_behavior/spawn_rules/robot.json -------------------------------------------------------------------------------- /add_entity_robot/full/robot_example_full_resources/entity/robot.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/add_entity_robot/full/robot_example_full_resources/entity/robot.entity.json -------------------------------------------------------------------------------- /add_entity_robot/full/robot_example_full_resources/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/add_entity_robot/full/robot_example_full_resources/manifest.json -------------------------------------------------------------------------------- /add_entity_robot/full/robot_example_full_resources/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/add_entity_robot/full/robot_example_full_resources/pack_icon.png -------------------------------------------------------------------------------- /add_entity_robot/full/robot_example_full_resources/texts/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/add_entity_robot/full/robot_example_full_resources/texts/en_US.lang -------------------------------------------------------------------------------- /add_entity_robot/install_uwp.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/add_entity_robot/install_uwp.cmd -------------------------------------------------------------------------------- /add_entity_robot/min/robot_example_min_behavior/entities/robot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/add_entity_robot/min/robot_example_min_behavior/entities/robot.json -------------------------------------------------------------------------------- /add_entity_robot/min/robot_example_min_behavior/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/add_entity_robot/min/robot_example_min_behavior/manifest.json -------------------------------------------------------------------------------- /add_entity_robot/min/robot_example_min_behavior/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/add_entity_robot/min/robot_example_min_behavior/pack_icon.png -------------------------------------------------------------------------------- /add_entity_robot/min/robot_example_min_resources/entity/robot.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/add_entity_robot/min/robot_example_min_resources/entity/robot.entity.json -------------------------------------------------------------------------------- /add_entity_robot/min/robot_example_min_resources/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/add_entity_robot/min/robot_example_min_resources/manifest.json -------------------------------------------------------------------------------- /add_entity_robot/min/robot_example_min_resources/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/add_entity_robot/min/robot_example_min_resources/pack_icon.png -------------------------------------------------------------------------------- /add_entity_robot/min/robot_example_min_resources/texts/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/add_entity_robot/min/robot_example_min_resources/texts/en_US.lang -------------------------------------------------------------------------------- /add_entity_robot/min/robot_example_min_resources/textures/entity/robot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/add_entity_robot/min/robot_example_min_resources/textures/entity/robot.png -------------------------------------------------------------------------------- /addon_starter/1_hello_world/.env: -------------------------------------------------------------------------------- 1 | PROJECT_NAME="aop_mobs" 2 | MINECRAFT_PRODUCT="BedrockGDK" 3 | CUSTOM_DEPLOYMENT_PATH="" -------------------------------------------------------------------------------- /addon_starter/1_hello_world/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/1_hello_world/.prettierrc.json -------------------------------------------------------------------------------- /addon_starter/1_hello_world/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/1_hello_world/.vscode/extensions.json -------------------------------------------------------------------------------- /addon_starter/1_hello_world/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/1_hello_world/.vscode/launch.json -------------------------------------------------------------------------------- /addon_starter/1_hello_world/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/1_hello_world/.vscode/settings.json -------------------------------------------------------------------------------- /addon_starter/1_hello_world/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/1_hello_world/.vscode/tasks.json -------------------------------------------------------------------------------- /addon_starter/1_hello_world/behavior_packs/aop_mobs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/1_hello_world/behavior_packs/aop_mobs/manifest.json -------------------------------------------------------------------------------- /addon_starter/1_hello_world/behavior_packs/aop_mobs/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/1_hello_world/behavior_packs/aop_mobs/pack_icon.png -------------------------------------------------------------------------------- /addon_starter/1_hello_world/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/1_hello_world/eslint.config.mjs -------------------------------------------------------------------------------- /addon_starter/1_hello_world/just.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/1_hello_world/just.config.ts -------------------------------------------------------------------------------- /addon_starter/1_hello_world/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/1_hello_world/package-lock.json -------------------------------------------------------------------------------- /addon_starter/1_hello_world/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/1_hello_world/package.json -------------------------------------------------------------------------------- /addon_starter/1_hello_world/resource_packs/aop_mobs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/1_hello_world/resource_packs/aop_mobs/manifest.json -------------------------------------------------------------------------------- /addon_starter/1_hello_world/resource_packs/aop_mobs/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/1_hello_world/resource_packs/aop_mobs/pack_icon.png -------------------------------------------------------------------------------- /addon_starter/1_hello_world/resource_packs/aop_mobs/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/1_hello_world/resource_packs/aop_mobs/sounds.json -------------------------------------------------------------------------------- /addon_starter/1_hello_world/resource_packs/aop_mobs/texts/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/1_hello_world/resource_packs/aop_mobs/texts/en_US.lang -------------------------------------------------------------------------------- /addon_starter/1_hello_world/scripts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/1_hello_world/scripts/main.ts -------------------------------------------------------------------------------- /addon_starter/1_hello_world/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/1_hello_world/tsconfig.json -------------------------------------------------------------------------------- /addon_starter/2_entities/.env: -------------------------------------------------------------------------------- 1 | PROJECT_NAME="aop_mobs" 2 | MINECRAFT_PRODUCT="BedrockGDK" 3 | CUSTOM_DEPLOYMENT_PATH="" -------------------------------------------------------------------------------- /addon_starter/2_entities/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/2_entities/.prettierrc.json -------------------------------------------------------------------------------- /addon_starter/2_entities/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/2_entities/.vscode/extensions.json -------------------------------------------------------------------------------- /addon_starter/2_entities/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/2_entities/.vscode/launch.json -------------------------------------------------------------------------------- /addon_starter/2_entities/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/2_entities/.vscode/settings.json -------------------------------------------------------------------------------- /addon_starter/2_entities/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/2_entities/.vscode/tasks.json -------------------------------------------------------------------------------- /addon_starter/2_entities/behavior_packs/aop_mobs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/2_entities/behavior_packs/aop_mobs/manifest.json -------------------------------------------------------------------------------- /addon_starter/2_entities/behavior_packs/aop_mobs/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/2_entities/behavior_packs/aop_mobs/pack_icon.png -------------------------------------------------------------------------------- /addon_starter/2_entities/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/2_entities/eslint.config.mjs -------------------------------------------------------------------------------- /addon_starter/2_entities/just.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/2_entities/just.config.ts -------------------------------------------------------------------------------- /addon_starter/2_entities/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/2_entities/package-lock.json -------------------------------------------------------------------------------- /addon_starter/2_entities/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/2_entities/package.json -------------------------------------------------------------------------------- /addon_starter/2_entities/resource_packs/aop_mobs/entity/biceson.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/2_entities/resource_packs/aop_mobs/entity/biceson.entity.json -------------------------------------------------------------------------------- /addon_starter/2_entities/resource_packs/aop_mobs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/2_entities/resource_packs/aop_mobs/manifest.json -------------------------------------------------------------------------------- /addon_starter/2_entities/resource_packs/aop_mobs/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/2_entities/resource_packs/aop_mobs/pack_icon.png -------------------------------------------------------------------------------- /addon_starter/2_entities/resource_packs/aop_mobs/particles/smoke_puff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/2_entities/resource_packs/aop_mobs/particles/smoke_puff.json -------------------------------------------------------------------------------- /addon_starter/2_entities/resource_packs/aop_mobs/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/2_entities/resource_packs/aop_mobs/sounds.json -------------------------------------------------------------------------------- /addon_starter/2_entities/resource_packs/aop_mobs/texts/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/2_entities/resource_packs/aop_mobs/texts/en_US.lang -------------------------------------------------------------------------------- /addon_starter/2_entities/scripts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/2_entities/scripts/main.ts -------------------------------------------------------------------------------- /addon_starter/2_entities/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/2_entities/tsconfig.json -------------------------------------------------------------------------------- /addon_starter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/README.md -------------------------------------------------------------------------------- /addon_starter/complete/.env: -------------------------------------------------------------------------------- 1 | PROJECT_NAME="aop_mobs" 2 | MINECRAFT_PRODUCT="BedrockGDK" 3 | CUSTOM_DEPLOYMENT_PATH="" -------------------------------------------------------------------------------- /addon_starter/complete/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/complete/.prettierrc.json -------------------------------------------------------------------------------- /addon_starter/complete/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/complete/.vscode/extensions.json -------------------------------------------------------------------------------- /addon_starter/complete/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/complete/.vscode/launch.json -------------------------------------------------------------------------------- /addon_starter/complete/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/complete/.vscode/settings.json -------------------------------------------------------------------------------- /addon_starter/complete/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/complete/.vscode/tasks.json -------------------------------------------------------------------------------- /addon_starter/complete/behavior_packs/aop_mobs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/complete/behavior_packs/aop_mobs/manifest.json -------------------------------------------------------------------------------- /addon_starter/complete/behavior_packs/aop_mobs/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/complete/behavior_packs/aop_mobs/pack_icon.png -------------------------------------------------------------------------------- /addon_starter/complete/behavior_packs/aop_mobs/spawn_rules/biceson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/complete/behavior_packs/aop_mobs/spawn_rules/biceson.json -------------------------------------------------------------------------------- /addon_starter/complete/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/complete/eslint.config.mjs -------------------------------------------------------------------------------- /addon_starter/complete/just.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/complete/just.config.ts -------------------------------------------------------------------------------- /addon_starter/complete/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/complete/package-lock.json -------------------------------------------------------------------------------- /addon_starter/complete/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/complete/package.json -------------------------------------------------------------------------------- /addon_starter/complete/resource_packs/aop_mobs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/complete/resource_packs/aop_mobs/manifest.json -------------------------------------------------------------------------------- /addon_starter/complete/resource_packs/aop_mobs/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/complete/resource_packs/aop_mobs/pack_icon.png -------------------------------------------------------------------------------- /addon_starter/complete/resource_packs/aop_mobs/particles/smoke_puff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/complete/resource_packs/aop_mobs/particles/smoke_puff.json -------------------------------------------------------------------------------- /addon_starter/complete/resource_packs/aop_mobs/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/complete/resource_packs/aop_mobs/sounds.json -------------------------------------------------------------------------------- /addon_starter/complete/resource_packs/aop_mobs/texts/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/complete/resource_packs/aop_mobs/texts/en_US.lang -------------------------------------------------------------------------------- /addon_starter/complete/scripts/Utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/complete/scripts/Utilities.ts -------------------------------------------------------------------------------- /addon_starter/complete/scripts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/complete/scripts/main.ts -------------------------------------------------------------------------------- /addon_starter/complete/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/complete/tsconfig.json -------------------------------------------------------------------------------- /addon_starter/misc/bices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/misc/bices.png -------------------------------------------------------------------------------- /addon_starter/misc/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/misc/start.png -------------------------------------------------------------------------------- /addon_starter/start/.env: -------------------------------------------------------------------------------- 1 | PROJECT_NAME="aop_mobs" 2 | MINECRAFT_PRODUCT="BedrockGDK" 3 | CUSTOM_DEPLOYMENT_PATH="" -------------------------------------------------------------------------------- /addon_starter/start/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/start/.prettierrc.json -------------------------------------------------------------------------------- /addon_starter/start/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/start/.vscode/extensions.json -------------------------------------------------------------------------------- /addon_starter/start/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/start/.vscode/launch.json -------------------------------------------------------------------------------- /addon_starter/start/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/start/.vscode/settings.json -------------------------------------------------------------------------------- /addon_starter/start/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/start/.vscode/tasks.json -------------------------------------------------------------------------------- /addon_starter/start/behavior_packs/aop_mobs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/start/behavior_packs/aop_mobs/manifest.json -------------------------------------------------------------------------------- /addon_starter/start/behavior_packs/aop_mobs/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/start/behavior_packs/aop_mobs/pack_icon.png -------------------------------------------------------------------------------- /addon_starter/start/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/start/eslint.config.mjs -------------------------------------------------------------------------------- /addon_starter/start/just.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/start/just.config.ts -------------------------------------------------------------------------------- /addon_starter/start/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/start/package-lock.json -------------------------------------------------------------------------------- /addon_starter/start/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/start/package.json -------------------------------------------------------------------------------- /addon_starter/start/resource_packs/aop_mobs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/start/resource_packs/aop_mobs/manifest.json -------------------------------------------------------------------------------- /addon_starter/start/resource_packs/aop_mobs/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/start/resource_packs/aop_mobs/pack_icon.png -------------------------------------------------------------------------------- /addon_starter/start/scripts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/start/scripts/main.ts -------------------------------------------------------------------------------- /addon_starter/start/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/addon_starter/start/tsconfig.json -------------------------------------------------------------------------------- /behavior_pack_sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/behavior_pack_sample/README.md -------------------------------------------------------------------------------- /behavior_pack_sample/entities/cow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/behavior_pack_sample/entities/cow.json -------------------------------------------------------------------------------- /behavior_pack_sample/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/behavior_pack_sample/manifest.json -------------------------------------------------------------------------------- /behavior_pack_sample/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/behavior_pack_sample/pack_icon.png -------------------------------------------------------------------------------- /casual_creator/chill_dreams/1_dream_turkey/.env: -------------------------------------------------------------------------------- 1 | PROJECT_NAME="mamm_cds" 2 | MINECRAFT_PRODUCT="BedrockGDK" 3 | CUSTOM_DEPLOYMENT_PATH="" 4 | -------------------------------------------------------------------------------- /casual_creator/chill_dreams/1_dream_turkey/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/1_dream_turkey/.prettierrc.json -------------------------------------------------------------------------------- /casual_creator/chill_dreams/1_dream_turkey/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/1_dream_turkey/.vscode/extensions.json -------------------------------------------------------------------------------- /casual_creator/chill_dreams/1_dream_turkey/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/1_dream_turkey/.vscode/launch.json -------------------------------------------------------------------------------- /casual_creator/chill_dreams/1_dream_turkey/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/1_dream_turkey/.vscode/settings.json -------------------------------------------------------------------------------- /casual_creator/chill_dreams/1_dream_turkey/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/1_dream_turkey/.vscode/tasks.json -------------------------------------------------------------------------------- /casual_creator/chill_dreams/1_dream_turkey/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/1_dream_turkey/eslint.config.mjs -------------------------------------------------------------------------------- /casual_creator/chill_dreams/1_dream_turkey/just.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/1_dream_turkey/just.config.ts -------------------------------------------------------------------------------- /casual_creator/chill_dreams/1_dream_turkey/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/1_dream_turkey/package-lock.json -------------------------------------------------------------------------------- /casual_creator/chill_dreams/1_dream_turkey/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/1_dream_turkey/package.json -------------------------------------------------------------------------------- /casual_creator/chill_dreams/1_dream_turkey/scripts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/1_dream_turkey/scripts/main.ts -------------------------------------------------------------------------------- /casual_creator/chill_dreams/1_dream_turkey/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/1_dream_turkey/tsconfig.json -------------------------------------------------------------------------------- /casual_creator/chill_dreams/2_dreams_come_true/.env: -------------------------------------------------------------------------------- 1 | PROJECT_NAME="mamm_cds" 2 | MINECRAFT_PRODUCT="BedrockGDK" 3 | CUSTOM_DEPLOYMENT_PATH="" 4 | -------------------------------------------------------------------------------- /casual_creator/chill_dreams/2_dreams_come_true/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/2_dreams_come_true/.prettierrc.json -------------------------------------------------------------------------------- /casual_creator/chill_dreams/2_dreams_come_true/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/2_dreams_come_true/.vscode/extensions.json -------------------------------------------------------------------------------- /casual_creator/chill_dreams/2_dreams_come_true/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/2_dreams_come_true/.vscode/launch.json -------------------------------------------------------------------------------- /casual_creator/chill_dreams/2_dreams_come_true/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/2_dreams_come_true/.vscode/settings.json -------------------------------------------------------------------------------- /casual_creator/chill_dreams/2_dreams_come_true/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/2_dreams_come_true/.vscode/tasks.json -------------------------------------------------------------------------------- /casual_creator/chill_dreams/2_dreams_come_true/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/2_dreams_come_true/eslint.config.mjs -------------------------------------------------------------------------------- /casual_creator/chill_dreams/2_dreams_come_true/just.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/2_dreams_come_true/just.config.ts -------------------------------------------------------------------------------- /casual_creator/chill_dreams/2_dreams_come_true/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/2_dreams_come_true/package-lock.json -------------------------------------------------------------------------------- /casual_creator/chill_dreams/2_dreams_come_true/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/2_dreams_come_true/package.json -------------------------------------------------------------------------------- /casual_creator/chill_dreams/2_dreams_come_true/scripts/Dream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/2_dreams_come_true/scripts/Dream.ts -------------------------------------------------------------------------------- /casual_creator/chill_dreams/2_dreams_come_true/scripts/DreamTrack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/2_dreams_come_true/scripts/DreamTrack.ts -------------------------------------------------------------------------------- /casual_creator/chill_dreams/2_dreams_come_true/scripts/IVectorXZ.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/2_dreams_come_true/scripts/IVectorXZ.ts -------------------------------------------------------------------------------- /casual_creator/chill_dreams/2_dreams_come_true/scripts/Utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/2_dreams_come_true/scripts/Utilities.ts -------------------------------------------------------------------------------- /casual_creator/chill_dreams/2_dreams_come_true/scripts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/2_dreams_come_true/scripts/main.ts -------------------------------------------------------------------------------- /casual_creator/chill_dreams/2_dreams_come_true/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/2_dreams_come_true/tsconfig.json -------------------------------------------------------------------------------- /casual_creator/chill_dreams/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/README.md -------------------------------------------------------------------------------- /casual_creator/chill_dreams/complete/.env: -------------------------------------------------------------------------------- 1 | PROJECT_NAME="mamm_cds" 2 | MINECRAFT_PRODUCT="BedrockGDK" 3 | CUSTOM_DEPLOYMENT_PATH="" 4 | -------------------------------------------------------------------------------- /casual_creator/chill_dreams/complete/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/complete/.prettierrc.json -------------------------------------------------------------------------------- /casual_creator/chill_dreams/complete/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/complete/.vscode/extensions.json -------------------------------------------------------------------------------- /casual_creator/chill_dreams/complete/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/complete/.vscode/launch.json -------------------------------------------------------------------------------- /casual_creator/chill_dreams/complete/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/complete/.vscode/settings.json -------------------------------------------------------------------------------- /casual_creator/chill_dreams/complete/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/complete/.vscode/tasks.json -------------------------------------------------------------------------------- /casual_creator/chill_dreams/complete/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/complete/eslint.config.mjs -------------------------------------------------------------------------------- /casual_creator/chill_dreams/complete/just.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/complete/just.config.ts -------------------------------------------------------------------------------- /casual_creator/chill_dreams/complete/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/complete/package-lock.json -------------------------------------------------------------------------------- /casual_creator/chill_dreams/complete/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/complete/package.json -------------------------------------------------------------------------------- /casual_creator/chill_dreams/complete/resource_packs/mamm_cds/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/complete/resource_packs/mamm_cds/sounds.json -------------------------------------------------------------------------------- /casual_creator/chill_dreams/complete/scripts/Dream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/complete/scripts/Dream.ts -------------------------------------------------------------------------------- /casual_creator/chill_dreams/complete/scripts/DreamTrack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/complete/scripts/DreamTrack.ts -------------------------------------------------------------------------------- /casual_creator/chill_dreams/complete/scripts/IDreamReference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/complete/scripts/IDreamReference.ts -------------------------------------------------------------------------------- /casual_creator/chill_dreams/complete/scripts/IMemory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/complete/scripts/IMemory.ts -------------------------------------------------------------------------------- /casual_creator/chill_dreams/complete/scripts/IMemorySet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/complete/scripts/IMemorySet.ts -------------------------------------------------------------------------------- /casual_creator/chill_dreams/complete/scripts/IPlayerSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/complete/scripts/IPlayerSettings.ts -------------------------------------------------------------------------------- /casual_creator/chill_dreams/complete/scripts/IVectorXZ.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/complete/scripts/IVectorXZ.ts -------------------------------------------------------------------------------- /casual_creator/chill_dreams/complete/scripts/Memory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/complete/scripts/Memory.ts -------------------------------------------------------------------------------- /casual_creator/chill_dreams/complete/scripts/MemorySet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/complete/scripts/MemorySet.ts -------------------------------------------------------------------------------- /casual_creator/chill_dreams/complete/scripts/Utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/complete/scripts/Utilities.ts -------------------------------------------------------------------------------- /casual_creator/chill_dreams/complete/scripts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/complete/scripts/main.ts -------------------------------------------------------------------------------- /casual_creator/chill_dreams/complete/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/chill_dreams/complete/tsconfig.json -------------------------------------------------------------------------------- /casual_creator/concerts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/concerts/README.md -------------------------------------------------------------------------------- /casual_creator/custom_cat_eliza/.env: -------------------------------------------------------------------------------- 1 | PROJECT_NAME="mike_eliz" 2 | MINECRAFT_PRODUCT="BedrockGDK" 3 | CUSTOM_DEPLOYMENT_PATH="" 4 | -------------------------------------------------------------------------------- /casual_creator/custom_cat_eliza/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/custom_cat_eliza/.prettierrc.json -------------------------------------------------------------------------------- /casual_creator/custom_cat_eliza/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/custom_cat_eliza/.vscode/extensions.json -------------------------------------------------------------------------------- /casual_creator/custom_cat_eliza/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/custom_cat_eliza/.vscode/launch.json -------------------------------------------------------------------------------- /casual_creator/custom_cat_eliza/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/custom_cat_eliza/.vscode/settings.json -------------------------------------------------------------------------------- /casual_creator/custom_cat_eliza/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/custom_cat_eliza/.vscode/tasks.json -------------------------------------------------------------------------------- /casual_creator/custom_cat_eliza/assets/models/eliza.geo.bbmodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/custom_cat_eliza/assets/models/eliza.geo.bbmodel -------------------------------------------------------------------------------- /casual_creator/custom_cat_eliza/assets/sound/meow.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/custom_cat_eliza/assets/sound/meow.mp3 -------------------------------------------------------------------------------- /casual_creator/custom_cat_eliza/assets/sound/meow.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/custom_cat_eliza/assets/sound/meow.ogg -------------------------------------------------------------------------------- /casual_creator/custom_cat_eliza/behavior_packs/mike_eliz/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/custom_cat_eliza/behavior_packs/mike_eliz/manifest.json -------------------------------------------------------------------------------- /casual_creator/custom_cat_eliza/behavior_packs/mike_eliz/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/custom_cat_eliza/behavior_packs/mike_eliz/pack_icon.png -------------------------------------------------------------------------------- /casual_creator/custom_cat_eliza/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/custom_cat_eliza/eslint.config.mjs -------------------------------------------------------------------------------- /casual_creator/custom_cat_eliza/just.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/custom_cat_eliza/just.config.ts -------------------------------------------------------------------------------- /casual_creator/custom_cat_eliza/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/custom_cat_eliza/package-lock.json -------------------------------------------------------------------------------- /casual_creator/custom_cat_eliza/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/custom_cat_eliza/package.json -------------------------------------------------------------------------------- /casual_creator/custom_cat_eliza/resource_packs/mike_eliz/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/custom_cat_eliza/resource_packs/mike_eliz/manifest.json -------------------------------------------------------------------------------- /casual_creator/custom_cat_eliza/resource_packs/mike_eliz/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/custom_cat_eliza/resource_packs/mike_eliz/pack_icon.png -------------------------------------------------------------------------------- /casual_creator/custom_cat_eliza/resource_packs/mike_eliz/sounds/meow.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/custom_cat_eliza/resource_packs/mike_eliz/sounds/meow.ogg -------------------------------------------------------------------------------- /casual_creator/custom_cat_eliza/scripts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/custom_cat_eliza/scripts/main.ts -------------------------------------------------------------------------------- /casual_creator/custom_cat_eliza/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/custom_cat_eliza/tsconfig.json -------------------------------------------------------------------------------- /casual_creator/gray_wave/.env: -------------------------------------------------------------------------------- 1 | PROJECT_NAME="mikeamm_gwve" 2 | MINECRAFT_PRODUCT="BedrockGDK" 3 | CUSTOM_DEPLOYMENT_PATH="" 4 | -------------------------------------------------------------------------------- /casual_creator/gray_wave/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/gray_wave/.prettierrc.json -------------------------------------------------------------------------------- /casual_creator/gray_wave/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/gray_wave/.vscode/extensions.json -------------------------------------------------------------------------------- /casual_creator/gray_wave/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/gray_wave/.vscode/launch.json -------------------------------------------------------------------------------- /casual_creator/gray_wave/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/gray_wave/.vscode/settings.json -------------------------------------------------------------------------------- /casual_creator/gray_wave/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/gray_wave/.vscode/tasks.json -------------------------------------------------------------------------------- /casual_creator/gray_wave/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/gray_wave/README.md -------------------------------------------------------------------------------- /casual_creator/gray_wave/behavior_packs/mikeamm_gwve/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/gray_wave/behavior_packs/mikeamm_gwve/manifest.json -------------------------------------------------------------------------------- /casual_creator/gray_wave/behavior_packs/mikeamm_gwve/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/gray_wave/behavior_packs/mikeamm_gwve/pack_icon.png -------------------------------------------------------------------------------- /casual_creator/gray_wave/docs/axe_recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/gray_wave/docs/axe_recipe.png -------------------------------------------------------------------------------- /casual_creator/gray_wave/docs/bow_recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/gray_wave/docs/bow_recipe.png -------------------------------------------------------------------------------- /casual_creator/gray_wave/docs/crossbow_recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/gray_wave/docs/crossbow_recipe.png -------------------------------------------------------------------------------- /casual_creator/gray_wave/docs/damaged_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/gray_wave/docs/damaged_bow.png -------------------------------------------------------------------------------- /casual_creator/gray_wave/docs/depletedgrayshard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/gray_wave/docs/depletedgrayshard.png -------------------------------------------------------------------------------- /casual_creator/gray_wave/docs/fabricator_recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/gray_wave/docs/fabricator_recipe.png -------------------------------------------------------------------------------- /casual_creator/gray_wave/docs/generator_recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/gray_wave/docs/generator_recipe.png -------------------------------------------------------------------------------- /casual_creator/gray_wave/docs/grayore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/gray_wave/docs/grayore.png -------------------------------------------------------------------------------- /casual_creator/gray_wave/docs/gwm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/gray_wave/docs/gwm.png -------------------------------------------------------------------------------- /casual_creator/gray_wave/docs/items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/gray_wave/docs/items.png -------------------------------------------------------------------------------- /casual_creator/gray_wave/docs/shbullet_recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/gray_wave/docs/shbullet_recipe.png -------------------------------------------------------------------------------- /casual_creator/gray_wave/docs/smfireball_recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/gray_wave/docs/smfireball_recipe.png -------------------------------------------------------------------------------- /casual_creator/gray_wave/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/gray_wave/eslint.config.mjs -------------------------------------------------------------------------------- /casual_creator/gray_wave/just.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/gray_wave/just.config.ts -------------------------------------------------------------------------------- /casual_creator/gray_wave/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/gray_wave/package-lock.json -------------------------------------------------------------------------------- /casual_creator/gray_wave/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/gray_wave/package.json -------------------------------------------------------------------------------- /casual_creator/gray_wave/resource_packs/mikeamm_gwve/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/gray_wave/resource_packs/mikeamm_gwve/blocks.json -------------------------------------------------------------------------------- /casual_creator/gray_wave/resource_packs/mikeamm_gwve/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/gray_wave/resource_packs/mikeamm_gwve/manifest.json -------------------------------------------------------------------------------- /casual_creator/gray_wave/resource_packs/mikeamm_gwve/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/gray_wave/resource_packs/mikeamm_gwve/pack_icon.png -------------------------------------------------------------------------------- /casual_creator/gray_wave/resource_packs/mikeamm_gwve/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/gray_wave/resource_packs/mikeamm_gwve/sounds.json -------------------------------------------------------------------------------- /casual_creator/gray_wave/resource_packs/mikeamm_gwve/texts/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/gray_wave/resource_packs/mikeamm_gwve/texts/en_US.lang -------------------------------------------------------------------------------- /casual_creator/gray_wave/scripts/GrayWaveManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/gray_wave/scripts/GrayWaveManager.ts -------------------------------------------------------------------------------- /casual_creator/gray_wave/scripts/Utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/gray_wave/scripts/Utilities.ts -------------------------------------------------------------------------------- /casual_creator/gray_wave/scripts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/gray_wave/scripts/main.ts -------------------------------------------------------------------------------- /casual_creator/gray_wave/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/casual_creator/gray_wave/tsconfig.json -------------------------------------------------------------------------------- /chill_oasis_blocks_and_features/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/chill_oasis_blocks_and_features/.vscode/extensions.json -------------------------------------------------------------------------------- /chill_oasis_blocks_and_features/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/chill_oasis_blocks_and_features/.vscode/launch.json -------------------------------------------------------------------------------- /chill_oasis_blocks_and_features/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/chill_oasis_blocks_and_features/.vscode/settings.json -------------------------------------------------------------------------------- /chill_oasis_blocks_and_features/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/chill_oasis_blocks_and_features/.vscode/tasks.json -------------------------------------------------------------------------------- /chill_oasis_blocks_and_features/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/chill_oasis_blocks_and_features/README.md -------------------------------------------------------------------------------- /chill_oasis_blocks_and_features/chill_oasis_assets/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/chill_oasis_blocks_and_features/chill_oasis_assets/.env -------------------------------------------------------------------------------- /chill_oasis_blocks_and_features/chill_oasis_assets/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/chill_oasis_blocks_and_features/chill_oasis_assets/.prettierrc.json -------------------------------------------------------------------------------- /chill_oasis_blocks_and_features/chill_oasis_assets/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/chill_oasis_blocks_and_features/chill_oasis_assets/.vscode/launch.json -------------------------------------------------------------------------------- /chill_oasis_blocks_and_features/chill_oasis_assets/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/chill_oasis_blocks_and_features/chill_oasis_assets/.vscode/settings.json -------------------------------------------------------------------------------- /chill_oasis_blocks_and_features/chill_oasis_assets/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/chill_oasis_blocks_and_features/chill_oasis_assets/.vscode/tasks.json -------------------------------------------------------------------------------- /chill_oasis_blocks_and_features/chill_oasis_assets/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/chill_oasis_blocks_and_features/chill_oasis_assets/eslint.config.mjs -------------------------------------------------------------------------------- /chill_oasis_blocks_and_features/chill_oasis_assets/just.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/chill_oasis_blocks_and_features/chill_oasis_assets/just.config.ts -------------------------------------------------------------------------------- /chill_oasis_blocks_and_features/chill_oasis_assets/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/chill_oasis_blocks_and_features/chill_oasis_assets/package-lock.json -------------------------------------------------------------------------------- /chill_oasis_blocks_and_features/chill_oasis_assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/chill_oasis_blocks_and_features/chill_oasis_assets/package.json -------------------------------------------------------------------------------- /chill_oasis_blocks_and_features/chill_oasis_assets/scripts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/chill_oasis_blocks_and_features/chill_oasis_assets/scripts/main.ts -------------------------------------------------------------------------------- /chill_oasis_blocks_and_features/chill_oasis_assets/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/chill_oasis_blocks_and_features/chill_oasis_assets/tsconfig.json -------------------------------------------------------------------------------- /chill_oasis_blocks_and_features/chill_oasis_biome/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/chill_oasis_blocks_and_features/chill_oasis_biome/.env -------------------------------------------------------------------------------- /chill_oasis_blocks_and_features/chill_oasis_biome/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/chill_oasis_blocks_and_features/chill_oasis_biome/.prettierrc.json -------------------------------------------------------------------------------- /chill_oasis_blocks_and_features/chill_oasis_biome/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/chill_oasis_blocks_and_features/chill_oasis_biome/.vscode/launch.json -------------------------------------------------------------------------------- /chill_oasis_blocks_and_features/chill_oasis_biome/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/chill_oasis_blocks_and_features/chill_oasis_biome/.vscode/settings.json -------------------------------------------------------------------------------- /chill_oasis_blocks_and_features/chill_oasis_biome/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/chill_oasis_blocks_and_features/chill_oasis_biome/.vscode/tasks.json -------------------------------------------------------------------------------- /chill_oasis_blocks_and_features/chill_oasis_biome/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/chill_oasis_blocks_and_features/chill_oasis_biome/eslint.config.mjs -------------------------------------------------------------------------------- /chill_oasis_blocks_and_features/chill_oasis_biome/just.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/chill_oasis_blocks_and_features/chill_oasis_biome/just.config.ts -------------------------------------------------------------------------------- /chill_oasis_blocks_and_features/chill_oasis_biome/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/chill_oasis_blocks_and_features/chill_oasis_biome/package-lock.json -------------------------------------------------------------------------------- /chill_oasis_blocks_and_features/chill_oasis_biome/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/chill_oasis_blocks_and_features/chill_oasis_biome/package.json -------------------------------------------------------------------------------- /chill_oasis_blocks_and_features/chill_oasis_biome/scripts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/chill_oasis_blocks_and_features/chill_oasis_biome/scripts/main.ts -------------------------------------------------------------------------------- /chill_oasis_blocks_and_features/chill_oasis_biome/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/chill_oasis_blocks_and_features/chill_oasis_biome/tsconfig.json -------------------------------------------------------------------------------- /configurable_packs/.env: -------------------------------------------------------------------------------- 1 | PROJECT_NAME="configurable_pack" 2 | MINECRAFT_PRODUCT="BedrockGDK" 3 | CUSTOM_DEPLOYMENT_PATH="" 4 | -------------------------------------------------------------------------------- /configurable_packs/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/configurable_packs/.prettierrc.json -------------------------------------------------------------------------------- /configurable_packs/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/configurable_packs/.vscode/extensions.json -------------------------------------------------------------------------------- /configurable_packs/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/configurable_packs/.vscode/launch.json -------------------------------------------------------------------------------- /configurable_packs/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/configurable_packs/.vscode/settings.json -------------------------------------------------------------------------------- /configurable_packs/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/configurable_packs/.vscode/tasks.json -------------------------------------------------------------------------------- /configurable_packs/behavior_packs/configurable_pack/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/configurable_packs/behavior_packs/configurable_pack/manifest.json -------------------------------------------------------------------------------- /configurable_packs/behavior_packs/configurable_pack/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/configurable_packs/behavior_packs/configurable_pack/pack_icon.png -------------------------------------------------------------------------------- /configurable_packs/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/configurable_packs/eslint.config.mjs -------------------------------------------------------------------------------- /configurable_packs/just.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/configurable_packs/just.config.ts -------------------------------------------------------------------------------- /configurable_packs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/configurable_packs/package-lock.json -------------------------------------------------------------------------------- /configurable_packs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/configurable_packs/package.json -------------------------------------------------------------------------------- /configurable_packs/resource_packs/configurable_pack/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/configurable_packs/resource_packs/configurable_pack/manifest.json -------------------------------------------------------------------------------- /configurable_packs/resource_packs/configurable_pack/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/configurable_packs/resource_packs/configurable_pack/pack_icon.png -------------------------------------------------------------------------------- /configurable_packs/scripts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/configurable_packs/scripts/main.ts -------------------------------------------------------------------------------- /configurable_packs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/configurable_packs/tsconfig.json -------------------------------------------------------------------------------- /creator_camp/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/creator_camp/.env -------------------------------------------------------------------------------- /creator_camp/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/creator_camp/.prettierrc.json -------------------------------------------------------------------------------- /creator_camp/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/creator_camp/.vscode/extensions.json -------------------------------------------------------------------------------- /creator_camp/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/creator_camp/.vscode/launch.json -------------------------------------------------------------------------------- /creator_camp/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/creator_camp/.vscode/settings.json -------------------------------------------------------------------------------- /creator_camp/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/creator_camp/.vscode/tasks.json -------------------------------------------------------------------------------- /creator_camp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/creator_camp/README.md -------------------------------------------------------------------------------- /creator_camp/behavior_packs/creator_camp/blocks/leaf_pile.block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/creator_camp/behavior_packs/creator_camp/blocks/leaf_pile.block.json -------------------------------------------------------------------------------- /creator_camp/behavior_packs/creator_camp/entities/campghost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/creator_camp/behavior_packs/creator_camp/entities/campghost.json -------------------------------------------------------------------------------- /creator_camp/behavior_packs/creator_camp/features/camp_tree_feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/creator_camp/behavior_packs/creator_camp/features/camp_tree_feature.json -------------------------------------------------------------------------------- /creator_camp/behavior_packs/creator_camp/items/bag_o_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/creator_camp/behavior_packs/creator_camp/items/bag_o_leaves.json -------------------------------------------------------------------------------- /creator_camp/behavior_packs/creator_camp/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/creator_camp/behavior_packs/creator_camp/manifest.json -------------------------------------------------------------------------------- /creator_camp/behavior_packs/creator_camp/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/creator_camp/behavior_packs/creator_camp/pack_icon.png -------------------------------------------------------------------------------- /creator_camp/behavior_packs/creator_camp/spawn_rules/campghost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/creator_camp/behavior_packs/creator_camp/spawn_rules/campghost.json -------------------------------------------------------------------------------- /creator_camp/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/creator_camp/eslint.config.mjs -------------------------------------------------------------------------------- /creator_camp/just.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/creator_camp/just.config.ts -------------------------------------------------------------------------------- /creator_camp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/creator_camp/package-lock.json -------------------------------------------------------------------------------- /creator_camp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/creator_camp/package.json -------------------------------------------------------------------------------- /creator_camp/resource_packs/creator_camp/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/creator_camp/resource_packs/creator_camp/blocks.json -------------------------------------------------------------------------------- /creator_camp/resource_packs/creator_camp/entity/campghost.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/creator_camp/resource_packs/creator_camp/entity/campghost.entity.json -------------------------------------------------------------------------------- /creator_camp/resource_packs/creator_camp/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/creator_camp/resource_packs/creator_camp/manifest.json -------------------------------------------------------------------------------- /creator_camp/resource_packs/creator_camp/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/creator_camp/resource_packs/creator_camp/pack_icon.png -------------------------------------------------------------------------------- /creator_camp/resource_packs/creator_camp/sounds/scary.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/creator_camp/resource_packs/creator_camp/sounds/scary.ogg -------------------------------------------------------------------------------- /creator_camp/resource_packs/creator_camp/sounds/sound_definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/creator_camp/resource_packs/creator_camp/sounds/sound_definitions.json -------------------------------------------------------------------------------- /creator_camp/resource_packs/creator_camp/texts/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/creator_camp/resource_packs/creator_camp/texts/en_US.lang -------------------------------------------------------------------------------- /creator_camp/resource_packs/creator_camp/textures/blocks/leaf_pile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/creator_camp/resource_packs/creator_camp/textures/blocks/leaf_pile.png -------------------------------------------------------------------------------- /creator_camp/resource_packs/creator_camp/textures/item_texture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/creator_camp/resource_packs/creator_camp/textures/item_texture.json -------------------------------------------------------------------------------- /creator_camp/resource_packs/creator_camp/textures/items/leaf_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/creator_camp/resource_packs/creator_camp/textures/items/leaf_bag.png -------------------------------------------------------------------------------- /creator_camp/resource_packs/creator_camp/textures/terrain_texture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/creator_camp/resource_packs/creator_camp/textures/terrain_texture.json -------------------------------------------------------------------------------- /creator_camp/scripts/CommonUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/creator_camp/scripts/CommonUtils.ts -------------------------------------------------------------------------------- /creator_camp/scripts/LeafPileInteractionCustomComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/creator_camp/scripts/LeafPileInteractionCustomComponent.ts -------------------------------------------------------------------------------- /creator_camp/scripts/ThrowLeavesCustomComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/creator_camp/scripts/ThrowLeavesCustomComponent.ts -------------------------------------------------------------------------------- /creator_camp/scripts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/creator_camp/scripts/main.ts -------------------------------------------------------------------------------- /creator_camp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/creator_camp/tsconfig.json -------------------------------------------------------------------------------- /culled_block_sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/culled_block_sample/README.md -------------------------------------------------------------------------------- /culled_block_sample/culled_block_behavior_pack/blocks/tuna_roll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/culled_block_sample/culled_block_behavior_pack/blocks/tuna_roll.json -------------------------------------------------------------------------------- /culled_block_sample/culled_block_behavior_pack/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/culled_block_sample/culled_block_behavior_pack/manifest.json -------------------------------------------------------------------------------- /culled_block_sample/culled_block_resource_pack/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/culled_block_sample/culled_block_resource_pack/blocks.json -------------------------------------------------------------------------------- /culled_block_sample/culled_block_resource_pack/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/culled_block_sample/culled_block_resource_pack/manifest.json -------------------------------------------------------------------------------- /culled_block_sample/culled_block_resource_pack/texts/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/culled_block_sample/culled_block_resource_pack/texts/en_US.lang -------------------------------------------------------------------------------- /culled_block_sample/install_uwp.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/culled_block_sample/install_uwp.cmd -------------------------------------------------------------------------------- /custom_blocks/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_blocks/.env -------------------------------------------------------------------------------- /custom_blocks/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_blocks/.prettierrc.json -------------------------------------------------------------------------------- /custom_blocks/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_blocks/.vscode/extensions.json -------------------------------------------------------------------------------- /custom_blocks/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_blocks/.vscode/launch.json -------------------------------------------------------------------------------- /custom_blocks/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_blocks/.vscode/settings.json -------------------------------------------------------------------------------- /custom_blocks/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_blocks/.vscode/tasks.json -------------------------------------------------------------------------------- /custom_blocks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_blocks/README.md -------------------------------------------------------------------------------- /custom_blocks/behavior_packs/custom_blocks/blocks/blue_bubble_fish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_blocks/behavior_packs/custom_blocks/blocks/blue_bubble_fish.json -------------------------------------------------------------------------------- /custom_blocks/behavior_packs/custom_blocks/blocks/california_roll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_blocks/behavior_packs/custom_blocks/blocks/california_roll.json -------------------------------------------------------------------------------- /custom_blocks/behavior_packs/custom_blocks/blocks/die.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_blocks/behavior_packs/custom_blocks/blocks/die.json -------------------------------------------------------------------------------- /custom_blocks/behavior_packs/custom_blocks/blocks/green_bubble_fish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_blocks/behavior_packs/custom_blocks/blocks/green_bubble_fish.json -------------------------------------------------------------------------------- /custom_blocks/behavior_packs/custom_blocks/blocks/salmon_roll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_blocks/behavior_packs/custom_blocks/blocks/salmon_roll.json -------------------------------------------------------------------------------- /custom_blocks/behavior_packs/custom_blocks/blocks/tuna_roll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_blocks/behavior_packs/custom_blocks/blocks/tuna_roll.json -------------------------------------------------------------------------------- /custom_blocks/behavior_packs/custom_blocks/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_blocks/behavior_packs/custom_blocks/manifest.json -------------------------------------------------------------------------------- /custom_blocks/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_blocks/eslint.config.mjs -------------------------------------------------------------------------------- /custom_blocks/just.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_blocks/just.config.ts -------------------------------------------------------------------------------- /custom_blocks/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_blocks/package-lock.json -------------------------------------------------------------------------------- /custom_blocks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_blocks/package.json -------------------------------------------------------------------------------- /custom_blocks/resource_packs/custom_blocks/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_blocks/resource_packs/custom_blocks/blocks.json -------------------------------------------------------------------------------- /custom_blocks/resource_packs/custom_blocks/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_blocks/resource_packs/custom_blocks/manifest.json -------------------------------------------------------------------------------- /custom_blocks/resource_packs/custom_blocks/models/blocks/bubble.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_blocks/resource_packs/custom_blocks/models/blocks/bubble.geo.json -------------------------------------------------------------------------------- /custom_blocks/resource_packs/custom_blocks/models/blocks/sushi.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_blocks/resource_packs/custom_blocks/models/blocks/sushi.geo.json -------------------------------------------------------------------------------- /custom_blocks/resource_packs/custom_blocks/texts/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_blocks/resource_packs/custom_blocks/texts/en_US.lang -------------------------------------------------------------------------------- /custom_blocks/resource_packs/custom_blocks/textures/blocks/die_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_blocks/resource_packs/custom_blocks/textures/blocks/die_1.png -------------------------------------------------------------------------------- /custom_blocks/resource_packs/custom_blocks/textures/blocks/die_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_blocks/resource_packs/custom_blocks/textures/blocks/die_2.png -------------------------------------------------------------------------------- /custom_blocks/resource_packs/custom_blocks/textures/blocks/die_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_blocks/resource_packs/custom_blocks/textures/blocks/die_3.png -------------------------------------------------------------------------------- /custom_blocks/resource_packs/custom_blocks/textures/blocks/die_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_blocks/resource_packs/custom_blocks/textures/blocks/die_4.png -------------------------------------------------------------------------------- /custom_blocks/resource_packs/custom_blocks/textures/blocks/die_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_blocks/resource_packs/custom_blocks/textures/blocks/die_5.png -------------------------------------------------------------------------------- /custom_blocks/resource_packs/custom_blocks/textures/blocks/die_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_blocks/resource_packs/custom_blocks/textures/blocks/die_6.png -------------------------------------------------------------------------------- /custom_blocks/resource_packs/custom_blocks/textures/blocks/die_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_blocks/resource_packs/custom_blocks/textures/blocks/die_red.png -------------------------------------------------------------------------------- /custom_blocks/resource_packs/custom_blocks/textures/blocks/tuna_roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_blocks/resource_packs/custom_blocks/textures/blocks/tuna_roll.png -------------------------------------------------------------------------------- /custom_blocks/resource_packs/custom_blocks/textures/terrain_texture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_blocks/resource_packs/custom_blocks/textures/terrain_texture.json -------------------------------------------------------------------------------- /custom_blocks/scripts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_blocks/scripts/main.ts -------------------------------------------------------------------------------- /custom_blocks/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_blocks/tsconfig.json -------------------------------------------------------------------------------- /custom_features/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_features/README.md -------------------------------------------------------------------------------- /custom_features/basic_orange_ore/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_features/basic_orange_ore/.env -------------------------------------------------------------------------------- /custom_features/basic_orange_ore/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_features/basic_orange_ore/.prettierrc.json -------------------------------------------------------------------------------- /custom_features/basic_orange_ore/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_features/basic_orange_ore/.vscode/extensions.json -------------------------------------------------------------------------------- /custom_features/basic_orange_ore/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_features/basic_orange_ore/.vscode/launch.json -------------------------------------------------------------------------------- /custom_features/basic_orange_ore/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_features/basic_orange_ore/.vscode/settings.json -------------------------------------------------------------------------------- /custom_features/basic_orange_ore/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_features/basic_orange_ore/eslint.config.mjs -------------------------------------------------------------------------------- /custom_features/basic_orange_ore/just.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_features/basic_orange_ore/just.config.ts -------------------------------------------------------------------------------- /custom_features/basic_orange_ore/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_features/basic_orange_ore/package-lock.json -------------------------------------------------------------------------------- /custom_features/basic_orange_ore/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_features/basic_orange_ore/package.json -------------------------------------------------------------------------------- /custom_features/basic_orange_ore/scripts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_features/basic_orange_ore/scripts/main.ts -------------------------------------------------------------------------------- /custom_features/basic_orange_ore/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_features/basic_orange_ore/tsconfig.json -------------------------------------------------------------------------------- /custom_features/example_feature_set/.env: -------------------------------------------------------------------------------- 1 | PROJECT_NAME="example_feature_set" 2 | MINECRAFT_PRODUCT="BedrockGDK" 3 | CUSTOM_DEPLOYMENT_PATH="" -------------------------------------------------------------------------------- /custom_features/example_feature_set/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_features/example_feature_set/.prettierrc.json -------------------------------------------------------------------------------- /custom_features/example_feature_set/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_features/example_feature_set/.vscode/extensions.json -------------------------------------------------------------------------------- /custom_features/example_feature_set/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_features/example_feature_set/.vscode/launch.json -------------------------------------------------------------------------------- /custom_features/example_feature_set/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_features/example_feature_set/.vscode/settings.json -------------------------------------------------------------------------------- /custom_features/example_feature_set/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_features/example_feature_set/eslint.config.mjs -------------------------------------------------------------------------------- /custom_features/example_feature_set/just.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_features/example_feature_set/just.config.ts -------------------------------------------------------------------------------- /custom_features/example_feature_set/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_features/example_feature_set/package-lock.json -------------------------------------------------------------------------------- /custom_features/example_feature_set/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_features/example_feature_set/package.json -------------------------------------------------------------------------------- /custom_features/example_feature_set/scripts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_features/example_feature_set/scripts/main.ts -------------------------------------------------------------------------------- /custom_features/example_feature_set/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_features/example_feature_set/tsconfig.json -------------------------------------------------------------------------------- /custom_items/.env: -------------------------------------------------------------------------------- 1 | PROJECT_NAME="custom_item" 2 | MINECRAFT_PRODUCT="BedrockGDK" 3 | CUSTOM_DEPLOYMENT_PATH="" -------------------------------------------------------------------------------- /custom_items/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/.prettierrc.json -------------------------------------------------------------------------------- /custom_items/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/.vscode/extensions.json -------------------------------------------------------------------------------- /custom_items/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/.vscode/launch.json -------------------------------------------------------------------------------- /custom_items/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/.vscode/settings.json -------------------------------------------------------------------------------- /custom_items/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/README.md -------------------------------------------------------------------------------- /custom_items/behavior_packs/custom_item/items/chestplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/behavior_packs/custom_item/items/chestplate.json -------------------------------------------------------------------------------- /custom_items/behavior_packs/custom_item/items/crown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/behavior_packs/custom_item/items/crown.json -------------------------------------------------------------------------------- /custom_items/behavior_packs/custom_item/items/goo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/behavior_packs/custom_item/items/goo.json -------------------------------------------------------------------------------- /custom_items/behavior_packs/custom_item/items/my_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/behavior_packs/custom_item/items/my_boots.json -------------------------------------------------------------------------------- /custom_items/behavior_packs/custom_item/items/my_helm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/behavior_packs/custom_item/items/my_helm.json -------------------------------------------------------------------------------- /custom_items/behavior_packs/custom_item/items/my_leggings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/behavior_packs/custom_item/items/my_leggings.json -------------------------------------------------------------------------------- /custom_items/behavior_packs/custom_item/items/my_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/behavior_packs/custom_item/items/my_sword.json -------------------------------------------------------------------------------- /custom_items/behavior_packs/custom_item/items/my_sword_chuck.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/behavior_packs/custom_item/items/my_sword_chuck.json -------------------------------------------------------------------------------- /custom_items/behavior_packs/custom_item/items/my_sword_shoot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/behavior_packs/custom_item/items/my_sword_shoot.json -------------------------------------------------------------------------------- /custom_items/behavior_packs/custom_item/items/my_sword_singing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/behavior_packs/custom_item/items/my_sword_singing.json -------------------------------------------------------------------------------- /custom_items/behavior_packs/custom_item/items/my_sword_turtle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/behavior_packs/custom_item/items/my_sword_turtle.json -------------------------------------------------------------------------------- /custom_items/behavior_packs/custom_item/items/my_sword_weak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/behavior_packs/custom_item/items/my_sword_weak.json -------------------------------------------------------------------------------- /custom_items/behavior_packs/custom_item/items/wrench.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/behavior_packs/custom_item/items/wrench.json -------------------------------------------------------------------------------- /custom_items/behavior_packs/custom_item/loot_tables/test_loot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/behavior_packs/custom_item/loot_tables/test_loot.json -------------------------------------------------------------------------------- /custom_items/behavior_packs/custom_item/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/behavior_packs/custom_item/manifest.json -------------------------------------------------------------------------------- /custom_items/behavior_packs/custom_item/recipes/my_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/behavior_packs/custom_item/recipes/my_sword.json -------------------------------------------------------------------------------- /custom_items/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/eslint.config.mjs -------------------------------------------------------------------------------- /custom_items/just.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/just.config.ts -------------------------------------------------------------------------------- /custom_items/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/package-lock.json -------------------------------------------------------------------------------- /custom_items/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/package.json -------------------------------------------------------------------------------- /custom_items/resource_packs/custom_item/animations/first_person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/resource_packs/custom_item/animations/first_person.json -------------------------------------------------------------------------------- /custom_items/resource_packs/custom_item/animations/right_arm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/resource_packs/custom_item/animations/right_arm.json -------------------------------------------------------------------------------- /custom_items/resource_packs/custom_item/attachables/crown.player.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/resource_packs/custom_item/attachables/crown.player.json -------------------------------------------------------------------------------- /custom_items/resource_packs/custom_item/attachables/my_chestplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/resource_packs/custom_item/attachables/my_chestplate.json -------------------------------------------------------------------------------- /custom_items/resource_packs/custom_item/attachables/my_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/resource_packs/custom_item/attachables/my_feet.json -------------------------------------------------------------------------------- /custom_items/resource_packs/custom_item/attachables/my_helm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/resource_packs/custom_item/attachables/my_helm.json -------------------------------------------------------------------------------- /custom_items/resource_packs/custom_item/attachables/my_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/resource_packs/custom_item/attachables/my_legs.json -------------------------------------------------------------------------------- /custom_items/resource_packs/custom_item/attachables/wrench.player.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/resource_packs/custom_item/attachables/wrench.player.json -------------------------------------------------------------------------------- /custom_items/resource_packs/custom_item/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/resource_packs/custom_item/manifest.json -------------------------------------------------------------------------------- /custom_items/resource_packs/custom_item/models/entity/crown.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/resource_packs/custom_item/models/entity/crown.geo.json -------------------------------------------------------------------------------- /custom_items/resource_packs/custom_item/models/entity/wrench.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/resource_packs/custom_item/models/entity/wrench.geo.json -------------------------------------------------------------------------------- /custom_items/resource_packs/custom_item/texts/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/resource_packs/custom_item/texts/en_US.lang -------------------------------------------------------------------------------- /custom_items/resource_packs/custom_item/textures/item_texture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/resource_packs/custom_item/textures/item_texture.json -------------------------------------------------------------------------------- /custom_items/resource_packs/custom_item/textures/items/crown_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/resource_packs/custom_item/textures/items/crown_ico.png -------------------------------------------------------------------------------- /custom_items/resource_packs/custom_item/textures/items/custom_boots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/resource_packs/custom_item/textures/items/custom_boots.png -------------------------------------------------------------------------------- /custom_items/resource_packs/custom_item/textures/items/custom_helmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/resource_packs/custom_item/textures/items/custom_helmet.png -------------------------------------------------------------------------------- /custom_items/resource_packs/custom_item/textures/items/goo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/resource_packs/custom_item/textures/items/goo.png -------------------------------------------------------------------------------- /custom_items/resource_packs/custom_item/textures/items/my_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/resource_packs/custom_item/textures/items/my_sword.png -------------------------------------------------------------------------------- /custom_items/resource_packs/custom_item/textures/items/my_sword1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/resource_packs/custom_item/textures/items/my_sword1.png -------------------------------------------------------------------------------- /custom_items/resource_packs/custom_item/textures/items/my_sword2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/resource_packs/custom_item/textures/items/my_sword2.png -------------------------------------------------------------------------------- /custom_items/resource_packs/custom_item/textures/items/wrench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/resource_packs/custom_item/textures/items/wrench.png -------------------------------------------------------------------------------- /custom_items/resource_packs/custom_item/textures/items/wrench_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/resource_packs/custom_item/textures/items/wrench_ico.png -------------------------------------------------------------------------------- /custom_items/scripts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/scripts/main.ts -------------------------------------------------------------------------------- /custom_items/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_items/tsconfig.json -------------------------------------------------------------------------------- /custom_sounds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_sounds/README.md -------------------------------------------------------------------------------- /custom_sounds/chestopen.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/custom_sounds/chestopen.ogg -------------------------------------------------------------------------------- /debug_tools/.env-editor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/.env-editor -------------------------------------------------------------------------------- /debug_tools/.env-ingame: -------------------------------------------------------------------------------- 1 | PROJECT_NAME="debug_tools_ingame" 2 | MINECRAFT_PRODUCT="BedrockGDK" 3 | CUSTOM_DEPLOYMENT_PATH="" -------------------------------------------------------------------------------- /debug_tools/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/.prettierrc.json -------------------------------------------------------------------------------- /debug_tools/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/.vscode/extensions.json -------------------------------------------------------------------------------- /debug_tools/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/.vscode/launch.json -------------------------------------------------------------------------------- /debug_tools/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/.vscode/settings.json -------------------------------------------------------------------------------- /debug_tools/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/.vscode/tasks.json -------------------------------------------------------------------------------- /debug_tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/README.md -------------------------------------------------------------------------------- /debug_tools/behavior_packs/common/items/magnifying_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/behavior_packs/common/items/magnifying_glass.json -------------------------------------------------------------------------------- /debug_tools/behavior_packs/common/items/wrench.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/behavior_packs/common/items/wrench.json -------------------------------------------------------------------------------- /debug_tools/behavior_packs/common/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/behavior_packs/common/pack_icon.png -------------------------------------------------------------------------------- /debug_tools/behavior_packs/debug_tools_editor/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/behavior_packs/debug_tools_editor/manifest.json -------------------------------------------------------------------------------- /debug_tools/behavior_packs/debug_tools_ingame/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/behavior_packs/debug_tools_ingame/manifest.json -------------------------------------------------------------------------------- /debug_tools/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/eslint.config.mjs -------------------------------------------------------------------------------- /debug_tools/just.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/just.config.ts -------------------------------------------------------------------------------- /debug_tools/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/package-lock.json -------------------------------------------------------------------------------- /debug_tools/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/package.json -------------------------------------------------------------------------------- /debug_tools/resource_packs/common/animations/first_person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/resource_packs/common/animations/first_person.json -------------------------------------------------------------------------------- /debug_tools/resource_packs/common/attachables/magnifying_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/resource_packs/common/attachables/magnifying_glass.json -------------------------------------------------------------------------------- /debug_tools/resource_packs/common/attachables/wrench.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/resource_packs/common/attachables/wrench.json -------------------------------------------------------------------------------- /debug_tools/resource_packs/common/models/entity/magnifying_glass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/resource_packs/common/models/entity/magnifying_glass.json -------------------------------------------------------------------------------- /debug_tools/resource_packs/common/models/entity/wrench.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/resource_packs/common/models/entity/wrench.geo.json -------------------------------------------------------------------------------- /debug_tools/resource_packs/common/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/resource_packs/common/pack_icon.png -------------------------------------------------------------------------------- /debug_tools/resource_packs/common/texts/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/resource_packs/common/texts/en_US.lang -------------------------------------------------------------------------------- /debug_tools/resource_packs/common/textures/item_texture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/resource_packs/common/textures/item_texture.json -------------------------------------------------------------------------------- /debug_tools/resource_packs/common/textures/items/magnifying_glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/resource_packs/common/textures/items/magnifying_glass.png -------------------------------------------------------------------------------- /debug_tools/resource_packs/common/textures/items/wrench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/resource_packs/common/textures/items/wrench.png -------------------------------------------------------------------------------- /debug_tools/resource_packs/common/textures/items/wrench_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/resource_packs/common/textures/items/wrench_ico.png -------------------------------------------------------------------------------- /debug_tools/resource_packs/common/ui/hud_screen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/resource_packs/common/ui/hud_screen.json -------------------------------------------------------------------------------- /debug_tools/resource_packs/debug_tools_editor/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/resource_packs/debug_tools_editor/manifest.json -------------------------------------------------------------------------------- /debug_tools/resource_packs/debug_tools_ingame/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/resource_packs/debug_tools_ingame/manifest.json -------------------------------------------------------------------------------- /debug_tools/scripts/DebugToolRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/scripts/DebugToolRegistry.ts -------------------------------------------------------------------------------- /debug_tools/scripts/DebugTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/scripts/DebugTools.ts -------------------------------------------------------------------------------- /debug_tools/scripts/IDebugToolsData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/scripts/IDebugToolsData.ts -------------------------------------------------------------------------------- /debug_tools/scripts/ITool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/scripts/ITool.ts -------------------------------------------------------------------------------- /debug_tools/scripts/IToolData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/scripts/IToolData.ts -------------------------------------------------------------------------------- /debug_tools/scripts/IWatchTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/scripts/IWatchTool.ts -------------------------------------------------------------------------------- /debug_tools/scripts/Utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/scripts/Utilities.ts -------------------------------------------------------------------------------- /debug_tools/scripts/editor/DebugToolsEditorExtension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/scripts/editor/DebugToolsEditorExtension.ts -------------------------------------------------------------------------------- /debug_tools/scripts/editor/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/scripts/editor/main.ts -------------------------------------------------------------------------------- /debug_tools/scripts/ingame/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/scripts/ingame/main.ts -------------------------------------------------------------------------------- /debug_tools/scripts/tools/CommandResultWatchTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/scripts/tools/CommandResultWatchTool.ts -------------------------------------------------------------------------------- /debug_tools/scripts/tools/CustomWatchTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/scripts/tools/CustomWatchTool.ts -------------------------------------------------------------------------------- /debug_tools/scripts/tools/DynamicPropertyWatchTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/scripts/tools/DynamicPropertyWatchTool.ts -------------------------------------------------------------------------------- /debug_tools/scripts/tools/GameModeWatchTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/scripts/tools/GameModeWatchTool.ts -------------------------------------------------------------------------------- /debug_tools/scripts/tools/LocationWatchTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/scripts/tools/LocationWatchTool.ts -------------------------------------------------------------------------------- /debug_tools/scripts/tools/ScoreboardWatchTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/scripts/tools/ScoreboardWatchTool.ts -------------------------------------------------------------------------------- /debug_tools/scripts/tools/TickWatchTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/scripts/tools/TickWatchTool.ts -------------------------------------------------------------------------------- /debug_tools/scripts/tools/TimeOfDayWatchTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/scripts/tools/TimeOfDayWatchTool.ts -------------------------------------------------------------------------------- /debug_tools/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/tsconfig.editor.json -------------------------------------------------------------------------------- /debug_tools/tsconfig.ingame.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/debug_tools/tsconfig.ingame.json -------------------------------------------------------------------------------- /deferred_lighting_starter/.env: -------------------------------------------------------------------------------- 1 | PROJECT_NAME="samp_dlstarter" 2 | MINECRAFT_PRODUCT="BedrockGDK" 3 | CUSTOM_DEPLOYMENT_PATH="" -------------------------------------------------------------------------------- /deferred_lighting_starter/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/deferred_lighting_starter/.prettierrc.json -------------------------------------------------------------------------------- /deferred_lighting_starter/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/deferred_lighting_starter/.vscode/extensions.json -------------------------------------------------------------------------------- /deferred_lighting_starter/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/deferred_lighting_starter/.vscode/launch.json -------------------------------------------------------------------------------- /deferred_lighting_starter/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/deferred_lighting_starter/.vscode/settings.json -------------------------------------------------------------------------------- /deferred_lighting_starter/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/deferred_lighting_starter/.vscode/tasks.json -------------------------------------------------------------------------------- /deferred_lighting_starter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/deferred_lighting_starter/README.md -------------------------------------------------------------------------------- /deferred_lighting_starter/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/deferred_lighting_starter/eslint.config.mjs -------------------------------------------------------------------------------- /deferred_lighting_starter/just.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/deferred_lighting_starter/just.config.ts -------------------------------------------------------------------------------- /deferred_lighting_starter/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/deferred_lighting_starter/package-lock.json -------------------------------------------------------------------------------- /deferred_lighting_starter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/deferred_lighting_starter/package.json -------------------------------------------------------------------------------- /deferred_lighting_starter/resource_packs/samp_dlstarter/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/deferred_lighting_starter/resource_packs/samp_dlstarter/manifest.json -------------------------------------------------------------------------------- /deferred_lighting_starter/resource_packs/samp_dlstarter/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/deferred_lighting_starter/resource_packs/samp_dlstarter/pack_icon.png -------------------------------------------------------------------------------- /deferred_lighting_starter/resource_packs/samp_dlstarter/pbr/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/deferred_lighting_starter/resource_packs/samp_dlstarter/pbr/global.json -------------------------------------------------------------------------------- /deferred_lighting_starter/resource_packs/samp_dlstarter/water/water.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/deferred_lighting_starter/resource_packs/samp_dlstarter/water/water.json -------------------------------------------------------------------------------- /jigsaws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/jigsaws/README.md -------------------------------------------------------------------------------- /jigsaws/basic_dungeon/.env: -------------------------------------------------------------------------------- 1 | PROJECT_NAME="mike_basi" 2 | MINECRAFT_PRODUCT="BedrockGDK" 3 | CUSTOM_DEPLOYMENT_PATH="" 4 | -------------------------------------------------------------------------------- /jigsaws/basic_dungeon/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/jigsaws/basic_dungeon/.prettierrc.json -------------------------------------------------------------------------------- /jigsaws/basic_dungeon/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/jigsaws/basic_dungeon/.vscode/extensions.json -------------------------------------------------------------------------------- /jigsaws/basic_dungeon/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/jigsaws/basic_dungeon/.vscode/launch.json -------------------------------------------------------------------------------- /jigsaws/basic_dungeon/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/jigsaws/basic_dungeon/.vscode/settings.json -------------------------------------------------------------------------------- /jigsaws/basic_dungeon/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/jigsaws/basic_dungeon/.vscode/tasks.json -------------------------------------------------------------------------------- /jigsaws/basic_dungeon/behavior_packs/mike_basi/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/jigsaws/basic_dungeon/behavior_packs/mike_basi/manifest.json -------------------------------------------------------------------------------- /jigsaws/basic_dungeon/behavior_packs/mike_basi/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/jigsaws/basic_dungeon/behavior_packs/mike_basi/pack_icon.png -------------------------------------------------------------------------------- /jigsaws/basic_dungeon/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/jigsaws/basic_dungeon/eslint.config.mjs -------------------------------------------------------------------------------- /jigsaws/basic_dungeon/just.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/jigsaws/basic_dungeon/just.config.ts -------------------------------------------------------------------------------- /jigsaws/basic_dungeon/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/jigsaws/basic_dungeon/package-lock.json -------------------------------------------------------------------------------- /jigsaws/basic_dungeon/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/jigsaws/basic_dungeon/package.json -------------------------------------------------------------------------------- /jigsaws/basic_dungeon/packs/structures_world/db/000035.ldb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/jigsaws/basic_dungeon/packs/structures_world/db/000035.ldb -------------------------------------------------------------------------------- /jigsaws/basic_dungeon/packs/structures_world/db/000037.ldb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/jigsaws/basic_dungeon/packs/structures_world/db/000037.ldb -------------------------------------------------------------------------------- /jigsaws/basic_dungeon/packs/structures_world/db/CURRENT: -------------------------------------------------------------------------------- 1 | MANIFEST-000032 2 | -------------------------------------------------------------------------------- /jigsaws/basic_dungeon/packs/structures_world/db/MANIFEST-000032: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/jigsaws/basic_dungeon/packs/structures_world/db/MANIFEST-000032 -------------------------------------------------------------------------------- /jigsaws/basic_dungeon/packs/structures_world/level.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/jigsaws/basic_dungeon/packs/structures_world/level.dat -------------------------------------------------------------------------------- /jigsaws/basic_dungeon/packs/structures_world/level.dat_old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/jigsaws/basic_dungeon/packs/structures_world/level.dat_old -------------------------------------------------------------------------------- /jigsaws/basic_dungeon/packs/structures_world/levelname.txt: -------------------------------------------------------------------------------- 1 | BasicJigsaw -------------------------------------------------------------------------------- /jigsaws/basic_dungeon/packs/structures_world/world_behavior_packs.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /jigsaws/basic_dungeon/packs/structures_world/world_icon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/jigsaws/basic_dungeon/packs/structures_world/world_icon.jpeg -------------------------------------------------------------------------------- /jigsaws/basic_dungeon/packs/structures_world/world_resource_packs.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /jigsaws/basic_dungeon/resource_packs/mike_basi/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/jigsaws/basic_dungeon/resource_packs/mike_basi/manifest.json -------------------------------------------------------------------------------- /jigsaws/basic_dungeon/resource_packs/mike_basi/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/jigsaws/basic_dungeon/resource_packs/mike_basi/pack_icon.png -------------------------------------------------------------------------------- /jigsaws/basic_dungeon/scripts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/jigsaws/basic_dungeon/scripts/main.ts -------------------------------------------------------------------------------- /jigsaws/basic_dungeon/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/jigsaws/basic_dungeon/tsconfig.json -------------------------------------------------------------------------------- /lucky_block/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/lucky_block/README.md -------------------------------------------------------------------------------- /lucky_block/version_1/.env: -------------------------------------------------------------------------------- 1 | PROJECT_NAME="mike_luck" 2 | MINECRAFT_PRODUCT="BedrockGDK" 3 | CUSTOM_DEPLOYMENT_PATH="" 4 | -------------------------------------------------------------------------------- /lucky_block/version_1/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/lucky_block/version_1/.prettierrc.json -------------------------------------------------------------------------------- /lucky_block/version_1/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/lucky_block/version_1/.vscode/extensions.json -------------------------------------------------------------------------------- /lucky_block/version_1/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/lucky_block/version_1/.vscode/launch.json -------------------------------------------------------------------------------- /lucky_block/version_1/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/lucky_block/version_1/.vscode/settings.json -------------------------------------------------------------------------------- /lucky_block/version_1/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/lucky_block/version_1/.vscode/tasks.json -------------------------------------------------------------------------------- /lucky_block/version_1/behavior_packs/mike_luck/blocks/luckyblock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/lucky_block/version_1/behavior_packs/mike_luck/blocks/luckyblock.json -------------------------------------------------------------------------------- /lucky_block/version_1/behavior_packs/mike_luck/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/lucky_block/version_1/behavior_packs/mike_luck/manifest.json -------------------------------------------------------------------------------- /lucky_block/version_1/behavior_packs/mike_luck/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/lucky_block/version_1/behavior_packs/mike_luck/pack_icon.png -------------------------------------------------------------------------------- /lucky_block/version_1/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/lucky_block/version_1/eslint.config.mjs -------------------------------------------------------------------------------- /lucky_block/version_1/just.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/lucky_block/version_1/just.config.ts -------------------------------------------------------------------------------- /lucky_block/version_1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/lucky_block/version_1/package-lock.json -------------------------------------------------------------------------------- /lucky_block/version_1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/lucky_block/version_1/package.json -------------------------------------------------------------------------------- /lucky_block/version_1/resource_packs/mike_luck/blocks.json: -------------------------------------------------------------------------------- 1 | { 2 | "format_version": "1.21.40" 3 | } -------------------------------------------------------------------------------- /lucky_block/version_1/resource_packs/mike_luck/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/lucky_block/version_1/resource_packs/mike_luck/manifest.json -------------------------------------------------------------------------------- /lucky_block/version_1/resource_packs/mike_luck/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/lucky_block/version_1/resource_packs/mike_luck/pack_icon.png -------------------------------------------------------------------------------- /lucky_block/version_1/resource_packs/mike_luck/sounds/wood_sprung.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/lucky_block/version_1/resource_packs/mike_luck/sounds/wood_sprung.ogg -------------------------------------------------------------------------------- /lucky_block/version_1/resource_packs/mike_luck/texts/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/lucky_block/version_1/resource_packs/mike_luck/texts/en_US.lang -------------------------------------------------------------------------------- /lucky_block/version_1/scripts/LuckyblockActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/lucky_block/version_1/scripts/LuckyblockActions.ts -------------------------------------------------------------------------------- /lucky_block/version_1/scripts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/lucky_block/version_1/scripts/main.ts -------------------------------------------------------------------------------- /lucky_block/version_1/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/lucky_block/version_1/tsconfig.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022.mcaddon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022.mcaddon -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022behaviorpack/entities/biceson.behavior.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022behaviorpack/entities/biceson.behavior.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022behaviorpack/entities/boomfly.behavior.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022behaviorpack/entities/boomfly.behavior.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022behaviorpack/entities/booshroom.behavior.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022behaviorpack/entities/booshroom.behavior.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022behaviorpack/entities/butterfly.behavior.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022behaviorpack/entities/butterfly.behavior.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022behaviorpack/entities/eyeder.behavior.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022behaviorpack/entities/eyeder.behavior.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022behaviorpack/entities/ghost.behavior.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022behaviorpack/entities/ghost.behavior.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022behaviorpack/entities/hornbill.behavior.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022behaviorpack/entities/hornbill.behavior.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022behaviorpack/entities/lilydog.behavior.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022behaviorpack/entities/lilydog.behavior.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022behaviorpack/entities/narwhal.behavior.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022behaviorpack/entities/narwhal.behavior.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022behaviorpack/entities/pearrot.behavior.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022behaviorpack/entities/pearrot.behavior.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022behaviorpack/entities/pheonix.behavior.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022behaviorpack/entities/pheonix.behavior.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022behaviorpack/entities/raccoon.behavior.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022behaviorpack/entities/raccoon.behavior.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022behaviorpack/entities/robot.behavior.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022behaviorpack/entities/robot.behavior.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022behaviorpack/entities/wraith.behavior.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022behaviorpack/entities/wraith.behavior.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022behaviorpack/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022behaviorpack/manifest.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022behaviorpack/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022behaviorpack/pack_icon.png -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/animations/eyeder.animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/animations/eyeder.animation.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/animations/ghost.animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/animations/ghost.animation.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/animations/robot.animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/animations/robot.animation.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/animations/wraith.animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/animations/wraith.animation.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/entity/biceson.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/entity/biceson.entity.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/entity/black_bear.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/entity/black_bear.entity.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/entity/boomfly.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/entity/boomfly.entity.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/entity/booshroom.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/entity/booshroom.entity.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/entity/butterfly.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/entity/butterfly.entity.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/entity/eyeder.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/entity/eyeder.entity.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/entity/flying_cow.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/entity/flying_cow.entity.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/entity/frost_moose.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/entity/frost_moose.entity.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/entity/ghost.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/entity/ghost.entity.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/entity/hornbill.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/entity/hornbill.entity.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/entity/lilydog.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/entity/lilydog.entity.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/entity/nardolphle.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/entity/nardolphle.entity.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/entity/narwhal.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/entity/narwhal.entity.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/entity/pearrot.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/entity/pearrot.entity.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/entity/phoenix.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/entity/phoenix.entity.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/entity/raccoon.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/entity/raccoon.entity.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/entity/robot.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/entity/robot.entity.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/entity/sea_chicken.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/entity/sea_chicken.entity.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/entity/sheepomelon.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/entity/sheepomelon.entity.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/entity/smick_mimic.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/entity/smick_mimic.entity.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/entity/snow_wizard.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/entity/snow_wizard.entity.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/entity/spooky_golem.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/entity/spooky_golem.entity.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/entity/wraith.entity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/entity/wraith.entity.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/manifest.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/models/entity/biceson.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/models/entity/biceson.geo.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/models/entity/boomfly.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/models/entity/boomfly.geo.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/models/entity/booshroom.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/models/entity/booshroom.geo.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/models/entity/butterfly.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/models/entity/butterfly.geo.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/models/entity/eyeder.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/models/entity/eyeder.geo.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/models/entity/ghost.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/models/entity/ghost.geo.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/models/entity/hornbill.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/models/entity/hornbill.geo.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/models/entity/lilydog.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/models/entity/lilydog.geo.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/models/entity/narwhal.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/models/entity/narwhal.geo.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/models/entity/pearrot.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/models/entity/pearrot.geo.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/models/entity/phoenix.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/models/entity/phoenix.geo.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/models/entity/raccoon.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/models/entity/raccoon.geo.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/models/entity/robot.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/models/entity/robot.geo.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/models/entity/wraith.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/models/entity/wraith.geo.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/pack_icon.png -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/sounds.json -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/texts/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/texts/en_US.lang -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/textures/entity/biceson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/textures/entity/biceson.png -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/textures/entity/black_bear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/textures/entity/black_bear.png -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/textures/entity/boomfly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/textures/entity/boomfly.png -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/textures/entity/booshroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/textures/entity/booshroom.png -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/textures/entity/butterfly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/textures/entity/butterfly.png -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/textures/entity/eyeder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/textures/entity/eyeder.png -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/textures/entity/flying_cow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/textures/entity/flying_cow.png -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/textures/entity/ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/textures/entity/ghost.png -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/textures/entity/lilydog/tame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/textures/entity/lilydog/tame.png -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/textures/entity/nardolphle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/textures/entity/nardolphle.png -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/textures/entity/narwhal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/textures/entity/narwhal.png -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/textures/entity/pearrot/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/textures/entity/pearrot/blue.png -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/textures/entity/pearrot/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/textures/entity/pearrot/grey.png -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/textures/entity/phoenix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/textures/entity/phoenix.png -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/textures/entity/raccoon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/textures/entity/raccoon.png -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/textures/entity/robot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/textures/entity/robot.png -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/textures/entity/sea_chicken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/textures/entity/sea_chicken.png -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/textures/entity/sheepomelon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/textures/entity/sheepomelon.png -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/textures/entity/smick_mimic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/textures/entity/smick_mimic.png -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/textures/entity/snow_wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/textures/entity/snow_wizard.png -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/textures/entity/spooky_golem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/textures/entity/spooky_golem.png -------------------------------------------------------------------------------- /mclive2022_addon/mclive2022resourcepack/textures/entity/wraith.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/mclive2022_addon/mclive2022resourcepack/textures/entity/wraith.png -------------------------------------------------------------------------------- /npc_dialogue_sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/npc_dialogue_sample/README.md -------------------------------------------------------------------------------- /npc_dialogue_sample/dialogue/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/npc_dialogue_sample/dialogue/scene.json -------------------------------------------------------------------------------- /npc_dialogue_sample/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/npc_dialogue_sample/manifest.json -------------------------------------------------------------------------------- /npc_dialogue_sample/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/npc_dialogue_sample/pack_icon.png -------------------------------------------------------------------------------- /palm_tree_blocks_and_features/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/palm_tree_blocks_and_features/README.md -------------------------------------------------------------------------------- /palm_tree_blocks_and_features/palm_tree_blocks/.env: -------------------------------------------------------------------------------- 1 | PROJECT_NAME="palm_tree" 2 | MINECRAFT_PRODUCT="BedrockGDK" 3 | CUSTOM_DEPLOYMENT_PATH="" -------------------------------------------------------------------------------- /palm_tree_blocks_and_features/palm_tree_blocks/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/palm_tree_blocks_and_features/palm_tree_blocks/.prettierrc.json -------------------------------------------------------------------------------- /palm_tree_blocks_and_features/palm_tree_blocks/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/palm_tree_blocks_and_features/palm_tree_blocks/.vscode/extensions.json -------------------------------------------------------------------------------- /palm_tree_blocks_and_features/palm_tree_blocks/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/palm_tree_blocks_and_features/palm_tree_blocks/.vscode/launch.json -------------------------------------------------------------------------------- /palm_tree_blocks_and_features/palm_tree_blocks/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/palm_tree_blocks_and_features/palm_tree_blocks/.vscode/settings.json -------------------------------------------------------------------------------- /palm_tree_blocks_and_features/palm_tree_blocks/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/palm_tree_blocks_and_features/palm_tree_blocks/.vscode/tasks.json -------------------------------------------------------------------------------- /palm_tree_blocks_and_features/palm_tree_blocks/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/palm_tree_blocks_and_features/palm_tree_blocks/eslint.config.mjs -------------------------------------------------------------------------------- /palm_tree_blocks_and_features/palm_tree_blocks/just.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/palm_tree_blocks_and_features/palm_tree_blocks/just.config.ts -------------------------------------------------------------------------------- /palm_tree_blocks_and_features/palm_tree_blocks/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/palm_tree_blocks_and_features/palm_tree_blocks/package-lock.json -------------------------------------------------------------------------------- /palm_tree_blocks_and_features/palm_tree_blocks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/palm_tree_blocks_and_features/palm_tree_blocks/package.json -------------------------------------------------------------------------------- /palm_tree_blocks_and_features/palm_tree_blocks/scripts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/palm_tree_blocks_and_features/palm_tree_blocks/scripts/main.ts -------------------------------------------------------------------------------- /palm_tree_blocks_and_features/palm_tree_blocks/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/palm_tree_blocks_and_features/palm_tree_blocks/tsconfig.json -------------------------------------------------------------------------------- /palm_tree_blocks_and_features/palm_tree_blocks_features/.env: -------------------------------------------------------------------------------- 1 | PROJECT_NAME="palm_tree_features" 2 | MINECRAFT_PRODUCT="BedrockGDK" 3 | CUSTOM_DEPLOYMENT_PATH="" -------------------------------------------------------------------------------- /palm_tree_blocks_and_features/palm_tree_blocks_features/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/palm_tree_blocks_and_features/palm_tree_blocks_features/.prettierrc.json -------------------------------------------------------------------------------- /palm_tree_blocks_and_features/palm_tree_blocks_features/just.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/palm_tree_blocks_and_features/palm_tree_blocks_features/just.config.ts -------------------------------------------------------------------------------- /palm_tree_blocks_and_features/palm_tree_blocks_features/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/palm_tree_blocks_and_features/palm_tree_blocks_features/package.json -------------------------------------------------------------------------------- /palm_tree_blocks_and_features/palm_tree_blocks_features/scripts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/palm_tree_blocks_and_features/palm_tree_blocks_features/scripts/main.ts -------------------------------------------------------------------------------- /palm_tree_blocks_and_features/palm_tree_blocks_features/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/palm_tree_blocks_and_features/palm_tree_blocks_features/tsconfig.json -------------------------------------------------------------------------------- /parkour_sample_world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/parkour_sample_world/README.md -------------------------------------------------------------------------------- /parkour_sample_world/SampleParkourWorld.mcworld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/parkour_sample_world/SampleParkourWorld.mcworld -------------------------------------------------------------------------------- /particles_examples_1.19/ParticlesExamples1.19.mcpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/particles_examples_1.19/ParticlesExamples1.19.mcpack -------------------------------------------------------------------------------- /particles_examples_1.19/unzipped/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/particles_examples_1.19/unzipped/manifest.json -------------------------------------------------------------------------------- /particles_examples_1.19/unzipped/particles/example_beziercurve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/particles_examples_1.19/unzipped/particles/example_beziercurve.json -------------------------------------------------------------------------------- /particles_examples_1.19/unzipped/particles/example_blendmode_add.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/particles_examples_1.19/unzipped/particles/example_blendmode_add.json -------------------------------------------------------------------------------- /particles_examples_1.19/unzipped/particles/example_blendmode_alpha.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/particles_examples_1.19/unzipped/particles/example_blendmode_alpha.json -------------------------------------------------------------------------------- /particles_examples_1.19/unzipped/particles/example_blendmode_blend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/particles_examples_1.19/unzipped/particles/example_blendmode_blend.json -------------------------------------------------------------------------------- /particles_examples_1.19/unzipped/particles/example_bounce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/particles_examples_1.19/unzipped/particles/example_bounce.json -------------------------------------------------------------------------------- /particles_examples_1.19/unzipped/particles/example_catmullromcurve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/particles_examples_1.19/unzipped/particles/example_catmullromcurve.json -------------------------------------------------------------------------------- /particles_examples_1.19/unzipped/particles/example_colorcurve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/particles_examples_1.19/unzipped/particles/example_colorcurve.json -------------------------------------------------------------------------------- /particles_examples_1.19/unzipped/particles/example_colorcurve2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/particles_examples_1.19/unzipped/particles/example_colorcurve2.json -------------------------------------------------------------------------------- /particles_examples_1.19/unzipped/particles/example_combocurve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/particles_examples_1.19/unzipped/particles/example_combocurve.json -------------------------------------------------------------------------------- /particles_examples_1.19/unzipped/particles/example_flipbook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/particles_examples_1.19/unzipped/particles/example_flipbook.json -------------------------------------------------------------------------------- /particles_examples_1.19/unzipped/particles/example_highrestitution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/particles_examples_1.19/unzipped/particles/example_highrestitution.json -------------------------------------------------------------------------------- /particles_examples_1.19/unzipped/particles/example_linearcurve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/particles_examples_1.19/unzipped/particles/example_linearcurve.json -------------------------------------------------------------------------------- /particles_examples_1.19/unzipped/particles/example_smoke_puff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/particles_examples_1.19/unzipped/particles/example_smoke_puff.json -------------------------------------------------------------------------------- /particles_examples_1.19/unzipped/particles/example_spiral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/particles_examples_1.19/unzipped/particles/example_spiral.json -------------------------------------------------------------------------------- /particles_examples_1.19/unzipped/particles/example_vertexrandom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/particles_examples_1.19/unzipped/particles/example_vertexrandom.json -------------------------------------------------------------------------------- /particles_examples_1.19/unzipped/particles/example_watertest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/particles_examples_1.19/unzipped/particles/example_watertest.json -------------------------------------------------------------------------------- /particles_examples_1.19/unzipped/particles/fireworks_events_demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/particles_examples_1.19/unzipped/particles/fireworks_events_demo.json -------------------------------------------------------------------------------- /particles_examples_1.19/unzipped/particles/fireworks_pop_part.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/particles_examples_1.19/unzipped/particles/fireworks_pop_part.json -------------------------------------------------------------------------------- /particles_examples_1.19/unzipped/particles/fireworks_rocket_part.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/particles_examples_1.19/unzipped/particles/fireworks_rocket_part.json -------------------------------------------------------------------------------- /particles_examples_1.19/unzipped/particles/fireworks_trail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/particles_examples_1.19/unzipped/particles/fireworks_trail.json -------------------------------------------------------------------------------- /particles_examples_1.19/unzipped/particles/fireworks_twinkles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/particles_examples_1.19/unzipped/particles/fireworks_twinkles.json -------------------------------------------------------------------------------- /resource_pack_sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/resource_pack_sample/README.md -------------------------------------------------------------------------------- /resource_pack_sample/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/resource_pack_sample/manifest.json -------------------------------------------------------------------------------- /resource_pack_sample/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/resource_pack_sample/pack_icon.png -------------------------------------------------------------------------------- /resource_pack_sample/textures/blocks/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/resource_pack_sample/textures/blocks/dirt.png -------------------------------------------------------------------------------- /rtx_resource_pack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/rtx_resource_pack/README.md -------------------------------------------------------------------------------- /rtx_resource_pack/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/rtx_resource_pack/manifest.json -------------------------------------------------------------------------------- /rtx_resource_pack/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/rtx_resource_pack/pack_icon.png -------------------------------------------------------------------------------- /rtx_resource_pack/textures/blocks/concrete_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/rtx_resource_pack/textures/blocks/concrete_white.png -------------------------------------------------------------------------------- /rtx_resource_pack/textures/blocks/concrete_white.texture_set.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/rtx_resource_pack/textures/blocks/concrete_white.texture_set.json -------------------------------------------------------------------------------- /rtx_resource_pack/textures/blocks/concrete_white_mer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/rtx_resource_pack/textures/blocks/concrete_white_mer.png -------------------------------------------------------------------------------- /rtx_resource_pack/textures/blocks/emerald_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/rtx_resource_pack/textures/blocks/emerald_ore.png -------------------------------------------------------------------------------- /rtx_resource_pack/textures/blocks/emerald_ore.texture_set.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/rtx_resource_pack/textures/blocks/emerald_ore.texture_set.json -------------------------------------------------------------------------------- /rtx_resource_pack/textures/blocks/emerald_ore_mer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/rtx_resource_pack/textures/blocks/emerald_ore_mer.png -------------------------------------------------------------------------------- /rtx_resource_pack/textures/blocks/height.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/rtx_resource_pack/textures/blocks/height.png -------------------------------------------------------------------------------- /rtx_resource_pack/textures/blocks/iron_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/rtx_resource_pack/textures/blocks/iron_block.png -------------------------------------------------------------------------------- /rtx_resource_pack/textures/blocks/iron_block.texture_set.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/rtx_resource_pack/textures/blocks/iron_block.texture_set.json -------------------------------------------------------------------------------- /rtx_resource_pack/textures/blocks/iron_block_mer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/rtx_resource_pack/textures/blocks/iron_block_mer.png -------------------------------------------------------------------------------- /skinpack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/skinpack/README.md -------------------------------------------------------------------------------- /skinpack/skins.mcpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/skinpack/skins.mcpack -------------------------------------------------------------------------------- /skinpack/skins.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/skinpack/skins.zip -------------------------------------------------------------------------------- /starter_blocks/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_blocks/.env -------------------------------------------------------------------------------- /starter_blocks/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_blocks/.prettierrc.json -------------------------------------------------------------------------------- /starter_blocks/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_blocks/.vscode/extensions.json -------------------------------------------------------------------------------- /starter_blocks/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_blocks/.vscode/launch.json -------------------------------------------------------------------------------- /starter_blocks/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_blocks/.vscode/settings.json -------------------------------------------------------------------------------- /starter_blocks/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_blocks/.vscode/tasks.json -------------------------------------------------------------------------------- /starter_blocks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_blocks/README.md -------------------------------------------------------------------------------- /starter_blocks/behavior_packs/starter_blocks/blocks/crate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_blocks/behavior_packs/starter_blocks/blocks/crate.json -------------------------------------------------------------------------------- /starter_blocks/behavior_packs/starter_blocks/blocks/simple_cube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_blocks/behavior_packs/starter_blocks/blocks/simple_cube.json -------------------------------------------------------------------------------- /starter_blocks/behavior_packs/starter_blocks/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_blocks/behavior_packs/starter_blocks/manifest.json -------------------------------------------------------------------------------- /starter_blocks/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_blocks/eslint.config.mjs -------------------------------------------------------------------------------- /starter_blocks/just.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_blocks/just.config.ts -------------------------------------------------------------------------------- /starter_blocks/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_blocks/package-lock.json -------------------------------------------------------------------------------- /starter_blocks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_blocks/package.json -------------------------------------------------------------------------------- /starter_blocks/resource_packs/starter_blocks/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_blocks/resource_packs/starter_blocks/blocks.json -------------------------------------------------------------------------------- /starter_blocks/resource_packs/starter_blocks/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_blocks/resource_packs/starter_blocks/manifest.json -------------------------------------------------------------------------------- /starter_blocks/resource_packs/starter_blocks/texts/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_blocks/resource_packs/starter_blocks/texts/en_US.lang -------------------------------------------------------------------------------- /starter_blocks/resource_packs/starter_blocks/textures/blocks/crate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_blocks/resource_packs/starter_blocks/textures/blocks/crate.png -------------------------------------------------------------------------------- /starter_blocks/scripts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_blocks/scripts/main.ts -------------------------------------------------------------------------------- /starter_blocks/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_blocks/tsconfig.json -------------------------------------------------------------------------------- /starter_items/.env: -------------------------------------------------------------------------------- 1 | PROJECT_NAME="starter_items" 2 | MINECRAFT_PRODUCT="BedrockGDK" 3 | CUSTOM_DEPLOYMENT_PATH="" -------------------------------------------------------------------------------- /starter_items/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_items/.prettierrc.json -------------------------------------------------------------------------------- /starter_items/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_items/.vscode/extensions.json -------------------------------------------------------------------------------- /starter_items/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_items/.vscode/launch.json -------------------------------------------------------------------------------- /starter_items/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_items/.vscode/settings.json -------------------------------------------------------------------------------- /starter_items/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_items/.vscode/tasks.json -------------------------------------------------------------------------------- /starter_items/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_items/README.md -------------------------------------------------------------------------------- /starter_items/behavior_packs/starter_Items/items/elixir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_items/behavior_packs/starter_Items/items/elixir.json -------------------------------------------------------------------------------- /starter_items/behavior_packs/starter_Items/items/hard_biscuit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_items/behavior_packs/starter_Items/items/hard_biscuit.json -------------------------------------------------------------------------------- /starter_items/behavior_packs/starter_Items/items/key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_items/behavior_packs/starter_Items/items/key.json -------------------------------------------------------------------------------- /starter_items/behavior_packs/starter_Items/items/pear.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_items/behavior_packs/starter_Items/items/pear.json -------------------------------------------------------------------------------- /starter_items/behavior_packs/starter_Items/items/rod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_items/behavior_packs/starter_Items/items/rod.json -------------------------------------------------------------------------------- /starter_items/behavior_packs/starter_Items/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_items/behavior_packs/starter_Items/manifest.json -------------------------------------------------------------------------------- /starter_items/behavior_packs/starter_Items/recipes/elixir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_items/behavior_packs/starter_Items/recipes/elixir.json -------------------------------------------------------------------------------- /starter_items/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_items/eslint.config.mjs -------------------------------------------------------------------------------- /starter_items/just.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_items/just.config.ts -------------------------------------------------------------------------------- /starter_items/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_items/package-lock.json -------------------------------------------------------------------------------- /starter_items/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_items/package.json -------------------------------------------------------------------------------- /starter_items/resource_packs/starter_items/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_items/resource_packs/starter_items/manifest.json -------------------------------------------------------------------------------- /starter_items/resource_packs/starter_items/texts/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_items/resource_packs/starter_items/texts/en_US.lang -------------------------------------------------------------------------------- /starter_items/resource_packs/starter_items/textures/item_texture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_items/resource_packs/starter_items/textures/item_texture.json -------------------------------------------------------------------------------- /starter_items/resource_packs/starter_items/textures/items/elixir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_items/resource_packs/starter_items/textures/items/elixir.png -------------------------------------------------------------------------------- /starter_items/resource_packs/starter_items/textures/items/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_items/resource_packs/starter_items/textures/items/key.png -------------------------------------------------------------------------------- /starter_items/resource_packs/starter_items/textures/items/key_mers.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_items/resource_packs/starter_items/textures/items/key_mers.tga -------------------------------------------------------------------------------- /starter_items/resource_packs/starter_items/textures/items/pear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_items/resource_packs/starter_items/textures/items/pear.png -------------------------------------------------------------------------------- /starter_items/resource_packs/starter_items/textures/items/pear_mers.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_items/resource_packs/starter_items/textures/items/pear_mers.tga -------------------------------------------------------------------------------- /starter_items/resource_packs/starter_items/textures/items/rod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_items/resource_packs/starter_items/textures/items/rod.png -------------------------------------------------------------------------------- /starter_items/resource_packs/starter_items/textures/items/rod_mers.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_items/resource_packs/starter_items/textures/items/rod_mers.tga -------------------------------------------------------------------------------- /starter_items/scripts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_items/scripts/main.ts -------------------------------------------------------------------------------- /starter_items/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/starter_items/tsconfig.json -------------------------------------------------------------------------------- /structure_blocks_sample_behavior_pack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/structure_blocks_sample_behavior_pack/README.md -------------------------------------------------------------------------------- /structure_blocks_sample_behavior_pack/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/structure_blocks_sample_behavior_pack/manifest.json -------------------------------------------------------------------------------- /structure_blocks_sample_behavior_pack/pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/structure_blocks_sample_behavior_pack/pack_icon.png -------------------------------------------------------------------------------- /structure_blocks_sample_behavior_pack/structures/house1.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/structure_blocks_sample_behavior_pack/structures/house1.mcstructure -------------------------------------------------------------------------------- /structure_blocks_sample_behavior_pack/structures/house2.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/structure_blocks_sample_behavior_pack/structures/house2.mcstructure -------------------------------------------------------------------------------- /structure_blocks_sample_behavior_pack/structures/house3.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/structure_blocks_sample_behavior_pack/structures/house3.mcstructure -------------------------------------------------------------------------------- /structure_blocks_sample_behavior_pack/structures/statue.mcstructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/minecraft-samples/HEAD/structure_blocks_sample_behavior_pack/structures/statue.mcstructure --------------------------------------------------------------------------------